/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0a0a;
    color: #e0d5c1;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 10px;
}

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

/* --- HORIZONTAL SCROLL CONTAINER --- */
.horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    height: 100vh;
    width: 100vw;
    scroll-behavior: smooth;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}
.horizontal-scroll::-webkit-scrollbar-track {
    background: #0b0a0a;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 10px;
}

/* --- EACH SECTION AS A SLIDE --- */
.slide {
    flex: 0 0 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- NAVIGATION (DESKTOP TOP / MOBILE BOTTOM) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #2a2a2a;
    z-index: 1000;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}
.logo-nav i {
    margin-right: 8px;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li a {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #aaa;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid transparent;
    cursor: pointer;
}

.nav-links li a i {
    font-size: 0.85rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.3);
}

.nav-links li a.cabinet {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.08);
}
.nav-links li a.cabinet:hover {
    background: rgba(201, 168, 76, 0.2);
}

/* --- MOBILE BOTTOM NAV --- */
.navbar-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid #2a2a2a;
    z-index: 1000;
    padding: 4px 0 8px 0;
    justify-content: space-around;
    align-items: center;
}

.nav-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    color: #888;
    font-size: 0.5rem;
    padding: 2px 6px;
    transition: 0.3s;
    border-radius: 16px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
}

.nav-bottom-item i {
    font-size: 1.1rem;
    margin-bottom: 1px;
}

.nav-bottom-item:hover,
.nav-bottom-item.active {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
}

.nav-bottom-item span {
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 0.5rem;
}

@media (max-width: 992px) {
    .navbar {
        display: none;
    }
    .navbar-bottom {
        display: flex;
    }
}

@media (min-width: 993px) {
    .navbar-bottom {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-bottom-item {
        padding: 1px 3px;
    }
    .nav-bottom-item i {
        font-size: 0.9rem;
    }
    .nav-bottom-item span {
        font-size: 0.4rem;
    }
}

/* --- SECTION TITLES --- */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.section-title span {
    color: #c9a84c;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.8;
    max-width: 700px;
}

#home {
    padding: 0;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

.home-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.home-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    pointer-events: none;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.home-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- ЛОГОТИП --- */
.main-logo {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-logo .logo-image {
    max-width: 420px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.25));
    transition: 0.4s ease;
    animation: logoFloat 4s ease-in-out infinite;
    display: block;
}

