* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 3px solid #f97316;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-title {
    color: #f97316;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    color: #f97316;
    border-bottom-color: #f97316;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    width: 30px;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h2 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.page-banner h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-content {
    padding: 0 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #2d2d2d;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 2rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

/* Cards Section */
.cards-section {
    padding: 5rem 0;
    background: #1a1a1a;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: #2d2d2d;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s;
    border-left: 5px solid;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

.orange-card {
    border-left-color: #f97316;
}

.amber-card {
    border-left-color: #fbbf24;
}

.red-card {
    border-left-color: #ef4444;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-emoji {
    font-size: 3rem;
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f97316;
}

.card-body p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Game Display */
.game-display {
    padding: 5rem 0;
    background: #2d2d2d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.game-frame-wrapper {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f97316;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.main-game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
}

/* Features Showcase */
.features-showcase {
    padding: 5rem 0;
    background: #1a1a1a;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-block {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #3d3d3d;
}

.feature-block:hover {
    background: #3d3d3d;
    border-color: #f97316;
    transform: scale(1.05);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.75rem;
}

.feature-block p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Transparency Section */
.transparency-section {
    padding: 5rem 0;
    background: #2d2d2d;
}

.transparency-box {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #f97316;
    max-width: 900px;
    margin: 0 auto;
}

.transparency-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 1.5rem;
    text-align: center;
}

.transparency-box p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.promise-list {
    list-style: none;
    margin: 2rem 0;
}

.promise-list li {
    padding: 0.75rem 0;
    color: #b0b0b0;
    font-size: 1.05rem;
    border-bottom: 1px solid #3d3d3d;
}

.promise-footer {
    text-align: center;
    font-weight: 600;
    color: #f97316;
    margin-top: 2rem;
}

/* Play Page */
.play-instructions {
    padding: 4rem 0;
    background: #2d2d2d;
}

.instructions-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.instruction-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.inst-block {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #3d3d3d;
}

.inst-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.inst-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.inst-block p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.play-game-section {
    padding: 3rem 0;
    background: #1a1a1a;
}

.play-frame-container {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f97316;
}

.play-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
}

.play-reminder-section {
    padding: 3rem 0;
    background: #2d2d2d;
}

.reminder-card {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.reminder-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.reminder-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Pages */
.legal-container {
    padding: 4rem 0;
    background: #1a1a1a;
}

.legal-block {
    background: #2d2d2d;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f97316;
}

.legal-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 1rem;
}

.legal-block p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-block li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.highlight-block {
    background: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    border-left: 5px solid #f97316;
    border: 2px solid #f97316;
}

/* Footer */
.main-footer {
    background: #0d0d0d;
    color: #b0b0b0;
    padding: 3rem 2rem 1rem;
    border-top: 3px solid #f97316;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3d3d3d;
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-verification-modal {
    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: 2000;
}

.age-verification-modal.hidden {
    display: none;
}

.verification-card {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 2px solid #f97316;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.verification-card h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f97316;
    margin-bottom: 1rem;
}

.verification-card p {
    font-size: 1.15rem;
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.verification-note {
    font-size: 1rem;
    opacity: 0.8;
}

.verification-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.verify-yes,
.verify-no {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.verify-yes {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.verify-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.5);
}

.verify-no {
    background: #3d3d3d;
    color: #b0b0b0;
}

.verify-no:hover {
    background: #4d4d4d;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0d0d0d;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .nav-item {
        padding: 1rem 2rem;
        border-bottom: 1px solid #3d3d3d;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero-section h2 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .page-banner h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-grid,
    .features-layout {
        grid-template-columns: 1fr;
    }
    
    .main-game-frame,
    .play-game-frame {
        height: 450px;
    }
    
    .verification-card {
        margin: 1rem;
        padding: 2rem;
    }
    
    .verification-buttons {
        flex-direction: column;
    }
}
