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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.7;
    min-height: 100vh;
}

.top-nav {
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1229 100%);
    border-bottom: 2px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 5000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-symbol {
    font-size: 2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #00ff88;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.current {
    color: #00ff88;
}

.age-gate {
    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;
    backdrop-filter: blur(10px);
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1229 100%);
    border: 2px solid #00ff88;
    border-radius: 12px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    margin: 1rem;
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.age-notice {
    color: #888;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.age-gate-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-confirm,
.age-deny {
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.age-confirm {
    background: #00ff88;
    color: #0a0e27;
}

.age-confirm:hover {
    background: #00cc6f;
    transform: scale(1.05);
}

.age-deny {
    background: #333;
    color: #fff;
}

.age-deny:hover {
    background: #444;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1229 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 3px solid #00ff88;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%2300ff88" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, #0a0e27 100%);
}

.hero-text {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-lead {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00ff88;
    color: #0a0e27;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: #00cc6f;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.alerts-section {
    margin-bottom: 3rem;
}

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

.alert-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1229 100%);
    border: 2px solid #00ff88;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s;
}

.alert-box:hover {
    transform: translateY(-5px);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alert-symbol {
    font-size: 2.5rem;
}

.alert-box h3 {
    color: #00ff88;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.game-section {
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #00ff88;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title p {
    color: #888;
    font-size: 1.1rem;
}

.game-embed {
    background: #1a1f3a;
    border: 2px solid #00ff88;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 6px;
}

.about-section {
    margin-bottom: 3rem;
    background: #1a1f3a;
    border-radius: 10px;
    padding: 3rem;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.about-column h2 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-column p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.benefits-section {
    margin-bottom: 3rem;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1229 100%);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-section {
    margin-bottom: 3rem;
}

.info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.info-blocks {
    display: grid;
    gap: 2rem;
}

.info-item {
    background: #1a1f3a;
    border-left: 4px solid #00ff88;
    border-radius: 8px;
    padding: 2rem;
}

.info-item h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.site-footer {
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1229 100%);
    border-top: 2px solid #00ff88;
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

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

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

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.play-content .play-header {
    background: #1a1f3a;
    border: 2px solid #00ff88;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.play-header h1 {
    font-size: 3rem;
    color: #00ff88;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

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

.play-notice {
    margin-bottom: 2.5rem;
}

.notice-banner {
    background: #1a1f3a;
    border-left: 4px solid #00ff88;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.play-area {
    margin-bottom: 2.5rem;
}

.game-box {
    background: #1a1f3a;
    border: 2px solid #00ff88;
    border-radius: 10px;
    padding: 1.5rem;
}

.full-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 6px;
}

.play-guidelines {
    background: #1a1f3a;
    border: 2px solid #00ff88;
    border-radius: 10px;
    padding: 2rem;
}

.guidelines-box h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.guidelines-list {
    list-style: none;
    line-height: 2.2;
}

.legal-content .legal-header {
    background: #1a1f3a;
    border: 2px solid #00ff88;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal-header h1 {
    font-size: 3rem;
    color: #00ff88;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.legal-date {
    color: #888;
    font-size: 1rem;
}

.legal-body {
    background: #1a1f3a;
    border-radius: 10px;
    padding: 3rem;
}

.legal-article {
    margin-bottom: 2.5rem;
}

.legal-article h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.legal-article h3 {
    color: #00ff88;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

.legal-article ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-article li {
    margin-bottom: 0.8rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 2px solid #00ff88;
    border-radius: 8px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #1a1f3a;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        gap: 0;
        border-left: 2px solid #00ff88;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #333;
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .game-iframe {
        height: 450px;
    }

    .full-game-frame {
        height: 550px;
    }

    .about-section {
        padding: 2rem;
    }

    .legal-body {
        padding: 2rem;
    }
}
