* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e7ff;
    line-height: 1.6;
    overflow-x: hidden;
}

.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-right: 2px solid #00ff88;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    text-align: center;
    flex: 1;
}

.logo-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.site-logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: #00ff88;
    font-size: 1.5em;
    cursor: pointer;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav a {
    display: block;
    padding: 15px 25px;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(0, 255, 136, 0.1);
    border-left-color: #00ff88;
    color: #00ff88;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    text-align: center;
    font-size: 0.9em;
    color: #64748b;
}

.sidebar-footer p {
    margin: 5px 0;
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: none;
    color: #0a0e27;
    font-size: 1.5em;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #00ff88;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.spider-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.age-modal-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.age-modal-box p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-buttons button {
    font-family: 'Orbitron', sans-serif;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0e27;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.6);
}

.btn-deny {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #00ff88;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #cbd5e1;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 136, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #00ff88;
    font-weight: 600;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #00ff88;
    margin-bottom: 15px;
}

/* Sections */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #00ff88;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

/* Game Sections */
.game-spotlight,
.game-play-area {
    margin-bottom: 40px;
}

.game-embed {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff88;
}

.game-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-tag {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0e27;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #00ff88;
}

.about-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #00ff88;
    margin-bottom: 40px;
}

.community-content p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1em;
}

.community-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.stat-label {
    font-size: 1.1em;
    color: #94a3b8;
    margin-top: 10px;
}

/* Play Page Specific */
.play-header {
    text-align: center;
    margin-bottom: 40px;
}

.play-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    margin-bottom: 20px;
}

.play-header p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
}

.game-guide {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #00ff88;
    margin-top: 40px;
}

.game-guide h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    color: #00ff88;
    margin-bottom: 25px;
}

.guide-content {
    display: grid;
    gap: 20px;
}

.guide-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.game-reminder {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.last-update {
    color: #64748b;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-block {
    background: rgba(30, 41, 59, 0.5);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #00ff88;
}

.legal-block h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.legal-block p,
.legal-block ul {
    margin-bottom: 15px;
}

.legal-block ul {
    padding-left: 30px;
}

.legal-block li {
    margin-bottom: 10px;
}

.highlight-block {
    border: 3px solid #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0f172a, #020617);
    border-top: 2px solid #00ff88;
    padding: 50px 40px 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    color: #64748b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 80px 20px 20px;
    }

    .hero-banner {
        padding: 40px 20px;
    }

    .glitch {
        font-size: 2em;
    }

    .hero-tagline {
        font-size: 1.1em;
    }

    .game-embed iframe {
        height: 400px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .page-title {
        font-size: 2em;
    }

    .community-section {
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .age-modal-box {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .info-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
}
