*{

    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#05070d;

    color:#fff;

    overflow-x:hidden;
}

/* BACKGROUND */

.bg{

    position:fixed;

    inset:0;

    background:url('../images/background.jpg') center/cover no-repeat;

    z-index:-2;

    filter:brightness(.80);
}

.overlay{

    position:fixed;

    inset:0;

    background:

    radial-gradient(
    circle at top,
    rgba(255,180,80,.08),
    transparent 45%),

    linear-gradient(
    180deg,
    rgba(0,0,0,.38),
    rgba(0,0,0,.52));

    z-index:-1;
}

.container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 20px;
}

/* NAV */

header{

    padding:18px 0;
}

.nav{

    position:fixed;

    top:16px;

    left:20px;

    right:20px;

    z-index:999;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:16px 22px;

    background:
    rgba(8,12,20,.42);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.05);

    border-radius:22px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.28);
}

.logo{

    flex-shrink:0;

    font-size:26px;

    font-weight:800;

    color:#ffd777;

    letter-spacing:1px;

    white-space:nowrap;
}

.menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;
}

.menu a{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:10px 14px;

    min-height:42px;

    border-radius:12px;

    font-size:13px;

    font-weight:600;

    color:#e7e7e7;

    text-decoration:none;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.04);

    transition:.25s;

    white-space:nowrap;
}

.menu a:hover{

    background:
    linear-gradient(
    180deg,
    rgba(255,190,90,.30),
    rgba(255,140,40,.22));

    transform:
    translateY(-4px);

    box-shadow:
    0 10px 25px rgba(255,170,60,.18);
}

.login-btn{

    text-decoration:none;

    color:#000;

    font-weight:700;

    padding:12px 22px;

    border-radius:14px;

    background:
    linear-gradient(180deg,#ffd777,#ffb347);
	
	transition:
transform .25s,
box-shadow .25s;
}

.login-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 12px 30px rgba(255,190,70,.35);
}

/* HERO */

.hero{

    padding-top:150px;
}

.hero-grid{

    display:grid;

    grid-template-columns:1.4fr 420px;

    gap:28px;

    align-items:start;
}

.main-news{

    background:
    rgba(8,10,18,.82);

    border:1px solid rgba(255,255,255,.06);

    border-radius:28px;

    padding:40px;

    backdrop-filter:blur(14px);

    box-shadow:
    0 0 40px rgba(0,0,0,.45);
}

.news-header{

    color:#ffb347;

    font-weight:700;

    margin-bottom:14px;
}

.main-news h1{

    font-size:68px;

    font-weight:800;

    margin-bottom:20px;
}

.start-date{

    text-align:center;

    font-size:42px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin:0 auto 26px auto;

    text-shadow:
    0 0 30px rgba(255,255,255,.08);
}

.server-info{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin-top:10px;

    width:100%;
}

.server-info span{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:14px;

    font-size:14px;

    font-weight:700;

    color:#f1f1f1;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:
    blur(10px);
}

.news-box{

    line-height:1.8;

    color:#ddd;

    font-size:17px;
	
}

.action-buttons{

    display:flex;

    gap:16px;

    margin-top:32px;
	
	justify-content:center;
}

.btn{

    text-decoration:none;

    padding:16px 28px;

    border-radius:16px;

    font-weight:700;

    transition:.25s;
}

.btn.green{

    color:#000;

    background:
    linear-gradient(180deg,#ffd777,#ffb347);
}

.btn.dark{

    color:#fff;

    background:
    rgba(255,255,255,.05);
}

.side-column{

    display:flex;

    flex-direction:column;

    gap:22px;
}

.status-card,
.top-card{

    background:
    rgba(8,10,18,.84);

    border-radius:24px;

    padding:24px;

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(12px);
}

.status-card h3,
.top-card h3{

    margin-bottom:20px;

    color:#ffcf73;
}

.server-row,
.player-row{

    display:flex;

    justify-content:space-between;

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.06);
}

.online{

    color:#55ff8f;
}

/* MOBILE */

@media(max-width:980px){

    .hero-grid{

        grid-template-columns:1fr;
    }

    .main-news h1{

        font-size:42px;
    }

    .menu{

        display:none;
    }
}

@media(max-width:768px){

    .main-news{

        padding:24px;
    }

    .main-news h1{

        font-size:34px;
    }

    .start-date{

        font-size:22px;
    }

    .action-buttons{

        flex-direction:column;
    }

    .btn{

        width:100%;

        text-align:center;
    }

    .logo{

        font-size:28px;
    }
}

/* TOP TABS */

.top-tabs{

    display:flex;

    justify-content:center;

    gap:8px;

    margin-top:18px;
}

