* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f1f1f1;
    line-height: 1.6;
    min-height: 100vh;
}

.wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.top-header {
    background: rgba(20, 184, 166, 0.1);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #14b8a6;
}

.navbar {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-title {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #14b8a6;
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(139, 92, 246, 0.3);
    color: #14b8a6;
}

/* Hero Area */
.hero-area {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(20, 184, 166, 0.15) 100%);
    border-bottom: 2px solid rgba(20, 184, 166, 0.5);
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 21px;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid #8b5cf6;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
}

/* Intro Section */
.intro-section {
    padding: 70px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Key Points */
.key-points {
    padding: 70px 0;
    background: rgba(139, 92, 246, 0.05);
}

.key-points h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.point-card {
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid #14b8a6;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    background: rgba(20, 184, 166, 0.15);
}

.point-emoji {
    font-size: 50px;
    margin-bottom: 20px;
}

.point-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #14b8a6;
    font-weight: 700;
}

.point-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 70px 0;
}

.game-showcase h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.showcase-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.game-embed {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    border: 3px solid #8b5cf6;
}

.game-player {
    width: 100%;
    height: 600px;
    border: none;
}

.game-cta {
    text-align: center;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

/* Advantages */
.advantages {
    padding: 70px 0;
    background: rgba(139, 92, 246, 0.05);
}

.advantages h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage {
    display: flex;
    gap: 20px;
    background: rgba(20, 184, 166, 0.1);
    border-left: 4px solid #14b8a6;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
}

.advantage:hover {
    background: rgba(20, 184, 166, 0.15);
    transform: translateX(5px);
}

.adv-icon {
    font-size: 42px;
    min-width: 42px;
}

.adv-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #14b8a6;
    font-weight: 700;
}

.adv-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* Mindful Gaming */
.mindful-gaming {
    padding: 70px 0;
}

.mindful-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mindful-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.mindful-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: rgba(139, 92, 246, 0.1);
    padding: 55px 0 25px;
    margin-top: 70px;
    border-top: 2px solid #14b8a6;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #14b8a6;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-nav a:hover {
    color: #14b8a6;
}

.footer-bottom {
    border-top: 2px solid rgba(20, 184, 166, 0.3);
    padding-top: 22px;
    text-align: center;
    font-size: 14px;
}

/* Age Overlay */
.age-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: 10000;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 3px solid #14b8a6;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.age-emoji {
    font-size: 60px;
    margin-bottom: 20px;
}

.age-box h2 {
    font-size: 34px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.age-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.age-requirement-box {
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid #8b5cf6;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.age-requirement-box p {
    font-size: 19px;
    font-weight: 700;
    color: #14b8a6;
    margin: 0;
}

.age-info {
    font-size: 16px;
    font-style: italic;
    color: #aaa;
    margin-bottom: 30px;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-confirm-age {
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm-age:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(139, 92, 246, 0.5);
}

.btn-deny-age {
    background: transparent;
    color: #f1f1f1;
    padding: 15px 35px;
    border: 2px solid #f1f1f1;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-deny-age:hover {
    background: rgba(241, 241, 241, 0.1);
}

/* Play Page */
.play-hero {
    padding: 65px 0;
    text-align: center;
    background: rgba(139, 92, 246, 0.2);
    border-bottom: 2px solid rgba(20, 184, 166, 0.5);
}

.play-hero h1 {
    font-size: 46px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.play-hero p {
    font-size: 19px;
}

.fullscreen-game {
    padding: 0;
}

.game-full-container {
    background: #000;
    width: 100%;
    border-top: 3px solid #8b5cf6;
    border-bottom: 3px solid #8b5cf6;
}

.game-fullscreen {
    width: 100%;
    height: 720px;
    border: none;
}

.game-guidance {
    padding: 70px 0;
}

.game-guidance h2 {
    font-size: 40px;
    margin-bottom: 45px;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.guide-box {
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid #14b8a6;
    border-radius: 15px;
    padding: 30px;
}

.guide-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #14b8a6;
    font-weight: 700;
}

.guide-box p {
    font-size: 16px;
    line-height: 1.7;
}

.play-reminder-section {
    padding: 45px 0;
    background: rgba(139, 92, 246, 0.05);
}

.reminder-card {
    background: rgba(139, 92, 246, 0.2);
    border: 3px solid #8b5cf6;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
}

.reminder-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #14b8a6;
    font-weight: 700;
}

.reminder-card p {
    font-size: 18px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-top {
    padding: 65px 0;
    text-align: center;
    background: rgba(139, 92, 246, 0.2);
    border-bottom: 2px solid rgba(20, 184, 166, 0.5);
}

.legal-top h1 {
    font-size: 46px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.date-updated {
    font-size: 17px;
    color: #aaa;
    font-style: italic;
}

.legal-body {
    padding: 70px 0;
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(139, 92, 246, 0.1);
    padding: 45px;
    border-radius: 15px;
    border: 2px solid #14b8a6;
}

.legal-container h2 {
    font-size: 30px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #14b8a6;
    font-weight: 700;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 18px 0 18px 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: #14b8a6;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        display: none;
        min-width: 200px;
        border: 2px solid #14b8a6;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .points-grid,
    .advantage-list,
    .guidance-grid,
    .footer-sections {
        grid-template-columns: 1fr;
    }

    .game-player {
        height: 420px;
    }

    .game-fullscreen {
        height: 520px;
    }

    .age-box {
        padding: 35px 22px;
        margin: 20px;
    }

    .age-actions {
        flex-direction: column;
    }

    .legal-container {
        padding: 28px 18px;
    }
}
