*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Montserrat',sans-serif;

    color:#fff;

    background:
    linear-gradient(rgba(3,8,18,.58),rgba(1,3,10,.72)),
    url('../images/bg.jpg');

    /* 4K BACKGROUND */

    background-size:cover;

    background-position:center top;

    background-repeat:no-repeat;

    background-attachment:fixed;

    /* FIX ДЛЯ 4K */

    min-height:100vh;

    overflow-x:hidden;

    image-rendering:auto;
}

@media(min-width:769px){

    .mini-card h3{

        white-space:nowrap;
    }
}

/* ДЛЯ ОЧЕНЬ БОЛЬШИХ МОНИТОРОВ */

@media(min-width:2560px){

    body{

        background-size:100% auto;
    }

    .container{

        max-width:1600px;
    }

    .main-card h1{

        font-size:96px;
    }

    .main-card{

        padding:55px;
    }

    .server-card{

        padding:40px;
    }

    .rank-card{

        padding:34px;
    }

    .bottom-grid{

        grid-template-columns:repeat(3,380px);

        gap:28px;
    }

    .menu a{

        font-size:16px;

        padding:15px 24px;
    }

    .btn{

        padding:22px 46px;

        font-size:17px;
    }
}

/* CONTAINER */

.container{

    width:100%;
    max-width:1320px;

    margin:auto;

    padding:0 20px;
}

/* HEADER */

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(5,10,20,.42);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(140,190,255,.06);
}

/* NAV */

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:13px 0;
}

/* LOGO */

.logo{

    font-size:40px;
    font-weight:700;

    color:#9ed1ff;

    text-shadow:
    0 0 18px rgba(120,180,255,.18);
}

/* MENU */

.menu{

    display:flex;

    gap:14px;

    margin-left: 0px;
}

.menu a{

    text-decoration:none;

    color:#dbe8ff;

    padding:9px 16px;

    border-radius:12px;

    background:rgba(15,30,55,.22);

    border:1px solid rgba(140,190,255,.05);

    transition:.25s;

    white-space:nowrap;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;
}
.menu a:hover{

    background:
    linear-gradient(180deg,#2b66bf,#1a437d);

    transform:translateY(-2px);
}

/* HERO */

.hero{

    min-height:100vh;

    padding-top:180px;

    padding-bottom:40px;

    position:relative;
}

/* MOBILE */

@media(max-width:768px){

    .hero{

        padding-top:300px;
    }
}

/* OVERLAY */

.overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top, rgba(80,140,255,.10), transparent 35%),
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.18));

    pointer-events:none;
}

/* MAIN GRID */

.main-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .50fr;

    gap:28px;
}

/* CARDS */

.main-card,
.server-card,
.rank-card{

    background:
    linear-gradient(
    180deg,
    rgba(5,12,24,.58),
    rgba(3,8,18,.78));

    border:1px solid rgba(140,190,255,.06);

    border-radius:24px;

    backdrop-filter:blur(16px);

    box-shadow:
    0 0 35px rgba(0,0,0,.22);
	
	    padding:24px;

    width:100%;

    min-height:290px;
}

/* MAIN CARD */

.main-card{

    padding:6px;
    /* padding:42px; */
}

.main-card h1{

    text-align:center;

    font-size:76px;

    margin-bottom:18px;

    color:#f4f8ff;
}

.main-card p{

    text-align:center;

    color:#dce6f7;

    line-height:1.9;

    margin-bottom:35px;

    font-size:17px;
}

/* INFO GRID */

.info-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-bottom:30px;
}

/* MINI CARD */

.mini-card{

    background:rgba(255,255,255,.02);

    border:1px solid rgba(140,190,255,.05);

    border-radius:18px;

    padding:22px;
}

.mini-card h3{

    color:#7ec4ff;

    margin-bottom:16px;

    font-size:20px;
}

/* DATE */

.big-date{

    font-size:52px;

    font-weight:800;

    color:#ffd36d;

    margin-bottom:10px;
}

.date-text{

    color:#dce6f7;
}

/* STATS */

.stat-row,
.check{

    display:flex;
    justify-content:space-between;

    padding:10px 0;

    color:#dce6f7;
}

/* BUTTONS */

.buttons{

    display:flex;
    justify-content:center;

    gap:18px;
}

.btn{

    text-decoration:none;

    padding:18px 40px;

    border-radius:16px;

    font-weight:700;

    transition:.25s;
}