.tab-btn{

    border:none;

    cursor:pointer;

    padding:9px 18px;

    border-radius:12px;

    font-size:13px;

    font-weight:700;

    color:#ddd;

    background:
    rgba(255,255,255,.04);

    transition:.25s;
}

.tab-btn:hover{

    background:
    rgba(255,180,70,.10);
}

.tab-btn.active{

    color:#000;

    background:
    linear-gradient(
    180deg,
    #ffd777,
    #ffb347);
}

.tab-content{

    display:none;
}

.tab-content.active{

    display:block;
}

/* SERVER LOAD */

/* SERVER LOAD */

.load-box{

    margin-top:14px;
}

.load-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding-bottom:10px;

    margin-bottom:10px;

    border-bottom:
    1px solid rgba(255,255,255,.06);
}

.load-header span:first-child{

    color:#ffffff;

    font-size:15px;

    font-weight:600;
}

.load-header span:last-child{

    color:#ffffff;

    font-size:15px;

    font-weight:700;
}

.load-progress{

    width:100%;

    height:16px;

    overflow:hidden;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.05);
}

.load-bar{

    width:0%;

    height:100%;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #ffd777,
    #ff9b47);

    transition:
    width .5s ease;

    box-shadow:
    0 0 18px rgba(255,180,70,.22);
}

/* NEWS */

.news-list{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:28px;
}

.news-item{

    padding:14px 16px;

    border-radius:14px;

    color:#e7e7e7;

    font-size:15px;

    line-height:1.7;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.25s;
}

.news-item:hover{

    transform:
    translateX(4px);

    border-color:
    rgba(255,190,70,.18);

    background:
    rgba(255,190,70,.05);
}

/* TELEGRAM BUTTON */

.telegram-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:8px;

    padding:12px 22px;

    border-radius:14px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    color:#000;

    background:
    linear-gradient(
    180deg,
    #ffd777,
    #ffb347);

    transition:.25s;
}

.telegram-btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 10px 25px rgba(255,180,70,.20);
}

.news-text{

    font-size:16px;

    line-height:2;

    color:#d8d8d8;
}

.white-bold{

    font-weight:700;

    color:#ffffff;
}

.gold{

    color:#ffd777;

    font-weight:700;
}

.orange-title{

    color:#ffb347;

    font-size:18px;

    font-weight:700;
}

/* NEWS MODERN */

.news-top-text{

    text-align:center;

    font-size:20px;

    color:#d9d9d9;

    margin-bottom:10px;
}

.news-project{

    text-align:center;

    font-size:54px;

    font-weight:800;

    color:#ffd777;

    margin-bottom:18px;

    text-shadow:
    0 0 30px rgba(255,190,70,.18);
}

.news-description{

    text-align:center;

    line-height:1.9;

    color:#cfcfcf;

    margin-bottom:34px;
}

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:16px;

    margin-bottom:30px;
}

.feature-card{

    padding:22px;

    border-radius:18px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.25s;
}

.feature-card:hover{

    transform:
    translateY(-4px);

    border-color:
    rgba(255,190,70,.16);
}

.feature-title{

    font-size:17px;

    font-weight:700;

    color:#ffd777;

    margin-bottom:12px;
}

.feature-desc{

    line-height:1.7;

    color:#d5d5d5;
}

.big-news-box,
.reward-box,
.telegram-event{

    margin-top:28px;

    padding:28px;

    border-radius:22px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);
}

.big-news-title{

    font-size:22px;

    font-weight:800;

    color:#ffb347;

    margin-bottom:24px;

    text-align:center;
}

.stages-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:16px;
}

.stage-box{

    padding:18px;

    border-radius:18px;

    background:
    rgba(255,255,255,.03);
}

.stage-day{

    font-size:18px;

    font-weight:800;

    color:#ffd777;

    margin-bottom:10px;
}

.stage-info{

    line-height:1.8;

    color:#ddd;
}

.crystal-remove{

    text-align:center;

    margin-top:22px;

    color:#ff7e7e;

    font-weight:700;
}

.reward-item{

    padding:16px 0;

    border-bottom:
    1px solid rgba(255,255,255,.05);

    color:#ddd;

    text-align:center;

    line-height:1.8;
}

.telegram-event{

    text-align:center;
}

.telegram-title{

    font-size:24px;

    font-weight:800;

    color:#ffd777;

    margin-bottom:16px;
}

.telegram-text{

    line-height:1.9;

    color:#d7d7d7;

    margin-bottom:24px;
}

.ranking-label{

    position:absolute;

    top:30px;

    right:30px;

    font-size:14px;

    font-weight:700;

    color:#ffd777;

    letter-spacing:1px;
}