.main-logo .logo-image:hover {
    filter: drop-shadow(0 0 70px rgba(201, 168, 76, 0.5));
    transform: scale(1.03);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================================================ */
/* КАРТОЧКИ СЕРВЕРОВ - КРАСИВЫЕ */
/* ================================================================ */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 10px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.server-card {
    background: rgba(20, 18, 16, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #2a251f;
    border-radius: 14px;
    padding: 16px 14px 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.server-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.server-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.server-name i {
    color: #c9a84c;
    font-size: 0.85rem;
}

.server-chronicle {
    font-size: 0.6rem;
    color: #c9a84c;
    font-weight: 400;
    background: rgba(201, 168, 76, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.server-ip {
    font-size: 0.65rem;
    color: #777;
    margin-bottom: 8px;
}

.server-status-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0 8px 0;
}

.server-status-info {
    font-size: 0.7rem;
}

.status-online {
    color: #4caf50;
}

.status-online i {
    font-size: 0.5rem;
    margin-right: 4px;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.status-offline {
    color: #f44336;
}

.status-offline i {
    font-size: 0.5rem;
    margin-right: 4px;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.server-stats {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    color: #aaa;
}

.server-stats i {
    color: #888;
    font-size: 0.65rem;
}

.stat-percent {
    color: #c9a84c;
    font-weight: 600;
}

.server-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: auto;
    overflow: hidden;
}

.server-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a84c, #f1d87a);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* ================================================================ */
/* ТАЙМЕР - КРАСИВЫЙ */
/* ================================================================ */
.timer-wrapper {
    margin: 30px auto;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
}

.timer-row {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-unit {
    text-align: center;
    min-width: 40px;
}

.timer-unit .num {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.timer-unit .label {
    font-size: 0.5rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.timer-status {
    margin-top: 6px;
    font-size: 0.7rem;
    color: #c9a84c;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ================================================================ */
/* ОСТАЛЬНЫЕ СЛАЙДЫ */
/* ================================================================ */
#about {
    padding: 0;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

.about-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.about-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.about-video-bg video.active {
    opacity: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    width: 100%;
    padding: 40px 45px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.about-content h2 .highlight {
    color: #c9a84c;
}

.about-content .about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #ddd;
    margin-bottom: 12px;
    min-height: 80px;
    transition: opacity 0.5s ease;
}

.about-content .about-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-content .about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #ccc;
    font-size: 0.95rem;
}

.about-content .about-features li:last-child {
    border-bottom: none;
}

.about-content .about-features li i {
    color: #c9a84c;
    font-size: 1.1rem;
    min-width: 24px;
}

.about-content .about-features li .label {
    color: #c9a84c;
    font-weight: 600;
}

.about-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.about-arrow:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: #c9a84c;
    transform: translateY(-50%) scale(1.1);
}

.about-arrow.left {
    left: 16px;
}

.about-arrow.right {
    right: 16px;
}

.about-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.about-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.about-dots .dot.active {
    background: #c9a84c;
    border-color: #c9a84c;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.about-dots .dot:hover {
    background: rgba(201, 168, 76, 0.5);
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 0 20px;
    }
    .about-content {
        max-width: 100%;
        padding: 28px 22px;
    }
    .about-content h2 {
        font-size: 2.2rem;
    }
    .about-content .about-text {
        font-size: 0.95rem;
        min-height: 60px;
    }
    .about-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .about-arrow.left {
        left: 6px;
    }
    .about-arrow.right {
        right: 6px;
    }
}

@media (max-width: 600px) {
    .about-content {
        padding: 20px 16px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .about-content .about-text {
        font-size: 0.85rem;
        min-height: 50px;
    }
    .about-content .about-features li {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    .about-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

#top {
    background: #0d0b0a;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#news {
    background: #100e0c;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#forum {
    background: #0d0b0a;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#streams {
    background: #0d0b0a;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#download {
    background: #100e0c;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#social {
    background: #0b0a0a;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#cabinet {
    background: #0b0a0a;
    margin-top: 64px;
    height: calc(100vh - 64px);
}

#top .slide-content,
#news .slide-content,
#forum .slide-content,
#streams .slide-content,
#download .slide-content,
#social .slide-content,
#cabinet .slide-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
}

.top-card {
    background: rgba(20, 18, 16, 0.85);
    border-radius: 16px;
    border: 1px solid #2a251f;
    padding: 18px;
    transition: 0.3s;
}

.top-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.top-card .top-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-card .top-header i {
    font-size: 1.6rem;
    color: #c9a84c;
}

.top-card .top-header h4 {
    font-size: 1.2rem;
    color: #fff;
}

.top-card .top-header .count {
    margin-left: auto;
    color: #888;
    font-size: 0.8rem;
}

.top-list {
    list-style: none;
}

.top-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.top-list li:last-child {
    border-bottom: none;
}

.top-list .rank {
    font-weight: 700;
    color: #c9a84c;
    min-width: 28px;
    font-size: 0.85rem;
}

.top-list .rank.gold {
    color: #ffd700;
}
.top-list .rank.silver {
    color: #c0c0c0;
}
.top-list .rank.bronze {
    color: #cd7f32;
}

.top-list .name {
    flex: 1;
    color: #eee;
}

.top-list .value {
    color: #c9a84c;
    font-weight: 600;
    font-size: 0.85rem;
}

.top-list .class-icon {
    font-size: 0.9rem;
    opacity: 0.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
}

.news-card {
    background: rgba(20, 18, 16, 0.85);
    border-radius: 16px;
    border: 1px solid #2a251f;
    padding: 20px;
    transition: 0.3s;
}

.news-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}

.news-card .news-date {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.news-card .news-tag {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    margin-bottom: 8px;
}

.news-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.news-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.news-card .news-readmore {
    display: inline-block;
    margin-top: 10px;
    color: #c9a84c;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
}

.news-card .news-readmore:hover {
    color: #fff;
}

.forum-list {
    margin-top: 20px;
    background: rgba(20, 18, 16, 0.6);
    border-radius: 16px;
    border: 1px solid #2a251f;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
}

.forum-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
    gap: 16px;
}

.forum-item:last-child {
    border-bottom: none;
}

.forum-item:hover {
    background: rgba(201, 168, 76, 0.05);
}

.forum-item .forum-icon {
    font-size: 1.4rem;
    color: #c9a84c;
    min-width: 36px;
    text-align: center;
}

.forum-item .forum-info {
    flex: 1;
    min-width: 0;
}

.forum-item .forum-info .forum-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

.forum-item .forum-info .forum-title:hover {
    color: #c9a84c;
}

.forum-item .forum-info .forum-meta {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

.forum-item .forum-info .forum-meta span {
    margin-right: 12px;
}

.forum-item .forum-info .forum-meta i {
    margin-right: 4px;
}

.forum-item .forum-replies {
    text-align: center;
    min-width: 50px;
}

.forum-item .forum-replies .num {
    color: #c9a84c;
    font-weight: 700;
    font-size: 1.1rem;
}

.forum-item .forum-replies .label {
    font-size: 0.55rem;
    color: #888;
    text-transform: uppercase;
}

.forum-item .forum-last {
    text-align: right;
    min-width: 120px;
    font-size: 0.75rem;
    color: #888;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
}

.stream-card {
    background: rgba(30, 27, 24, 0.8);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #2a251f;
    transition: 0.3s;
}

.stream-card:hover {
    border-color: #c9a84c;
    transform: scale(1.02);
}

.stream-card .stream-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.stream-card .stream-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stream-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.stream-card p {
    color: #888;
    font-size: 0.8rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 24px;
    width: 100%;
    max-width: 700px;
}

.download-card {
    background: rgba(30, 27, 24, 0.8);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #2a251f;
    transition: 0.3s;
}
.download-card:hover {
    border-color: #c9a84c;
    transform: scale(1.02);
}
.download-card i {
    font-size: 2.8rem;
    color: #c9a84c;
    margin-bottom: 10px;
}
.download-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.download-card p {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 12px;
}
.btn-download {
    display: inline-block;
    padding: 6px 22px;
    border: 1px solid #c9a84c;
    border-radius: 40px;
    color: #c9a84c;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 1px;
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
}
.btn-download:hover {
    background: #c9a84c;
    color: #0b0a0a;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.social-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}
.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 27, 24, 0.6);
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid #2a251f;
    transition: 0.3s;
    font-size: 1rem;
}
.social-item:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-3px);
}
.social-item i {
    font-size: 1.4rem;
    color: #c9a84c;
}

.cabinet-box {
    max-width: 380px;
    margin: 0 auto;
    background: rgba(30, 27, 24, 0.6);
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid #2a251f;
    width: 100%;
}

.cabinet-box .avatar {
    text-align: center;
    margin-bottom: 16px;
}
.cabinet-box .avatar i {
    font-size: 3.5rem;
    color: #c9a84c;
}

.cabinet-box input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #2a251f;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 10px;
    outline: none;
    transition: 0.3s;
}

.cabinet-box input:focus {
    border-color: #c9a84c;
}

.cabinet-box .btn-login {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background: #c9a84c;
    color: #0b0a0a;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.cabinet-box .btn-login:hover {
    background: #dbb95c;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.cabinet-box .cabinet-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
}

.cabinet-box .cabinet-links a {
    color: #888;
    font-size: 0.8rem;
    transition: 0.3s;
}

.cabinet-box .cabinet-links a:hover {
    color: #c9a84c;
}

/* --- FOOTER --- */
.slide-footer {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.slide-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: #777;
}

.slide-footer .footer-links a {
    color: #888;
    transition: 0.3s;
    cursor: pointer;
}

.slide-footer .footer-links a:hover {
    color: #c9a84c;
}

.slide-footer .footer-links .sep {
    color: #333;
}

.slide-footer .footer-copy {
    font-size: 0.6rem;
    color: #555;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .slide-footer .footer-links {
        gap: 12px;
        font-size: 0.6rem;
    }
    .slide-footer .footer-copy {
        font-size: 0.5rem;
    }
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #1a1816;
    border: 1px solid #2a251f;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.modal-box::-webkit-scrollbar {
    width: 4px;
}
.modal-box::-webkit-scrollbar-track {
    background: #1a1816;
}
.modal-box::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 10px;
}

.modal-box .modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
}