.blue{

    background:
    linear-gradient(180deg,#52a6ff,#2a6ad1);

    color:#fff;

    box-shadow:
    0 0 24px rgba(82,166,255,.25);
}

.blue:hover{

    transform:translateY(-2px);
}

.dark{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    color:#fff;
}

.dark:hover{

    background:rgba(255,255,255,.06);
}

/* SERVER CARD */

.server-card{

    padding:25px;

    height:fit-content;
}

.server-card h3{

    color:#84c8ff;

    margin-bottom:22px;
}

/* SERVER ROW */

.server-row{

    display:flex;
    justify-content:space-between;

    padding:16px 0;

    border-bottom:1px solid rgba(255,255,255,.04);

    color:#dce6f7;
}

.green{

    color:#00ff99;
}

.yellow{

    color:#ffd96d;
}

/* LOAD */

.load-title{

    display:flex;
    justify-content:space-between;

    margin-top:26px;
    margin-bottom:12px;

    color:#dce6f7;
}

.progress{

    width:100%;
    height:15px;

    background:rgba(255,255,255,.04);

    border-radius:30px;

    overflow:hidden;
}

.bar{

    width:0%;
    height:100%;

    border-radius:30px;

    background:
    linear-gradient(90deg,#62b0ff,#2f73da);

    transition:width .4s ease;
}

/* TOP BLOCKS */

.bottom-grid{

    position:relative;
    z-index:2;

    margin:28px auto 0 auto;

    width:100%;

    display:flex;

    justify-content:center;

    align-items:stretch;

    gap:22px;

    flex-wrap:wrap;
}

/* RANK CARD */

.rank-card{

    width:100%;

    max-width:600px;

    min-height:320px;

    padding:24px;

    background:
    linear-gradient(
    180deg,
    rgba(5,12,24,.58),
    rgba(3,8,18,.78));

    border:1px solid rgba(140,190,255,.06);

    border-radius:24px;

    backdrop-filter:blur(16px);

    box-shadow:
    0 0 35px rgba(0,0,0,.22);
}

.rank-card h3{

    color:#85caff;

    margin-bottom:20px;
}

/* PLAYER */

.player{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,.04);

    color:#dce6f7;
}

.player span:first-child{

    max-width:75%;

    overflow:hidden;

    text-overflow:ellipsis;

    white-space:nowrap;
}

/* FOOTER */

.footer{

    width:100%;

    text-align:center;

    padding:26px 20px;

    color:#73839f;

    font-size:14px;

    margin-top:35px;

    border-top:1px solid rgba(255,255,255,.04);

    background:
    rgba(4,10,20,.42);

    backdrop-filter:blur(10px);
}

/* MOBILE */

@media(max-width:1150px){

    .main-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    header{

        padding-top:10px;
        padding-bottom:10px;
    }

    .hero{

        padding-top:230px;
        padding-bottom:30px;
    }

    .logo{

        font-size:30px;

        margin-bottom:10px;

        text-align:center;
    }

    .nav{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:12px;
    }

    .menu{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:10px;
    }

    .menu a{

        padding:10px 16px;

        font-size:14px;
    }

    .main-card{

        padding:24px;
    }

    .main-card h1{

        font-size:42px;

        line-height:1.2;
    }

    .main-card p{

        font-size:15px;

        line-height:1.8;
    }

    .info-grid{

        grid-template-columns:1fr;

        gap:16px;
    }

 .bottom-grid{

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin-left:auto;
    margin-right:auto;
}

@media(max-width:768px){

    .rank-card{

        width:100%;

        max-width:none;

        padding:20px;

        margin:0 0px;

        box-sizing:border-box;
    }
}

.news-card-main{

    width:calc(100% - 20px);

    margin:0 auto;
}

    .player{

        gap:10px;

        font-size:14px;
    }

    .hero-start{

        padding:20px;
    }

    .hero-start-date{

        font-size:24px;

        line-height:1.5;
    }

    .hero-start-info{

        gap:10px;
    }

    .hero-start-info span{

        width:100%;

        text-align:center;
    }
}

/* NEWS SECTION */

.news-section{

    position:relative;

    z-index:2;

    margin-top:40px;

    display:flex;

    justify-content:center;
}

.news-card-main{

    width:100%;

    max-width:1320px;

    padding:40px;

    border-radius:26px;

    background:
    linear-gradient(
    180deg,
    rgba(5,12,24,.62),
    rgba(3,8,18,.82));

    border:1px solid rgba(140,190,255,.06);

    backdrop-filter:blur(16px);

    box-shadow:
    0 0 35px rgba(0,0,0,.22);

    text-align:center;
}

/* NEWS TITLE */

.news-card-main h2{

    font-size:44px;

    margin-bottom:12px;

    color:#f5f8ff;
}

/* DATE */

.news-date{

    color:#ffd96d;

    font-size:24px;

    font-weight:700;

    margin-bottom:26px;
}

/* TEXT */

.news-text{

    color:#dce6f7;

    line-height:1.9;

    font-size:17px;

    margin-bottom:34px;
}

/* NEWS GRID */

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

/* BOX */

.news-box{

    background:rgba(255,255,255,.02);

    border:1px solid rgba(140,190,255,.05);

    border-radius:20px;

    padding:24px;

    text-align:left;
}

/* BOX TITLE */

.news-box h3{

    color:#7fc5ff;

    margin-bottom:18px;

    font-size:22px;
}

/* LIST */

.news-box ul{

    list-style:none;
}

.news-box li{

    color:#dce6f7;

    padding:11px 0;

    border-bottom:1px solid rgba(255,255,255,.04);
}

/* NEWS MOBILE */

@media(max-width:950px){

    .news-grid{

        grid-template-columns:1fr;
    }

    .news-card-main{

        padding:28px;
    }

    .news-card-main h2{

        font-size:32px;
    }
}

/* TELEGRAM FLOAT */

.tg-float{

    position:fixed;

    right:18px;

    bottom:18px;

    z-index:99999;

    width:250px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px;

    border-radius:18px;

    text-decoration:none;

    background:
    linear-gradient(
    180deg,
    rgba(15,25,45,.92),
    rgba(8,15,28,.96));

    border:1px solid rgba(120,190,255,.10);

    backdrop-filter:blur(14px);

    box-shadow:
    0 0 25px rgba(0,0,0,.35);

    animation:floatMove 3s ease-in-out infinite;

    transition:.25s;
}

.tg-float:hover{

    transform:scale(1.03);
}

/* 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,#4ea8ff,#2b70d8);

    box-shadow:
    0 0 18px rgba(78,168,255,.25);
}

/* TEXT */

.tg-title{

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    margin-bottom:5px;
}

.tg-desc{

    color:#bddbff;

    font-size:13px;

    line-height:1.5;
}

/* FLOAT */

@keyframes floatMove{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* TELEGRAM MOBILE */

@media(max-width:900px){

    .tg-float{

        width:210px;

        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;
    }
}

/* HERO START */

.hero-start{

    margin:25px auto 35px auto;

    padding:24px;

    max-width:820px;

    border-radius:22px;

    text-align:center;

    background:
    linear-gradient(
    180deg,
    rgba(18,35,65,.55),
    rgba(7,14,28,.82));

    border:1px solid rgba(120,190,255,.10);

    box-shadow:
    0 0 30px rgba(40,120,255,.12);
}

.hero-start-top{

    color:#7fc5ff;

    font-size:18px;

    font-weight:700;

    margin-bottom:12px;

    letter-spacing:1px;
}

.hero-start-date{

    font-size:34px;

    font-weight:800;

    color:#ffd96d;

    margin-bottom:20px;

    text-shadow:
    0 0 18px rgba(255,217,109,.18);
}

.hero-start-info{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;
}

.hero-start-info span{

    padding:10px 18px;

    border-radius:14px;

    background:
    rgba(255,255,255,.03);

    border:1px solid rgba(140,190,255,.06);

    color:#dce6f7;

    font-size:14px;

    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .hero-start{

        padding:20px;
    }

    .hero-start-date{

        font-size:24px;

        line-height:1.5;
    }
}

.start-extra{

    margin-top:16px;
}

.start-extra div{

    padding:7px 0;

    font-size:15px;

    color:#dce6f7;

    line-height:1.45;
}

@media(max-width:768px){

    header{

        padding-top:10px;

        padding-bottom:10px;
    }

    .hero{

        padding-top:120px;
    }

    .logo{

        font-size:28px;

        margin-bottom:10px;
    }

    .nav{

        gap:10px;
    }
}

/* LOGIN BUTTON */

.login-btn{

    text-decoration:none;

    padding:12px 22px;

    border-radius:14px;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(180deg,#52a6ff,#2a6ad1);

    box-shadow:
    0 0 20px rgba(82,166,255,.22);

    transition:.25s;

    white-space:nowrap;

    position:relative;

    left:5px;
}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 0 28px rgba(82,166,255,.35);
}

.mobile-login{

    display:none !important;
}

@media(max-width:768px){

    .mobile-login{

        display:block !important;
    }
}

/* PRELOADER */

#preloader{

    position:fixed;

    inset:0;

    width:100%;

    height:100vh;

    background:#05070d;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999999;

    transition:opacity .5s ease;
}

.preloader-logo{

    font-size:42px;

    font-weight:800;

    color:#9ed1ff;

    letter-spacing:3px;

    text-shadow:
    0 0 12px rgba(120,180,255,.35),
    0 0 24px rgba(120,180,255,.18),
    0 0 42px rgba(80,140,255,.12);
}

/* MOBILE */

@media(max-width:768px){

    .preloader-logo{

        font-size:28px;
    }
}

/* LANGUAGE SWITCH */

.lang-switch{

    display:flex;

    align-items:center;

    gap:8px;

    margin-left:18px;
}

.lang-btn{

    padding:7px 12px;

    border-radius:10px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    color:#dce6f7;

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(120,190,255,.08);

    transition:.2s;
}

.lang-btn:hover{

    background:
    rgba(120,190,255,.10);

    border-color:
    rgba(120,190,255,.20);
}

.lang-btn.active{

    color:#7fc5ff;

    border-color:
    rgba(120,190,255,.35);

    background:
    rgba(120,190,255,.10);
}

.lang-switch{

    display:flex;

    align-items:center;

    gap:8px;

    margin-left:18px;
}

.lang-btn{

    padding:7px 12px;

    border-radius:10px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    color:#dce6f7;

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(120,190,255,.08);
}

.lang-btn.active{

    color:#7fc5ff;

    border-color:
    rgba(120,190,255,.35);

    background:
    rgba(120,190,255,.10);
}