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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #3d1952 50%, #1a0b2e 100%);
    min-height: 100vh;
    color: #333;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 11, 46, 0.97);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.age-modal.show {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 580px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 70px rgba(168, 85, 247, 0.4);
}

.age-modal-icon {
    margin-bottom: 30px;
}

.age-modal-content h2 {
    font-size: 38px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-modal-message {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

.age-modal-question {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 35px;
}

.age-modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-yes,
.age-no {
    padding: 17px 40px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.age-yes {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    color: white;
}

.age-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
}

.age-no {
    background: #e5e5e5;
    color: #777;
}

.age-no:hover {
    background: #d5d5d5;
}

/* Navbar */
.navbar {
    background: rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand span {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-links a:hover {
    background: rgba(168, 85, 247, 0.2);
}

.nav-links a.active {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 70px 60px;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 62px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 900;
}

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

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

/* About Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.about-card {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.about-card h2 {
    font-size: 32px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Important Section */
.important-section {
    margin-bottom: 50px;
}

.important-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 900;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.info-card {
    padding: 45px;
    border-radius: 25px;
    color: white;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.info-card.purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.info-card.pink {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.info-card.magenta {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
}

.info-icon {
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 800;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Game Showcase */
.game-showcase-section {
    margin-bottom: 50px;
}

.game-showcase-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
}

.game-showcase-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
}

.game-showcase-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.game-disclaimer {
    text-align: center;
    color: white;
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section h2 {
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 900;
}

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

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 22px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.benefit-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    padding: 90px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 22px;
    font-weight: 300;
}

/* Play Guide Section */
.play-guide-section {
    margin-bottom: 50px;
}

.play-guide-section h2 {
    font-size: 42px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

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

.guide-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guide-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 20px;
    color: #A855F7;
    margin-bottom: 12px;
    font-weight: 800;
}

.guide-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.play-reminder {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    color: white;
    padding: 28px;
    border-radius: 15px;
    text-align: center;
    font-size: 17px;
}

/* Game Display Section */
.game-display-section {
    margin-bottom: 50px;
}

/* Legal Document Section */
.legal-document-section {
    margin-bottom: 50px;
}

.legal-document {
    background: white;
    padding: 55px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-document h2 {
    font-size: 30px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.legal-document p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.disclaimer-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 35px;
    border-radius: 15px;
    border-left: 6px solid #A855F7;
    margin-bottom: 35px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a0b2e 0%, #3d1952 100%);
    border-top: 3px solid rgba(168, 85, 247, 0.5);
    padding: 70px 40px 40px;
    color: white;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-size: 22px;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #EC4899;
}

.footer-legal {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    opacity: 0.7;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(168, 85, 247, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links a {
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-container {
        padding: 40px 25px;
    }

    .hero-card {
        padding: 45px 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .about-cards,
    .info-cards,
    .benefits-cards,
    .guide-cards {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .game-frame {
        height: 500px;
    }

    .legal-document {
        padding: 35px 25px;
    }

    .age-modal-content {
        padding: 40px 25px;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .age-yes,
    .age-no {
        width: 100%;
    }
}
