* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    line-height: 1.7;
}

/* Header */
.site-header {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    border-bottom: 3px solid #ff8c42;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff8c42;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 140, 66, 0.5);
}

.main-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ff8c42;
    border-color: #ff8c42;
    background: rgba(255, 140, 66, 0.1);
}

.nav-link.active {
    color: #ff8c42;
    border-color: #ff8c42;
    background: rgba(255, 140, 66, 0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ff8c42;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Section Container */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #f85a3e 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(26, 26, 26, 0.4) 90%);
}

.hero-backdrop {
    position: relative;
    z-index: 1;
}

.hero-inner {
    text-align: center;
}

.hero-heading {
    font-size: 5.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 10px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 45px;
    letter-spacing: 2px;
}

.hero-action {
    display: inline-block;
    background: white;
    color: #ff8c42;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Welcome Area */
.welcome-area {
    padding: 80px 40px;
}

.area-title {
    font-size: 3rem;
    color: #ff8c42;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.welcome-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.highlight-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c42;
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
}

.card-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.7rem;
    color: #ff8c42;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Notice Area */
.notice-area {
    padding: 60px 40px;
    background: rgba(255, 140, 66, 0.05);
}

.notice-wrapper {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(248, 90, 62, 0.1));
    border: 3px solid #ff8c42;
    border-radius: 20px;
    padding: 45px;
}

.notice-heading {
    font-size: 2.2rem;
    color: #ff8c42;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.notice-block {
    background: rgba(26, 26, 26, 0.7);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff8c42;
}

.notice-block strong {
    display: block;
    font-size: 1.3rem;
    color: #ff8c42;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Game Area */
.game-area {
    padding: 80px 40px;
}

.area-subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.game-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ff8c42;
    box-shadow: 0 15px 50px rgba(255, 140, 66, 0.3);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-cta-area {
    text-align: center;
    margin-top: 40px;
}

.game-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff8c42 0%, #f85a3e 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.game-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.6);
}

/* Reasons Area */
.reasons-area {
    padding: 80px 40px;
    background: rgba(255, 140, 66, 0.05);
}

.reasons-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.reason-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    border: 3px solid rgba(255, 140, 66, 0.3);
}

.reason-box h3 {
    font-size: 1.8rem;
    color: #ff8c42;
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reason-box p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Platform Info */
.platform-info {
    padding: 80px 40px;
}

.info-dual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-segment {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #ff8c42;
}

.info-segment h3 {
    font-size: 1.9rem;
    color: #ff8c42;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-segment p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    padding: 60px 40px 30px;
    margin-top: 80px;
    border-top: 4px solid #ff8c42;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ff8c42;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    background: #ff8c42;
    color: #1a1a1a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ff8c42;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 140, 66, 0.3);
    font-size: 0.95rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #ff8c42 0%, #f85a3e 100%);
    padding: 80px 40px;
    text-align: center;
}

.page-banner h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-banner p {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.page-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

/* Guide Section */
.guide-section {
    padding: 50px 40px;
}

.guide-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 3px solid #ff8c42;
    border-radius: 20px;
    padding: 45px;
    max-width: 950px;
    margin: 0 auto;
}

.guide-box h3 {
    font-size: 2rem;
    color: #ff8c42;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guide-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.guide-item {
    background: rgba(255, 140, 66, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #ff8c42;
}

.guide-item strong {
    display: block;
    color: #ff8c42;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Play Area */
.play-area {
    padding: 50px 40px;
    background: rgba(255, 140, 66, 0.05);
}

.play-box {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ff8c42;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.4);
}

.play-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

/* Tech Section */
.tech-section {
    padding: 70px 40px;
}

.tech-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.tech-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    border: 3px solid rgba(255, 140, 66, 0.3);
}

.tech-box h3 {
    font-size: 1.6rem;
    color: #ff8c42;
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-box p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Legal Area */
.legal-area {
    padding: 70px 40px;
}

.legal-content {
    max-width: 950px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    color: #ff8c42;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.terms-box,
.privacy-box,
.disclaimer-box {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(248, 90, 62, 0.1));
    border: 3px solid #ff8c42;
    border-radius: 18px;
    padding: 35px;
    margin-top: 50px;
}

.terms-box h3,
.privacy-box h3,
.disclaimer-box h3 {
    color: #ff8c42;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-box ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer-box li {
    background: rgba(26, 26, 26, 0.7);
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 10px;
    border-left: 5px solid #ff8c42;
}

.disclaimer-box li strong {
    color: #ff8c42;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.overlay-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #ff8c42;
    box-shadow: 0 25px 80px rgba(255, 140, 66, 0.5);
}

.overlay-icon {
    font-size: 5rem;
    margin-bottom: 25px;
}

.overlay-box h2 {
    font-size: 2.5rem;
    color: #ff8c42;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay-box p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.overlay-subtext {
    font-size: 1rem;
    color: rgba(224, 224, 224, 0.8);
}

.overlay-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.overlay-btn {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-btn.confirm {
    background: #ff8c42;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}

.overlay-btn.confirm:hover {
    background: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.6);
}

.overlay-btn.reject {
    background: #6c757d;
    color: white;
}

.overlay-btn.reject:hover {
    background: #5a6268;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        border-top: 3px solid #ff8c42;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    }
    
    .hero-heading {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .hero-lead {
        font-size: 1.3rem;
    }
    
    .area-title {
        font-size: 2.2rem;
    }
    
    .page-banner h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .highlight-cards,
    .notice-grid,
    .reasons-split,
    .info-dual,
    .tech-boxes {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .play-frame {
        height: 550px;
    }
    
    .overlay-box {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .overlay-buttons {
        flex-direction: column;
    }
    
    .overlay-btn {
        width: 100%;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
    }
}
