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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: gateAppear 0.4s ease;
}

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

@keyframes gateAppear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.age-gate-box {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 2px solid #ff6b35;
    padding: 60px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 80px rgba(255, 107, 53, 0.4);
    animation: boxSlide 0.6s ease;
}

@keyframes boxSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.age-gate-box p {
    color: #c0c0c0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.age-sub {
    font-size: 0.95rem;
    color: #888;
}

.age-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.confirm-age,
.deny-age {
    padding: 16px 45px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.confirm-age {
    background: #ff6b35;
    color: #000;
}

.confirm-age:hover {
    background: #ff8555;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
}

.deny-age {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.deny-age:hover {
    background: rgba(255, 107, 53, 0.1);
}

.layout-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1429 100%);
    border-right: 2px solid #ff6b35;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2px;
}

.sidebar-nav {
    padding: 30px 0;
}

.nav-link {
    display: block;
    padding: 18px 30px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
}

.mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    background: #ff6b35;
    border: none;
    padding: 12px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 40px;
    width: calc(100% - 280px);
}

.banner-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231a1f3a" width="100" height="100"/></svg>');
    padding: 100px 50px;
    text-align: center;
    border: 2px solid #ff6b35;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.05) 10px,
        rgba(255, 107, 53, 0.05) 20px
    );
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.banner-overlay {
    position: relative;
    z-index: 1;
}

.banner-section h1 {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.tagline {
    font-size: 1.4rem;
    color: #14b8a6;
    margin-bottom: 30px;
    font-weight: 600;
}

.action-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #ff6b35;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
}

.action-btn:hover {
    background: transparent;
    color: #ff6b35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.features-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 35px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.feature-number {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.7;
}

.feature-box h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.7;
}

.game-section {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 2px solid #ff6b35;
    padding: 50px;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    color: #ff6b35;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-desc {
    text-align: center;
    color: #888;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
}

.game-window {
    width: 100%;
    height: 650px;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.highlights-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-card {
    background: rgba(26, 31, 58, 0.6);
    border-left: 4px solid #ff6b35;
    padding: 30px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(26, 31, 58, 0.9);
    transform: translateX(5px);
}

.highlight-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.highlight-card h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.info-banner {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 2px solid #14b8a6;
    padding: 50px;
    margin-bottom: 40px;
}

.info-banner h2 {
    text-align: center;
    color: #14b8a6;
    font-size: 2.5rem;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.info-cell {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 30px;
}

.info-label {
    color: #14b8a6;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-cell p {
    color: #c0c0c0;
    line-height: 1.7;
}

.about-section {
    background: rgba(26, 31, 58, 0.4);
    padding: 50px;
    margin-bottom: 40px;
}

.about-section p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.play-intro {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 2px solid #ff6b35;
    padding: 60px;
    text-align: center;
    margin-bottom: 40px;
}

.play-intro h1 {
    color: #ff6b35;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

.play-intro p {
    color: #888;
    font-size: 1.2rem;
}

.play-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.play-tip {
    background: rgba(26, 31, 58, 0.6);
    border-top: 3px solid #ff6b35;
    padding: 30px;
}

.play-tip h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.play-tip p {
    color: #b0b0b0;
    line-height: 1.7;
}

.game-area {
    margin-bottom: 40px;
}

.game-wrapper {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 2px solid #ff6b35;
    padding: 30px;
}

.game-iframe {
    width: 100%;
    height: 750px;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.play-reminder {
    background: rgba(20, 184, 166, 0.1);
    border: 2px solid #14b8a6;
    padding: 40px;
    text-align: center;
}

.play-reminder h3 {
    color: #14b8a6;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.play-reminder p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-document {
    background: linear-gradient(145deg, #1a1f3a 0%, #0f1429 100%);
    border: 2px solid #ff6b35;
    padding: 60px;
    margin-bottom: 40px;
}

.legal-document h1 {
    color: #ff6b35;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 35px;
}

.legal-document h2 {
    color: #14b8a6;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-document p {
    color: #b0b0b0;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-document ul {
    margin-left: 35px;
    margin-bottom: 18px;
    color: #b0b0b0;
}

.legal-document li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-bar {
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1429 100%);
    border-top: 2px solid #ff6b35;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ff6b35;
    margin-bottom: 18px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-col p {
    color: #888;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ff6b35;
}

.footer-copyright {
    background: #000;
    padding: 20px;
    text-align: center;
}

.footer-copyright p {
    color: #888;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 80px 20px 40px;
    }

    .banner-section {
        padding: 60px 30px;
    }

    .banner-section h1 {
        font-size: 2.5rem;
    }

    .game-window {
        height: 450px;
    }

    .game-iframe {
        height: 550px;
    }

    .legal-document {
        padding: 40px 25px;
    }

    .legal-document h1 {
        font-size: 2.2rem;
    }

    .age-gate-box {
        padding: 40px 25px;
        margin: 20px;
    }

    .age-actions {
        flex-direction: column;
        gap: 15px;
    }

    .confirm-age,
    .deny-age {
        width: 100%;
    }
}