* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #f5f1e8 0%, #e8dcc4 100%);
    color: #2a2a2a;
    line-height: 1.6;
    min-height: 100vh;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #c9a961 0%, #b8964f 100%);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.main-header {
    background: linear-gradient(135deg, #c9a961 0%, #b8964f 100%);
    padding: 30px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.header-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 12px 25px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(184, 150, 79, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23c9a961" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.hero-overlay {
    padding: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #c9a961;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.container {
    padding: 0 50px;
}

.intro-block {
    padding: 60px 0;
}

.intro-content {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c9a961;
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.warning-block {
    padding: 60px 0;
    background: rgba(201, 169, 97, 0.1);
}

.warning-box {
    background: #fff;
    border: 3px solid #c9a961;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.warning-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #b8964f;
    margin-bottom: 30px;
    text-align: center;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.warning-item {
    padding: 20px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 10px;
    border-left: 4px solid #c9a961;
}

.warning-item strong {
    display: block;
    font-size: 20px;
    color: #c9a961;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.warning-item p {
    font-size: 16px;
    color: #5a5a5a;
}

.game-showcase {
    padding: 60px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #c9a961;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    display: block;
}

.game-caption {
    text-align: center;
    font-size: 16px;
    color: #7a7a7a;
    font-style: italic;
}

.benefits-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.3);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #c9a961;
    margin-bottom: 15px;
}

.benefit-box p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.philosophy-section {
    padding: 60px 0;
}

.philosophy-content {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(184, 150, 79, 0.1));
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #c9a961;
}

.philosophy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #c9a961;
    margin-bottom: 25px;
    text-align: center;
}

.philosophy-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: center;
}

.main-footer {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #d0d0d0;
    padding: 50px 50px 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #c9a961;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a961;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    color: #909090;
    font-size: 14px;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc4 100%);
    border: 4px solid #c9a961;
    border-radius: 20px;
    padding: 50px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 10px 50px rgba(201, 169, 97, 0.5);
    text-align: center;
}

.age-gate-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c9a961;
    margin-bottom: 20px;
}

.age-gate-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-disclaimer {
    font-size: 16px;
    color: #7a7a7a;
    font-style: italic;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-confirm,
.btn-deny {
    flex: 1;
    padding: 15px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #c9a961 0%, #b8964f 100%);
    color: #fff;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.btn-deny {
    background: #e0e0e0;
    color: #5a5a5a;
}

.btn-deny:hover {
    background: #d0d0d0;
}

.page-header {
    background: linear-gradient(135deg, #c9a961 0%, #b8964f 100%);
    padding: 60px 50px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    font-weight: 300;
}

.play-info-section {
    padding: 60px 0;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #c9a961;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.technical-info {
    background: rgba(201, 169, 97, 0.05);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.technical-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c9a961;
    margin-bottom: 25px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tech-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.tech-item strong {
    display: block;
    font-size: 18px;
    color: #c9a961;
    margin-bottom: 8px;
}

.tech-item p {
    font-size: 15px;
    color: #5a5a5a;
}

.game-play-section {
    padding: 40px 0;
}

.game-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.game-iframe-play {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    display: block;
    background: #000;
}

.gameplay-tips {
    padding: 40px 0;
}

.tips-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.tips-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c9a961;
    margin-bottom: 25px;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
    font-size: 18px;
}

.reminder-section {
    padding: 40px 0;
}

.reminder-box {
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid #c9a961;
    border-radius: 12px;
    padding: 35px;
}

.reminder-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #c9a961;
    margin-bottom: 15px;
}

.reminder-box p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content-section {
    padding: 60px 0;
}

.legal-document {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #c9a961;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #b8964f;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-document p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-document ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.legal-document li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.legal-document li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
}

.terms-acceptance,
.privacy-summary,
.final-notice {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(184, 150, 79, 0.15));
    border: 2px solid #c9a961;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.critical-notice {
    background: rgba(201, 169, 97, 0.1);
    border: 3px solid #c9a961;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    text-align: center;
}

.critical-notice h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c9a961;
    margin-bottom: 20px;
}

.critical-notice p {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .mobile-header {
        display: flex;
    }

    .main-header {
        position: static;
        padding-top: 80px;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .main-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .intro-content,
    .warning-box,
    .philosophy-content,
    .legal-document {
        padding: 30px 20px;
    }

    .benefits-grid,
    .tech-grid,
    .warning-grid {
        grid-template-columns: 1fr;
    }

    .main-footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-iframe-play {
        height: 500px;
    }

    .age-gate-content {
        padding: 35px 25px;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}
