@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#7dff00;
    --bg:#050505;
    --card:rgba(0,0,0,0.68);
    --border:rgba(255,255,255,0.08);
    --text:#ffffff;
    --muted:rgba(255,255,255,0.72);
}

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

html,
body{
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

.background{
    position:fixed;
    inset:0;
    z-index:-2;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0.92)),
        url('https://images.unsplash.com/photo-1519608487953-e999c86e7455?q=80&w=1920&auto=format&fit=crop');
    background-size:cover;
    background-position:center center;
}

.noise{
    position:fixed;
    inset:0;
    z-index:-1;
    background:url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity:0.04;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
    position:relative;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(16px);
    background:rgba(0,0,0,0.58);
    border-bottom:1px solid var(--border);
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:86px;
}

.logo{
    font-family:'Oswald',sans-serif;
    font-size:38px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    white-space:nowrap;
}

.logo span{
    color:var(--green);
}

.menu{
    display:flex;
    align-items:center;
    gap:18px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.menu a:hover{
    color:#7aff00;
}

.menu a.active,
.dropdown-btn.active{
    color:#7aff00;

    position:relative;
}

.menu a.active::after,
.dropdown-btn.active::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-10px;

    width:100%;
    height:3px;

    border-radius:999px;

    background:#7aff00;

    box-shadow:0 0 12px rgba(122,255,0,0.45);
}

.dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:10px;

    background:none;
    border:none;

    color:#fff;

    font-size:15px;
    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.dropdown-btn:hover{
    color:#7aff00;
}

.dropdown-content{
    position:absolute;

    top:130%;
    left:0;

    min-width:240px;

    background:rgba(10,10,10,0.98);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:18px;

    padding:12px;

    display:flex;
    flex-direction:column;
    gap:6px;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.2s;

    z-index:999;
}

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-content a{
    padding:12px 14px;
    border-radius:12px;
    transition:.2s;
}

.dropdown-content a:hover{
    background:rgba(122,255,0,0.08);
    color:#7aff00;
}

.mobile-toggle{
    display:none;
    border:none;
    background:none;
    color:white;
    font-size:36px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    padding:10px 0 25px;
    border-top:1px solid var(--border);
    max-height:calc(100vh - 78px);
    overflow-y:auto;
    overscroll-behavior:contain;
    scrollbar-width:thin;
}

.mobile-menu::-webkit-scrollbar{
    width:6px;
}

.mobile-menu::-webkit-scrollbar-thumb{
    background:#7aff00;
    border-radius:999px;
}

.mobile-menu.active{
    display:block;
}

.mobile-menu a{
    display:block;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    color:white;
    text-transform:uppercase;
    letter-spacing:2px;
}

.mobile-menu a.active{
    color:#7aff00;

    border-bottom:1px solid rgba(122,255,0,0.25);

    background:rgba(122,255,0,0.05);

    padding-left:12px;

    box-shadow:inset 3px 0 0 #7aff00;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:140px;
    padding-bottom:80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:60px;
    align-items:center;
}

.hero-content{
    width:100%;
    max-width:820px;
}

.subtitle{
    color:var(--green);
    text-transform:uppercase;
    letter-spacing:6px;
    font-size:14px;
    margin-bottom:26px;
}

.title{
    font-family:'Oswald',sans-serif;
    font-size:clamp(72px, 8vw, 110px);
    line-height:0.9;
    text-transform:uppercase;
    margin-bottom:30px;
    display: flex;
    flex-direction: column;
    max-width:900px;
}

.title span{
    color:var(--green);
}

.text{
    color:var(--muted);
    line-height:1.9;
    font-size:18px;
}

.hero .text{
    max-width:760px;
    margin-bottom:42px;
}

.buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px 30px;
    border-radius:16px;
    font-weight:700;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

.btn-main{
    background:var(--green);
    color:black;
}

.btn-dark{
    background:rgba(255,255,255,0.06);
    border:1px solid var(--border);
}

.card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:30px;
    padding:35px;
    backdrop-filter:blur(16px);
    box-shadow:0 0 45px rgba(0,0,0,0.35);
    overflow:hidden;
}

.status-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.online{
    color:#7dff7d;
    font-weight:700;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.stat{
    background:rgba(255,255,255,0.04);
    border-radius:20px;
    padding:22px;
}

.stat small{
    color:rgba(255,255,255,0.55);
}

.stat h3{
    color:var(--green);
    font-size:42px;
    margin-top:10px;
}

.section{
    padding:80px 0;
}

.section-title{
    font-family:'Oswald',sans-serif;
    font-size:72px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.section-title span{
    color:var(--green);
}

.center{
    text-align:center;
}

.cards-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feed-item{
    margin-top:15px;
    padding:16px;
    border-left:3px solid var(--green);
    background:rgba(255,255,255,0.04);
    border-radius:12px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:24px;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.03);
}

.map-frame{
    width:100%;
    height:850px;
    border:none;
    border-radius:24px;
}

.info-alert{
    margin:40px auto 0;

    max-width:1000px;

    padding:25px 30px;

    border-radius:24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,140,0,0.15),
            rgba(255,80,0,0.08)
        );

    border:1px solid rgba(255,140,0,0.35);

    text-align:left;

    box-shadow:0 0 40px rgba(255,140,0,0.08);
}

.info-alert-title{
    color:#ffb347;

    font-size:22px;
    font-weight:900;

    margin-bottom:12px;
}

.info-alert-text{
    color:#ddd;

    line-height:1.9;

    font-size:15px;
}

