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

body {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Age Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 217, 61, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    backdrop-filter: blur(5px);
}

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

.age-dialog {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.age-logo {
    margin-bottom: 30px;
}

.age-dialog h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 700;
}

.age-main-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.age-sub-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm,
.btn-decline {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #ff6b35, #ffd93d);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-decline {
    background: #f5f5f5;
    color: #666;
}

.btn-decline:hover {
    background: #e0e0e0;
}

/* Navigation */
.top-nav {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
}

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

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: #ff6b35;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ff6b35, #ffd93d);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
}

/* Main Container */
.main-container {
    min-height: calc(100vh - 400px);
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #ff6b35, #ffd93d);
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Sections */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-container.narrow {
    max-width: 1000px;
}

.section-container.wide {
    max-width: 1500px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Intro Area */
.intro-area {
    padding: 80px 0;
    background: white;
}

.intro-box {
    background: #fff9f5;
    padding: 50px;
    border-radius: 25px;
    border-left: 6px solid #ff6b35;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.intro-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-box p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Essentials Area */
.essentials-area {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.essential-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid;
}

.essential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.essential-card.orange {
    border-top-color: #ff6b35;
}

.essential-card.yellow {
    border-top-color: #ffd93d;
}

.essential-card.red {
    border-top-color: #d9534f;
}

.essential-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.essential-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 700;
}

.essential-card p {
    color: #555;
    line-height: 1.8;
}

/* Game Area */
.game-area {
    padding: 80px 0;
    background: white;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(255, 107, 53, 0.2);
}

.game-display iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-tips {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff9f5, #fffef5);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #ffd93d;
}

.game-tips h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 12px;
    font-weight: 700;
}

.game-tips p {
    color: #555;
    line-height: 1.8;
}

/* Highlights Area */
.highlights-area {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.highlight-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.highlight-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight-card p {
    color: #666;
    line-height: 1.7;
}

/* Awareness Area */
.awareness-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #ffd93d);
}

.awareness-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.awareness-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.awareness-box p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, #ff6b35, #ffd93d);
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.page-hero.compact {
    padding: 60px 40px;
}

.play-content {
    padding: 60px 0;
    background: #f5f5f5;
}

.play-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

.play-game-area {
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.game-player {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.game-player iframe {
    width: 100%;
    height: 750px;
    display: block;
}

.play-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.sidebar-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 12px;
    font-weight: 700;
}

.sidebar-section p {
    color: #555;
    line-height: 1.8;
}

/* Document Section */
.document-section {
    padding: 60px 0;
    background: white;
}

.document-content {
    background: #fafafa;
    padding: 50px;
    border-radius: 25px;
}

.doc-block {
    margin-bottom: 45px;
}

.doc-block:last-child {
    margin-bottom: 0;
}

.doc-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 18px;
    font-weight: 700;
}

.doc-block p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 15px;
}

.doc-block ul {
    margin: 20px 0 20px 35px;
    color: #444;
}

.doc-block ul li {
    margin: 12px 0;
    line-height: 1.8;
}

/* Alert Boxes */
.alert-box {
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 45px;
    border-left: 6px solid;
}

.alert-box.primary {
    background: linear-gradient(135deg, #fff5f0, #fffef5);
    border-left-color: #ff6b35;
}

.alert-box.warning {
    background: linear-gradient(135deg, #fffbf0, #fefef5);
    border-left-color: #ffd93d;
}

.alert-box.info {
    background: linear-gradient(135deg, #f0f9ff, #f5fcff);
    border-left-color: #5dade2;
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.alert-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
}

.alert-box p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 15px;
}

.alert-box ul {
    margin: 20px 0 20px 35px;
    color: #444;
}

.alert-box ul li {
    margin: 12px 0;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background: linear-gradient(to bottom, #2c3e50, #1a252f);
    color: white;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-brand-text p {
    color: #bdc3c7;
}

.footer-resources h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-list a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.resource-list a:hover {
    color: #ffd93d;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .play-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-display iframe,
    .game-player iframe {
        height: 500px;
    }
    
    .age-dialog {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .intro-box,
    .awareness-box,
    .document-content {
        padding: 30px 25px;
    }
}
