* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e6ed;
    line-height: 1.6;
}

.top-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #8b5cf6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.brand-icon {
    font-size: 2rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #8b5cf6;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 30px;
    height: 3px;
    background: #8b5cf6;
    transition: 0.3s;
}

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #581c87 100%);
    padding: 6rem 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="50" cy="50" r="40" fill="none" stroke="rgba(139,92,246,0.1)" stroke-width="2"/></svg>') repeat;
    opacity: 0.3;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid #8b5cf6;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alerts-section {
    background: #0f172a;
    padding: 4rem 2rem;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alert-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid;
    transition: transform 0.3s;
}

.alert-card:hover {
    transform: translateY(-5px);
}

.alert-card.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.alert-card.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.alert-card.orange {
    background: rgba(249, 115, 22, 0.1);
    border-color: #f97316;
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.alert-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.alert-card p {
    color: #cbd5e1;
    font-size: 1.05rem;
}

.about-section {
    background: #0a0e27;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.tower-levels {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
}

.level {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    padding: 1.25rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

.level:nth-child(2) {
    animation-delay: 0.5s;
}

.level:nth-child(3) {
    animation-delay: 1s;
}

.level:nth-child(4) {
    animation-delay: 1.5s;
}

.level:nth-child(5) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-section {
    background: #0f172a;
    padding: 5rem 2rem;
}

.game-box {
    background: #1e293b;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.game-embed {
    width: 100%;
    height: 700px;
    border-radius: 15px;
    border: none;
}

.features-section {
    background: #0a0e27;
    padding: 5rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-tile {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature-tile:hover {
    border-color: #8b5cf6;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.tile-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-tile h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.feature-tile p {
    color: #cbd5e1;
    line-height: 1.7;
}

.community-section {
    background: #0f172a;
    padding: 5rem 2rem;
}

.community-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e1b4b, #581c87);
    padding: 3.5rem;
    border-radius: 20px;
    border: 3px solid #8b5cf6;
}

.community-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.community-box p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.play-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #581c87 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.play-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.play-hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
}

.play-content {
    background: #0a0e27;
    padding: 4rem 2rem;
}

.play-instructions {
    text-align: center;
    margin-bottom: 3rem;
}

.play-instructions h2 {
    font-size: 2.2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.play-instructions p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

.game-display {
    background: #1e293b;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #8b5cf6;
    margin-bottom: 3rem;
}

.game-embed-full {
    width: 100%;
    height: 800px;
    border-radius: 15px;
    border: none;
}

.play-tips {
    margin-top: 3rem;
}

.tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b5cf6;
}

.tip-card h3 {
    color: #8b5cf6;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.legal-container {
    background: #0a0e27;
    padding: 4rem 2rem;
    min-height: calc(100vh - 300px);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.legal-date {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-size: 1.8rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-block p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.warning-box {
    background: rgba(220, 38, 38, 0.15);
    border: 3px solid #dc2626;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.warning-box h2 {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #fca5a5;
    font-size: 1.2rem;
}

.site-footer {
    background: #0f172a;
    border-top: 3px solid #8b5cf6;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-size: 1.3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-block p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-meta {
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-block a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-inner {
    background: linear-gradient(135deg, #1e1b4b, #581c87);
    border: 3px solid #8b5cf6;
    border-radius: 25px;
    padding: 3.5rem;
    max-width: 550px;
    margin: 2rem;
    text-align: center;
}

.age-modal-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-modal-inner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.age-modal-inner p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.age-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.age-btn-confirm,
.age-btn-deny {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-confirm {
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    color: white;
}

.age-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.age-btn-deny {
    background: #dc2626;
    color: white;
}

.age-btn-deny:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

@media (max-width: 968px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        padding: 1.5rem 0;
        border-bottom: 1px solid #334155;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 500px;
    }

    .game-embed-full {
        height: 550px;
    }

    .age-modal-actions {
        flex-direction: column;
    }
}
