* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #f5f0ff 0%, #e8dcff 100%);
    color: #2d1b4e;
    line-height: 1.7;
    min-height: 100vh;
}

.site-header {
    background: linear-gradient(135deg, #6b46c1 0%, #8e44ad 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.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: #ffffff;
}

.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: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    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: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.main-content {
    max-width: 100%;
}

.welcome-banner {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.9) 0%, rgba(142, 68, 173, 0.9) 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: #ffffff;
    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: #ffd700;
    color: #2d1b4e;
    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 rgba(255, 215, 0, 0.4);
}

.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: #ffffff;
    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: #ff6b9d;
}

.card-2 {
    border-top-color: #ffd700;
}

.card-3 {
    border-top-color: #00d4ff;
}

.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: #6b46c1;
    margin-bottom: 1rem;
}

.point-card p {
    font-size: 1rem;
    line-height: 1.8;
}

.featured-game-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0e7ff 0%, #e5d5ff 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #6b46c1;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b46c1;
    margin-bottom: 3rem;
    font-weight: 300;
}

.game-embed-container {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
    border: 5px solid #6b46c1;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-disclaimer {
    margin-top: 2rem;
    text-align: center;
    background: rgba(255, 215, 0, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #ffd700;
}

.game-disclaimer p {
    color: #2d1b4e;
    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: #ffffff;
    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: #e5d5ff;
    margin-bottom: 1rem;
}

.benefit-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #6b46c1;
    margin-bottom: 1rem;
}

.legal-notices {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

.notice-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.2);
    border: 3px solid #ffd700;
}

.notice-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff8c00;
    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, #2d1b4e 0%, #3d2861 100%);
    color: #e8dcff;
    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: #ffd700;
    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: #e8dcff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover,
.footer-menu a:hover {
    color: #ffd700;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 220, 255, 0.2);
    color: #b8a3d8;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 78, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 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 #6b46c1;
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #6b46c1;
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d1b4e;
}

.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, #6b46c1 0%, #8e44ad 100%);
    color: #ffffff;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(107, 70, 193, 0.4);
}

.btn-deny {
    background: #e0e0e0;
    color: #2d1b4e;
}

.btn-deny:hover {
    background: #d0d0d0;
}

.play-page-header {
    background: linear-gradient(135deg, #6b46c1 0%, #8e44ad 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.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, #f0e7ff 0%, #e5d5ff 100%);
}

.info-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    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: #6b46c1;
    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: rgba(255, 215, 0, 0.15);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    margin-top: 2rem;
}

.critical-reminder p {
    color: #2d1b4e;
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-document {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    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: #6b46c1;
    margin-bottom: 0.5rem;
}

.document-date {
    color: #888888;
    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: #6b46c1;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #6b46c1;
    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: rgba(107, 70, 193, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #6b46c1;
    margin-top: 3rem;
}

.legal-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #6b46c1;
    margin-bottom: 1rem;
}

.critical-disclaimer {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #ff8c00;
    margin-bottom: 3rem;
}

.critical-disclaimer h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ff8c00;
    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, #6b46c1 0%, #8e44ad 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;
    }
}
