* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    color: #e6edf3;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Check Overlay */
.age-check-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-dialog {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 45px 35px;
    border-radius: 20px;
    max-width: 520px;
    text-align: center;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
}

.age-check-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-check-dialog h2 {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-check-dialog p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d1d5db;
}

.age-check-question {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-top: 25px !important;
    margin-bottom: 30px !important;
    color: #f3f4f6 !important;
}

.age-check-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-check-actions button {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-proceed {
    background: #ff6b35;
    color: white;
}

.btn-proceed:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-decline {
    background: #4b5563;
    color: white;
}

.btn-decline:hover {
    background: #374151;
}

/* Top Bar Navigation */
.top-bar {
    background: rgba(17, 24, 39, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
    backdrop-filter: blur(10px);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #ff6b35;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #14b8a6;
    transition: width 0.3s ease;
}

.main-menu a:hover {
    color: #14b8a6;
}

.main-menu a:hover::after {
    width: 100%;
}

/* Hero Area */
.hero-area {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid #ff6b35;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-weight: 600;
    color: #f3f4f6;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #14b8a6 100%);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: rgba(31, 41, 55, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    padding: 35px;
    border-radius: 15px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.info-card.orange {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.info-card.teal {
    background: rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

.info-card.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-emoji {
    font-size: 40px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f3f4f6;
}

.info-card p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.7;
}

/* Game Area */
.game-area {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
}

.section-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto 30px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #14b8a6;
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 184, 166, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #14b8a6;
    text-align: center;
}

.game-info-box p {
    font-size: 16px;
    color: #d1d5db;
}

/* Features Area */
.features-area {
    padding: 70px 0;
    background: rgba(31, 41, 55, 0.3);
}

.section-title {
    font-size: 46px;
    font-weight: 800;
    text-align: center;
    color: #14b8a6;
    margin-bottom: 60px;
}

.features-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(17, 24, 39, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #374151;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    opacity: 0.3;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.7;
}

/* About Area */
.about-area {
    padding: 70px 0;
}

.about-area h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 40px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 20px;
}

/* Play Page */
.play-main {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.play-header {
    text-align: center;
    margin-bottom: 45px;
}

.play-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
}

.play-subtitle {
    font-size: 20px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
}

.play-instructions {
    max-width: 1000px;
    margin: 0 auto 45px;
    background: rgba(31, 41, 55, 0.5);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #14b8a6;
}

.play-instructions h3 {
    font-size: 26px;
    color: #14b8a6;
    margin-bottom: 25px;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.instruction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.instruction-icon {
    font-size: 36px;
}

.instruction-item p {
    font-size: 15px;
    color: #d1d5db;
}

.browser-note {
    font-size: 15px;
    color: #9ca3af;
    text-align: center;
}

/* Legal Pages */
.legal-main {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.legal-main h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 15px;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-item {
    margin-bottom: 35px;
}

.legal-item h2 {
    font-size: 26px;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 15px;
}

.legal-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 15px;
}

.warning-box {
    padding: 30px;
    border-radius: 12px;
    border: 3px solid;
    margin: 35px 0;
}

.warning-box.orange {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.warning-box.teal {
    background: rgba(20, 184, 166, 0.15);
    border-color: #14b8a6;
}

.warning-box.purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
}

.warning-box h2 {
    margin-top: 0;
    font-size: 28px;
}

/* Footer */
.main-footer {
    background: rgba(17, 24, 39, 0.95);
    padding: 55px 0 20px;
    border-top: 2px solid #ff6b35;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.footer-block p {
    font-size: 15px;
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #14b8a6;
}

.footer-bar {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #6b7280;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(17, 24, 39, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #ff6b35;
        align-items: flex-start;
    }

    .main-menu.active {
        right: 0;
    }

    .main-menu a {
        font-size: 20px;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #374151;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .visual-circle {
        width: 250px;
        height: 250px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .section-title {
        font-size: 36px;
    }

    .features-columns {
        grid-template-columns: 1fr;
    }

    .play-header h1 {
        font-size: 38px;
    }

    .instructions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legal-main h1 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