.modal-box .modal-close:hover {
    color: #c9a84c;
    transform: rotate(90deg);
}

.modal-box h2 {
    color: #c9a84c;
    font-size: 1.8rem;
    margin-bottom: 16px;
    border-bottom: 1px solid #2a251f;
    padding-bottom: 12px;
}

.modal-box h3 {
    color: #ddd;
    font-size: 1.1rem;
    margin: 16px 0 8px 0;
}

.modal-box p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.modal-box ul {
    color: #aaa;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 10px;
}

.modal-box ul li {
    margin-bottom: 4px;
}

@media (max-width: 600px) {
    .modal-box {
        padding: 24px 18px;
        max-height: 85vh;
    }
    .modal-box h2 {
        font-size: 1.4rem;
    }
    .modal-box p,
    .modal-box ul {
        font-size: 0.85rem;
    }
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    color: #c9a84c;
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 992px) {
    .scroll-indicator {
        display: none;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .top-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .forum-item {
        flex-wrap: wrap;
        padding: 12px 14px;
    }
    .forum-item .forum-last {
        min-width: auto;
        width: 100%;
        text-align: left;
        padding-left: 52px;
    }
    .forum-item .forum-replies {
        min-width: 40px;
    }
    .main-logo .logo-image {
        max-width: 320px;
    }
    .servers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .top-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .servers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .server-timer .time-unit .num {
        font-size: 0.85rem;
        min-width: 26px;
    }
    .server-timer .time-unit {
        min-width: 26px;
    }
    .social-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .social-item i {
        font-size: 1.1rem;
    }
    .streams-grid {
        grid-template-columns: 1fr;
    }
    .download-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .main-logo .logo-image {
        max-width: 240px;
    }
    .about-content {
        padding: 22px 18px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .about-content .about-text {
        font-size: 0.9rem;
    }
    .about-content .about-features li {
        font-size: 0.85rem;
    }
}

@media (max-width: 420px) {
    .servers-grid {
        grid-template-columns: 1fr;
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
    .main-logo .logo-image {
        max-width: 180px;
    }
    .cabinet-box {
        padding: 24px 16px;
    }
}

.text-center {
    text-align: center;
}
.mt-20 {
    margin-top: 20px;
}
.w-100 {
    width: 100%;
}
.gold {
    color: #c9a84c;
}
/* ================================================================ */
/* КАРТОЧКИ СЕРВЕРОВ - ПРИНУДИТЕЛЬНО */
/* ================================================================ */
.servers-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 16px !important;
    margin-top: 10px !important;
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

.server-card {
    background: rgba(20, 18, 16, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid #2a251f !important;
    border-radius: 14px !important;
    padding: 16px 14px 16px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.server-card:hover {
    border-color: #c9a84c !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
}

.server-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 2px !important;
}

.server-name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.server-name i {
    color: #c9a84c !important;
    font-size: 0.85rem !important;
}

.server-chronicle {
    font-size: 0.6rem !important;
    color: #c9a84c !important;
    font-weight: 400 !important;
    background: rgba(201, 168, 76, 0.1) !important;
    padding: 2px 10px !important;
    border-radius: 12px !important;
    white-space: nowrap !important;
}

.server-ip {
    font-size: 0.65rem !important;
    color: #777 !important;
    margin-bottom: 8px !important;
}

.server-status-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 4px 0 8px 0 !important;
}

.server-status-info {
    font-size: 0.7rem !important;
}

.status-online {
    color: #4caf50 !important;
}

.status-online i {
    font-size: 0.5rem !important;
    margin-right: 4px !important;
    animation: pulse-dot 1.5s ease-in-out infinite !important;
}

.status-offline {
    color: #f44336 !important;
}

.status-offline i {
    font-size: 0.5rem !important;
    margin-right: 4px !important;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.server-stats {
    display: flex !important;
    gap: 12px !important;
    font-size: 0.7rem !important;
    color: #aaa !important;
}

.server-stats i {
    color: #888 !important;
    font-size: 0.65rem !important;
}

.stat-percent {
    color: #c9a84c !important;
    font-weight: 600 !important;
}

.server-progress {
    width: 100% !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 2px !important;
    margin-top: auto !important;
    overflow: hidden !important;
}

.server-progress-fill {
    height: 100% !important;
    background: linear-gradient(90deg, #c9a84c, #f1d87a) !important;
    border-radius: 2px !important;
    transition: width 0.5s ease !important;
}

/* ================================================================ */
/* ТАЙМЕР - ПРИНУДИТЕЛЬНО */
/* ================================================================ */
.timer-wrapper {
    margin: 30px auto !important;
    max-width: 400px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(201, 168, 76, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
}

.timer-row {
    display: flex !important;
    gap: 6px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.timer-unit {
    text-align: center !important;
    min-width: 40px !important;
}

.timer-unit .num {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #c9a84c !important;
    background: rgba(201, 168, 76, 0.08) !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    display: block !important;
    border: 1px solid rgba(201, 168, 76, 0.12) !important;
}

.timer-unit .label {
    font-size: 0.5rem !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    margin-top: 2px !important;
}

.timer-status {
    margin-top: 6px !important;
    font-size: 0.7rem !important;
    color: #c9a84c !important;
    font-weight: 600 !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
}

/* ================================================================ */
/* АДАПТИВ */
/* ================================================================ */
@media (max-width: 600px) {
    .servers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        max-width: 100% !important;
    }
    .server-card {
        padding: 12px 10px 14px !important;
    }
    .server-name {
        font-size: 0.85rem !important;
    }
    .server-chronicle {
        font-size: 0.5rem !important;
        padding: 1px 8px !important;
    }
    .server-stats {
        font-size: 0.6rem !important;
        gap: 8px !important;
    }
    .server-status-info {
        font-size: 0.6rem !important;
    }
    .timer-unit .num {
        font-size: 1.2rem !important;
        padding: 2px 4px !important;
    }
    .timer-unit {
        min-width: 30px !important;
    }
    .timer-wrapper {
        padding: 12px 14px !important;
    }
}

@media (max-width: 420px) {
    .servers-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .server-card {
        padding: 14px 12px !important;
    }
    .timer-unit .num {
        font-size: 1rem !important;
        padding: 2px 4px !important;
        min-width: 24px !important;
    }
    .timer-unit {
        min-width: 26px !important;
    }
}