:root {
    --color-primary: #991b1b;
    --color-primary-dark: #7f1d1d;
    --color-secondary: #ef4444;
    --color-accent-pink: #ec4899;
    --color-accent-cyan: #06b6d4;
    --color-accent-orange: #f97316;
    --overlay-dark: rgba(153, 27, 27, 0.97);
    --overlay-primary: rgba(153, 27, 27, 0.9);
    --overlay-primary-alt: rgba(127, 29, 29, 0.9);
    --shadow-primary: rgba(153, 27, 27, 0.3);
    --shadow-gold: rgba(239, 68, 68, 0.4);
    --highlight-gold: rgba(239, 68, 68, 0.15);
    --highlight-primary: rgba(153, 27, 27, 0.1);
    --bg-dark: #7f1d1d;
    --bg-dark-alt: #991b1b;
    --text-dark: #450a0a;

    --bg-light-purple: #fef2f2;
    --bg-light-purple-alt: #fee2e2;
    --bg-purple-gradient: #fef2f2;
    --bg-purple-gradient-alt: #fee2e2;
    --bg-orange-light: #fff7ed;
    --bg-orange-alt: #ffedd5;
    --text-light: #ffffff;
    --text-purple-light: #ffffff;
    --text-gray: #fca5a5;
    --text-purple-muted: #fca5a5;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --bg-gray: #e0e0e0;
    --bg-gray-hover: #d0d0d0;
}

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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, var(--bg-light-purple) 0%, var(--bg-light-purple-alt) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

.site-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.header-wrapper {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-gem {
    font-size: 2.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.main-content {
    max-width: 100%;
}

.welcome-banner {
    background: linear-gradient(135deg, var(--overlay-primary) 0%, var(--overlay-primary-alt) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%236b46c1" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.banner-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-btn {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.key-points {
    padding: 5rem 2rem;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.point-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.card-1 {
    border-top-color: var(--color-accent-pink);
}

.card-2 {
    border-top-color: var(--color-secondary);
}

.card-3 {
    border-top-color: var(--color-accent-cyan);
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.25);
}

.point-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.point-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.point-card p {
    font-size: 1rem;
    line-height: 1.8;
}

.featured-game-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-purple-gradient) 0%, var(--bg-purple-gradient-alt) 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.game-embed-container {
    background: var(--bg-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-primary);
    border: 5px solid var(--color-primary);
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-disclaimer {
    margin-top: 2rem;
    text-align: center;
    background: var(--highlight-gold);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--color-secondary);
}

.game-disclaimer p {
    color: var(--text-dark);
    font-weight: 600;
}

.platform-benefits {
    padding: 5rem 2rem;
}

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

.benefit-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.2);
}

.benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-purple-gradient-alt);
    margin-bottom: 1rem;
}

.benefit-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.legal-notices {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-orange-light) 0%, var(--bg-orange-alt) 100%);
}

.notice-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.2);
    border: 3px solid var(--color-secondary);
}

.notice-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-accent-orange);
    margin-bottom: 2rem;
}

.notice-content {
    line-height: 2;
}

.notice-list {
    list-style-position: inside;
}

.notice-list li {
    margin-bottom: 1rem;
}

.site-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
    color: var(--text-purple-light);
    padding: 4rem 2rem 1.5rem;
}

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

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-links,
.footer-menu {
    list-style: none;
}

.support-links li,
.footer-menu li {
    margin-bottom: 0.8rem;
}

.support-links a,
.footer-menu a {
    color: var(--text-purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover,
.footer-menu a:hover {
    color: var(--color-secondary);
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 220, 255, 0.2);
    color: var(--text-purple-muted);
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

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

.age-gate-content {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light-purple) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(107, 70, 193, 0.5);
    border: 4px solid var(--color-primary);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--text-light);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(107, 70, 193, 0.4);
}

.btn-deny {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.btn-deny:hover {
    background: var(--bg-gray-hover);
}

.play-page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-light);
}

.play-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.play-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.game-play-section {
    padding: 4rem 2rem;
}

.game-information {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-purple-gradient) 0%, var(--bg-purple-gradient-alt) 100%);
}

.info-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.2);
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-item {
    text-align: center;
}

.info-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.critical-reminder {
    background: var(--highlight-gold);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--color-secondary);
    margin-top: 2rem;
}

.critical-reminder p {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-document {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.15);
}

.legal-document h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.document-date {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-highlight {
    background: var(--highlight-primary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--color-primary);
    margin-top: 3rem;
}

.legal-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.critical-disclaimer {
    background: linear-gradient(135deg, var(--bg-orange-light) 0%, var(--bg-orange-alt) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--color-accent-orange);
    margin-bottom: 3rem;
}

.critical-disclaimer h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-accent-orange);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-link {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .banner-overlay h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .game-embed {
        height: 500px;
    }

    .points-grid,
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .play-page-header h1 {
        font-size: 2.5rem;
    }

    .legal-document {
        padding: 2.5rem 2rem;
    }

    .legal-document h1 {
        font-size: 2.2rem;
    }
}