* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #1a0b00 0%, #3d1e0f 50%, #1a0b00 100%);
    color: #f5f5f5;
    line-height: 1.6;
}

/* Age Verification */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 11, 0, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verification.active {
    display: flex;
}

.age-modal {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 18px;
    padding: 50px 45px;
    max-width: 560px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 70px rgba(249, 115, 22, 0.5);
    animation: scaleIn 0.4s ease;
}

.age-flame {
    font-size: 72px;
    margin-bottom: 25px;
    animation: flicker 2s infinite;
}

.age-modal h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 800;
}

.age-modal p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-question {
    font-weight: 700;
    margin-top: 25px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-accept,
.btn-decline {
    flex: 1;
    padding: 17px 35px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: #f97316;
}

.btn-accept:hover {
    background: #fef3c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
    background: rgba(61, 30, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #f97316;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-flame {
    font-size: 40px;
    animation: flicker 2s infinite;
}

.logo-text {
    color: #f97316;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-menu {
    display: flex;
    gap: 8px;
}

.menu-item {
    color: #e5e5e5;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 16px;
}

.menu-item:hover,
.menu-item.active {
    color: #fff;
    background: rgba(249, 115, 22, 0.25);
}

/* Hero */
.hero {
    padding: 90px 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    text-align: center;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(249, 115, 22, 0.6);
}

.hero-subtitle {
    font-size: 24px;
    color: #fed7aa;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    color: #e5e5e5;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.7);
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

/* Features */
.features {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 46px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 800;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: #f97316;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.feature-emoji {
    font-size: 64px;
    margin-bottom: 25px;
}

.feature-box h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 800;
}

.feature-box p {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.8;
}

/* Important Info */
.important-info {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.info-banner {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-banner:last-child {
    margin-bottom: 0;
}

.info-banner.primary {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(234, 88, 12, 0.25) 100%);
    border-left: 6px solid #f97316;
}

.info-banner.secondary {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.25) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-left: 6px solid #ea580c;
}

.info-icon {
    font-size: 56px;
    font-weight: 900;
    color: #f97316;
    min-width: 80px;
    text-align: center;
}

.info-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.info-content p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    padding: 80px 20px;
}

.section-desc {
    text-align: center;
    font-size: 19px;
    color: #a3a3a3;
    margin-bottom: 45px;
}

.game-container {
    background: #000;
    border: 4px solid #f97316;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.5);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Benefits */
.benefits {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.benefit {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: #f97316;
    transform: translateY(-6px);
}

.benefit-icon {
    font-size: 50px;
    min-width: 60px;
}

.benefit-text h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
}

.benefit-text p {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.7;
}

/* Responsible */
.responsible {
    padding: 80px 20px;
}

.responsible-box {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 12px 45px rgba(249, 115, 22, 0.5);
}

.responsible-box h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 22px;
    font-weight: 800;
}

.responsible-box p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(234, 88, 12, 0.3) 100%);
    padding: 70px 20px;
    text-align: center;
    border-bottom: 3px solid #f97316;
}

.page-header h1 {
    color: #fff;
    font-size: 54px;
    margin-bottom: 15px;
    font-weight: 900;
}

.page-header p {
    color: #e5e5e5;
    font-size: 19px;
}

.doc-date {
    color: #a3a3a3;
    font-size: 16px;
}

/* Instructions */
.instructions {
    padding: 60px 20px;
}

.instruction-box {
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 14px;
    padding: 45px;
    max-width: 1000px;
    margin: 0 auto;
}

.instruction-box h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 800;
}

.instruction-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.instruction {
    background: rgba(61, 30, 15, 0.6);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f97316;
}

.instruction strong {
    color: #f97316;
    font-size: 19px;
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
}

.instruction p {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.7;
}

/* Legal */
.legal {
    padding: 60px 20px;
}

.legal-document {
    background: rgba(61, 30, 15, 0.6);
    border: 2px solid rgba(249, 115, 22, 0.3);
    padding: 55px;
    border-radius: 14px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-document h2 {
    color: #f97316;
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 22px;
    font-weight: 800;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #d4d4d4;
    margin-bottom: 22px;
    line-height: 1.9;
    font-size: 17px;
}

.legal-document ul {
    margin: 22px 0 22px 32px;
}

.legal-document li {
    color: #d4d4d4;
    margin-bottom: 14px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(61, 30, 15, 0.8);
    border-top: 3px solid #f97316;
    padding: 70px 20px 35px;
    margin-top: 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    color: #f97316;
    font-size: 24px;
    margin-bottom: 22px;
    font-weight: 800;
}

.footer-column p {
    color: #a3a3a3;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
}

.footer-bottom p {
    color: #737373;
    font-size: 15px;
}

/* Animations */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .main-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(61, 30, 15, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .main-menu.active {
        max-height: 450px;
        border-bottom-color: #f97316;
    }

    .menu-item {
        padding: 20px 30px;
        border-radius: 0;
        border-left: 4px solid transparent;
    }

    .menu-item:hover,
    .menu-item.active {
        background: rgba(249, 115, 22, 0.3);
        border-left-color: #f97316;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-text {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .game-iframe {
        height: 400px;
    }

    .legal-document {
        padding: 35px 28px;
    }

    .age-modal {
        padding: 40px 28px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .info-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .game-iframe {
        height: 300px;
    }

    .logo-text {
        font-size: 28px;
    }

    .logo-flame {
        font-size: 36px;
    }
}
