* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a1410 0%, #2d2416 100%);
    color: #e8e4dc;
    line-height: 1.7;
}

.page-header {
    background: linear-gradient(90deg, #1a1410 0%, #2d2416 100%);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 4px;
}

.nav-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-trigger span {
    width: 28px;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
}

.primary-nav a {
    color: #e8e4dc;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.primary-nav a:hover {
    color: #d4af37;
}

.primary-nav a:hover::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #1a1410;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #2d2416;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.3rem;
    color: #3a3020;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.key-notices {
    padding: 4rem 2rem;
    background: #1a1410;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subheading {
    text-align: center;
    font-size: 1.2rem;
    color: #b8a891;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.notice-card {
    background: rgba(212, 175, 55, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.notice-card.notice-primary {
    border-left-color: #d4af37;
}

.notice-card.notice-secondary {
    border-left-color: #c49a3d;
}

.notice-card.notice-tertiary {
    border-left-color: #b8941f;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notice-emoji {
    font-size: 2.5rem;
}

.notice-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
}

.notice-card p {
    line-height: 1.8;
    color: #c4bfb5;
}

.game-showcase {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #2d2416 0%, #1a1410 100%);
}

.showcase-header {
    margin-bottom: 3rem;
}

.game-display {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #d4af37;
}

.game-window {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #d4af37;
    font-size: 1.05rem;
}

.about-platform {
    padding: 4rem 2rem;
    background: #1a1410;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #c4bfb5;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #b8a891;
}

.experience-flow {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #2d2416 0%, #1a1410 100%);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.flow-step {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.step-marker {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 1rem;
}

.flow-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.flow-step p {
    color: #b8a891;
    line-height: 1.8;
}

.commitment {
    padding: 4rem 2rem;
    background: #1a1410;
}

.commitment-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.08);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #d4af37;
    text-align: center;
}

.commitment-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.commitment-box p {
    font-size: 1.15rem;
    line-height: 2;
    color: #c4bfb5;
}

.page-footer {
    background: #0d0a08;
    border-top: 2px solid #d4af37;
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #b8a891;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-column p {
    color: #8a826f;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #6a6454;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #2d2416 0%, #1a1410 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 520px;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.modal-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.modal-subtext {
    font-size: 1rem;
    color: #b8a891;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #d4af37;
    color: #1a1410;
}

.btn-primary:hover {
    background: #c49a3d;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: #4a4032;
    color: #e8e4dc;
}

.btn-secondary:hover {
    background: #5a5042;
}

.play-hero {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.play-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1410;
    margin-bottom: 1rem;
}

.play-intro {
    font-size: 1.3rem;
    color: #3a3020;
}

.play-game {
    padding: 3rem 2rem;
    background: #1a1410;
}

.play-guide {
    padding: 4rem 2rem;
    background: #2d2416;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.guide-item h4 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.guide-item p {
    color: #b8a891;
    line-height: 1.8;
}

.play-reminders {
    padding: 4rem 2rem;
    background: #1a1410;
}

.reminder-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.08);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #d4af37;
}

.reminder-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.reminder-panel ul {
    list-style-position: inside;
    font-size: 1.1rem;
    line-height: 2.2;
    color: #c4bfb5;
}

.legal-main {
    padding: 3rem 2rem;
    background: #1a1410;
    min-height: 100vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
}

.legal-updated {
    text-align: center;
    font-style: italic;
    color: #8a826f;
    margin-bottom: 3rem;
}

.legal-section {
    background: rgba(212, 175, 55, 0.03);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.legal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.legal-section h4 {
    font-size: 1.3rem;
    color: #c49a3d;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: #c4bfb5;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.9;
    color: #b8a891;
}

.warning-section {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #d4af37;
}

.emphasis-text {
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .primary-nav.active {
        left: 0;
    }

    .primary-nav a {
        font-size: 1.4rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .header-inner {
        padding: 1.5rem 1.5rem;
    }

    .hero-text h2 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .game-window {
        height: 500px;
    }

    .notices-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .flow-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}
