@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --electric-blue: #00d4ff;
    --deep-navy: #0a1628;
    --midnight: #141e30;
    --steel: #243b55;
    --white: #ffffff;
    --lime: #39ff14;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-navy);
    color: var(--white);
    line-height: 1.6;
}

.site-header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--electric-blue);
    text-decoration: none;
    letter-spacing: 4px;
}

.site-nav {
    display: flex;
    gap: 45px;
    list-style: none;
}

.site-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    position: relative;
}

.site-nav a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--lime);
    transition: width 0.2s;
}

.site-nav a:hover {
    color: var(--lime);
}

.site-nav a:hover::before {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 30px;
    height: 3px;
    background: var(--electric-blue);
    transition: 0.3s;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight) 50%, var(--steel) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%2300d4ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    letter-spacing: 6px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--lime);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.action-btn {
    display: inline-block;
    background: var(--lime);
    color: var(--deep-navy);
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

.action-btn:hover {
    background: var(--electric-blue);
    transform: translateX(5px);
}

.badges {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-showcase {
    padding: 100px 40px;
    background: var(--midnight);
}

.showcase-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 50px;
    color: var(--electric-blue);
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.game-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--electric-blue), var(--lime), var(--electric-blue));
    z-index: -1;
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
    background: #000;
}

.features-block {
    padding: 100px 40px;
    background: var(--deep-navy);
}

.features-row {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-box {
    background: linear-gradient(145deg, var(--midnight), var(--steel));
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--lime);
}

.feature-box .num {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: rgba(0, 212, 255, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
}

.feature-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--lime);
}

.feature-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.text-page {
    padding: 140px 40px 100px;
    min-height: 100vh;
    background: var(--midnight);
}

.text-container {
    max-width: 900px;
    margin: 0 auto;
}

.text-container h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--electric-blue);
}

.text-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin: 45px 0 20px;
    color: var(--lime);
}

.text-container p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.text-container ul {
    margin: 20px 0 25px 25px;
}

.text-container li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer {
    background: var(--deep-navy);
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    margin-bottom: 35px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--lime);
}

.safe-gaming {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.safe-gaming p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.safe-gaming a {
    color: var(--electric-blue);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.85rem;
}

.footer-copy {
    margin-top: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.verify-layer {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verify-card {
    background: linear-gradient(145deg, var(--midnight), var(--steel));
    padding: 55px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    position: relative;
}

.verify-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue), var(--lime));
}

.verify-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--lime);
}

.verify-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.verify-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.verify-btn {
    padding: 15px 35px;
    border: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.verify-btn.accept {
    background: var(--lime);
    color: var(--deep-navy);
}

.verify-btn.decline {
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
}

.verify-btn:hover {
    transform: scale(1.05);
}

.blocked-msg h2 {
    color: #ff4444;
}

@media (max-width: 992px) {
    .features-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--deep-navy);
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 25px;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .site-nav.visible {
        transform: translateY(0);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .badges {
        flex-direction: column;
    }
    
    .game-wrapper iframe {
        height: 380px;
    }
    
    .verify-btns {
        flex-direction: column;
    }
}