footer{
    border-top:1px solid var(--border);
    padding:70px 0;
    margin-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    color:var(--muted);
}

.dashboard{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:30px;
}

.avatar{
    width:160px;
    border-radius:24px;
    margin-bottom:25px;
}

.info-box{
    background:rgba(255,255,255,0.04);
    padding:16px;
    border-radius:16px;
    margin-top:15px;
}

.hero-online-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:50px 20px;
}

.hero-online-number{
    font-size:90px;
    font-weight:900;
    line-height:1;
    color:#7CFF00;
    text-shadow:
        0 0 20px rgba(124,255,0,0.5),
        0 0 50px rgba(124,255,0,0.25);
}

.hero-online-text{
    margin-top:15px;
    font-size:14px;
    letter-spacing:4px;
    color:#999;
}

.stat-big{
    text-align:center;
    padding:50px 30px;
}

.stat-icon{
    font-size:42px;
    margin-bottom:20px;
}

.stat-big-number{
    font-size:64px;
    font-weight:900;
    color:var(--green);
    line-height:1;
    margin-bottom:15px;
    text-shadow:0 0 25px rgba(124,255,0,0.35);
}

.stat-big-label{
    color:#aaa;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.cards-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.top-player{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-player-avatar{
    width:80px;
    height:80px;
    border-radius:16px;
    image-rendering:pixelated;
}

.top-player-name{
    font-size:24px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.top-player-score{
    color:var(--green);
    font-weight:700;
}

.dashboard-nav{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin:40px 0 30px;
    padding:18px;
    background:rgba(0,0,0,0.72);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:22px;
    backdrop-filter:blur(10px);
}

.dashboard-nav a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:140px;
    padding:16px 24px;
    border-radius:16px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.05);

    color:rgba(255,255,255,0.72);

    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    transition:0.25s ease;
}

.dashboard-nav a:hover{
    transform:translateY(-2px);
    border-color:rgba(124,255,0,0.35);
    color:#7dff00;
    background:rgba(124,255,0,0.08);
}

.dashboard-nav a.active{
    background:#7dff00;
    color:black;
    border-color:#7dff00;
    box-shadow:0 0 25px rgba(124,255,0,0.35);
}

.dashboard-content{
    padding-bottom:40px;
}

.dashboard-grid{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.dashboard-card{
    padding:34px;
    border-radius:28px;
}

.dashboard-grid .card{
    backdrop-filter:blur(18px);
}

.mobile-dropdown{
    /*margin-top:10px;*/
}

.mobile-dropdown-btn{
    width:100%;

    background:none;
    border:none;

    color:#fff;

    text-align:left;

    padding:15px 0;

    font-size:16px;
    font-weight:700;

    cursor:pointer;
}

.mobile-dropdown-content{
    display:none;
    padding-left:20px;
}

.mobile-dropdown.active .mobile-dropdown-content{
    display:block;
}

.mobile-dropdown-content a{
    display:block;
    padding:12px 0;
}

.support-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:18px;
    height:18px;

    margin-left:6px;

    background:#7CFF00;
    color:#000;

    font-size:11px;
    font-weight:700;

    border-radius:999px;

    padding:0 6px;
}


@media(max-width:1100px){

    .hero-grid,
    .cards-3,
    .dashboard,
    .gallery,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .menu{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .title{
        font-size:72px;
    }

    .section-title{
        font-size:52px;
    }

    .cards-2{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .container{
        width:100%;
        padding:0 22px;
    }

    .navbar{
        padding:0;
    }

    .nav-inner{
        height:78px;
    }

    .logo{
        font-size:22px;
        letter-spacing:1px;
        max-width:75%;
    }

    .mobile-toggle{
        font-size:38px;
    }

    .hero{
        min-height:auto;
        padding-top:120px;
        padding-bottom:70px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .subtitle{
        font-size:12px;
        line-height:1.5;
        letter-spacing:5px;
        margin-bottom:22px;
    }

    .title{
        font-size:clamp(54px, 14vw, 60px);
        line-height:0.88;
        margin-bottom:28px;
        white-space:normal;
        word-break:keep-all;
        overflow-wrap:anywhere;
    }

    .title span{
        display:block;
    }

    .text{
        font-size:17px;
        line-height:1.85;
    }

    .hero .text{
        margin-bottom:35px;
    }

    .buttons{
        flex-direction:column;
        gap:14px;
    }

    .btn{
        width:100%;
        padding:18px 20px;
        font-size:17px;
    }

    .card{
        padding:28px;
        border-radius:28px;
    }

    .grid-2{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .stat{
        padding:18px;
    }

    .stat h3{
        font-size:36px;
    }

    .gallery{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery img{
        height:230px;
    }

    .section{
        padding:90px 0;
    }

    .section-title{
        font-size:46px;
        line-height:0.95;
    }

    .map-frame{
        height:500px;
    }

    .dashboard{
        grid-template-columns:1fr;
    }

    .avatar{
        width:120px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .dashboard-nav{
        padding:14px;
        gap:10px;
    }

    .dashboard-nav a{
        flex:1 1 calc(50% - 10px);
        min-width:unset;
        padding:15px 16px;
        font-size:13px;
    }

}

@media(max-width:520px){

    .logo{
        font-size:18px;
    }

    .title{
        font-size:46px;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:40px;
    }

    .text{
        font-size:16px;
    }

}

.airdrops-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

@media(max-width:768px){

    .airdrops-grid{
        grid-template-columns:1fr;
    }

}
