/* =========================================================
   /about — без сайдбара, контент на всю ширину
   ========================================================= */

/* Страница с блоком .server-description */
.main:has(.server-description) {
    display: block !important;
}

.main:has(.server-description) .main__sidebar,
.main:has(.server-description) .sidebar {
    display: none !important;
}

.main:has(.server-description) .main__content,
.main:has(.server-description) .content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    float: none !important;
}

.main:has(.server-description) .static,
.main:has(.server-description) .static__content {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Описание сервера — без :has()
   ========================================================= */

.static {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 24px auto 48px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
}

.static__content {
    background: rgba(8, 14, 24, 0.58) !important;
    border: 1px solid rgba(120, 180, 255, 0.16) !important;
    border-radius: 16px !important;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(16px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(130%) !important;
    padding: 36px 40px 44px !important;
    font-size: 15.5px !important;
    line-height: 1.65 !important;
    color: rgba(220, 232, 248, 0.92) !important;
    box-sizing: border-box !important;
}

.static__content h2 {
    text-align: center !important;
    color: #f5a117 !important;
    font-size: 22px !important;
    margin: 36px 0 18px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(120, 180, 255, 0.14) !important;
}

.static__content h2:first-child {
    margin-top: 0 !important;
    font-size: 26px !important;
    color: #ffb04a !important;
}

.static__content img {
    border-radius: 12px !important;
    border: 1px solid rgba(120, 180, 255, 0.14) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.40) !important;
}

.static__content ul {
    margin: 0 0 8px !important;
    padding-left: 22px !important;
}

.static__content li {
    margin: 0 0 9px !important;
    color: rgba(210, 225, 245, 0.92) !important;
}

.static__content li:empty {
    display: none !important;
}

.static__content b {
    color: #f5f9ff !important;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
    width: 100%;
}

.server-description {
    line-height: 1.7;
}

.server-description p {
    margin: 0 0 16px;
}

.server-description h1,
.server-description h2 {
    letter-spacing: .3px;
}

.about-section {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(120, 180, 255, 0.10);
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-section ul {
    margin: 15px 0;
    padding-left: 22px;
}

.about-section li {
    margin-bottom: 8px;
}

.about-feature,
.about-currency {
    background: rgba(8, 14, 24, 0.42);
    border: 1px solid rgba(120, 180, 255, 0.13);
    border-radius: 11px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,.05);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.about-feature {
    padding: 20px;
}

.about-feature strong {
    display: block;
    color: #f5a117;
    font-size: 17px;
    margin-bottom: 7px;
}

.about-feature span {
    display: block;
    font-size: 14px;
    opacity: .78;
    line-height: 1.55;
}

.about-feature:hover,
.about-currency:hover {
    transform: translateY(-3px);

    background: rgba(12, 24, 40, 0.62);

    border-color: rgba(120, 190, 255, 0.28);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .35),
        0 0 20px rgba(60,150,255,.06),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.about-currency {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.about-currency img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.about-currency strong {
    display: block;
    color: #f5a117;
    margin-bottom: 4px;
}

.about-currency span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    opacity: .75;
}

.about-final {
    margin-top: 50px;
    padding: 35px 20px;

    background: rgba(8, 14, 24, 0.42);

    border: 1px solid rgba(120, 180, 255, 0.13);
    border-radius: 14px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 12px 40px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.06);
}


/* =========================================================
   ABOUT — FULL WIDTH
   ========================================================= */

body:has(.server-description) .main__sidebar {
    display: none !important;
}

body:has(.server-description) .main__content {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
}


/* =========================================================
   ABOUT — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .server-description {
        font-size: 14px;
    }

    .server-description img {
        float: none !important;
        display: block;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto 20px !important;
    }

    .about-section {
        margin-top: 30px;
        padding-top: 25px;
    }

    .about-feature {
        padding: 16px;
    }

    .about-currency {
        padding: 12px;
    }

}
/* =========================================================
   Preloader
   ========================================================= */

.preload {
    background: #050b13 !important;
    /* или почти как сайт: */
    /* background: radial-gradient(ellipse at center, #0a1524 0%, #050b13 70%) !important; */
    z-index: 9999 !important;
}

.preload__logo {
    max-width: 320px !important;
    width: 42vw !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 0 24px rgba(120, 180, 255, 0.25));
    animation: preload-pulse 1.4s ease-in-out infinite;
}

/* Полоска прогресса (если есть) */
.preload__progress {
    position: absolute !important;
    left: 50% !important;
    bottom: 18% !important;
    transform: translateX(-50%) !important;
    width: min(280px, 70vw) !important;
    height: 3px !important;
    border-radius: 4px !important;
    background: rgba(120, 180, 255, 0.15) !important;
    overflow: hidden !important;
}

@keyframes preload-pulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.03); }
}

.preload {
    background: #050b13 !important;
}

.preload__logo {
    max-width: 420px !important;
    width: min(70vw, 420px) !important;
    height: auto !important;
    filter: drop-shadow(0 0 28px rgba(120, 180, 255, 0.22));
}