.news-description{

    text-align:center;

    font-size:22px;

    line-height:1.9;

    color:#d9d9d9;

    margin-top:12px;
}

.gold-text{

    color:#ffd777;

    font-weight:800;

    font-size:34px;

    display:inline-block;

    margin-top:10px;

    text-shadow:
    0 0 25px rgba(255,190,70,.16);
}

/* HERO TOP */

.hero-top{

    position:relative;

    padding:42px 36px;

    margin-bottom:32px;

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    rgba(255,190,70,.08),
    rgba(255,255,255,.02));

    border:
    1px solid rgba(255,190,70,.08);

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}

.hero-top::before{

    content:'';

    position:absolute;

    top:-120px;

    right:-120px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,190,70,.14),
    transparent 70%);
}

.news-header{

    display:flex;

    align-items:center;

    justify-content:center;

    width:max-content;

    margin:0 auto 24px auto;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    color:#ffd777;

    background:
    rgba(255,190,70,.08);

    border:
    1px solid rgba(255,190,70,.12);
}

.start-date{

    font-size:42px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:26px;

    text-shadow:
    0 0 30px rgba(255,255,255,.08);
}

.server-info{

    display:flex;

    flex-wrap:wrap;

    gap:14px;
}

.server-info span{

    padding:12px 18px;

    border-radius:14px;

    font-size:14px;

    font-weight:700;

    color:#f1f1f1;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    backdrop-filter:
    blur(10px);
}

/* FLOAT TELEGRAM */

/* TELEGRAM FLOAT */

.tg-float{

    position:fixed;

    right:18px;

    bottom:18px;

    z-index:99999;

    width:260px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px;

    border-radius:18px;

    text-decoration:none;

    background:
    linear-gradient(
    180deg,
    rgba(18,14,10,.92),
    rgba(10,8,6,.96));

    border:1px solid rgba(255,190,70,.10);

    backdrop-filter:blur(14px);

    box-shadow:
    0 0 25px rgba(0,0,0,.35);

    animation:tgFloat 3s ease-in-out infinite;

    transition:.25s;
}

.tg-float:hover{

    transform:scale(1.03);

    border-color:
    rgba(255,190,70,.22);
}

/* ICON */

.tg-icon{

    width:54px;
    height:54px;

    min-width:54px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    background:
    linear-gradient(
    180deg,
    #ffcf67,
    #ffb347);

    box-shadow:
    0 0 18px rgba(255,190,70,.22);
}

/* TEXT */

.tg-title{

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    margin-bottom:5px;
}

.tg-desc{

    color:#d8c4a0;

    font-size:13px;

    line-height:1.5;
}

/* FLOAT ANIMATION */

@keyframes tgFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:900px){

    .tg-float{

        width:220px;

        right:10px;

        bottom:10px;

        padding:12px;
    }

    .tg-icon{

        width:46px;
        height:46px;

        min-width:46px;

        font-size:22px;
    }

    .tg-title{

        font-size:14px;
    }

    .tg-desc{

        font-size:12px;
    }
}

/* FOOTER */

.footer{

    margin-top:50px;

    padding:26px 20px;

    text-align:center;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    color:#8f8f8f;

    border-top:
    1px solid rgba(255,255,255,.05);

    background:
    rgba(0,0,0,.18);
}

/* LANGUAGE */

.lang-switch{

    display:flex;

    align-items:center;

    gap:6px;

    margin-left:18px;
}

.lang-switch a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    color:#cfcfcf;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.25s;
}

.lang-switch a:hover{

    color:#ffffff;

    border-color:
    rgba(255,215,119,.16);
}

.lang-switch a.active{

    color:#111111;

    background:
    linear-gradient(
    180deg,
    #ffd777,
    #ffbe46);

    border-color:
    transparent;
}

/* PRELOADER */

.preloader{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    180deg,
    #05070d,
    #08111d);

    z-index:999999;

    transition:.6s;
}

.preloader.hide{

    opacity:0;

    visibility:hidden;
}

.preloader-logo{

    font-size:48px;

    font-weight:800;

    letter-spacing:2px;

    color:#ffd777;

    text-shadow:
    0 0 25px rgba(255,215,119,.25);

    animation:preloaderPulse 1.4s ease-in-out infinite;
}

@keyframes preloaderPulse{

    0%{

        opacity:.5;

        transform:scale(.96);
    }

    50%{

        opacity:1;

        transform:scale(1);
    }

    100%{

        opacity:.5;

        transform:scale(.96);
    }
}

/* MOBILE */

@media(max-width:768px){

    .preloader-logo{

        font-size:28px;

        text-align:center;

        padding:0 20px;
    }
}