﻿:root {
    --bg: #080f11;
    --bg-soft: #101a1d;
    --panel: rgba(13, 20, 24, 0.82);
    --panel-border: rgba(255, 255, 255, 0.1);
    --text: #e7f1f2;
    --muted: #9cb1b4;
    --accent: #d89a4f;
    --accent-2: #bc7c38;
    --discord: #5865f2;
    --ok: #2ecc71;
    --err: #ff5c58;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(93, 138, 144, 0.22), transparent 32%),
        radial-gradient(circle at 90% 16%, rgba(216, 154, 79, 0.15), transparent 36%),
        linear-gradient(180deg, #04090b 0%, #081013 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 92px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

code {
    font-family: "JetBrains Mono", monospace;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 54px;
}

.section-title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 17px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(4, 9, 10, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
    background: rgba(4, 9, 10, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 22px;
}

.logo-text {
    font-family: "Sora", sans-serif;
    color: #ffd7a1;
    font-size: 13px;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-auth {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-user-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f7e7cc;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-link {
    color: #cfdee0;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-btn-download,
.nav-btn-discord,
.nav-btn-secondary,
.nav-btn-ghost {
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Manrope", "Segoe UI", sans-serif;
    border: 1px solid transparent;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-btn-download {
    color: #291300;
    background: linear-gradient(135deg, #efbd7b 0%, #d89a4f 100%);
}

.nav-btn-discord {
    color: #fff;
    background: linear-gradient(135deg, #7681ff 0%, #5865f2 100%);
}

.nav-btn-secondary {
    color: #291300;
    background: linear-gradient(135deg, #efbd7b 0%, #d89a4f 100%);
}

.nav-btn-ghost {
    color: #e8f1f3;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.nav-btn-download:hover,
.nav-btn-discord:hover,
.nav-btn-secondary:hover,
.nav-btn-ghost:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.nav-burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #d8e5e7;
    margin: 4px auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 172px 24px 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/background.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 7, 8, 0.56) 0%, rgba(3, 7, 8, 0.7) 38%, rgba(3, 7, 8, 0.95) 100%),
        radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin-top: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(223, 193, 152, 0.4);
    background: rgba(11, 20, 23, 0.68);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f3d1a3;
    margin-bottom: 24px;
}

.hero-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(44px, 10vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.5);
}

.hero-title-accent {
    color: #f2be79;
}

.hero-description {
    color: rgba(231, 241, 242, 0.9);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.68;
    max-width: 680px;
    margin: 0 auto 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 54px;
}

.hero-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 22px;
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(9, 16, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat {
    min-width: 150px;
    text-align: center;
}

.stat-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    margin-top: 4px;
    color: rgba(213, 225, 227, 0.75);
    font-size: 12px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7f8c8d;
}

.status-indicator.online {
    background: var(--ok);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
}

.status-indicator.offline {
    background: var(--err);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(238, 245, 246, 0.75);
    font-size: 12px;
}

.scroll-arrow {
    font-size: 16px;
    animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #241102;
    background: linear-gradient(135deg, #efc083 0%, #d89a4f 100%);
    box-shadow: 0 18px 40px rgba(216, 154, 79, 0.26);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-ghost {
    color: #e4eef0;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: rgba(255, 220, 173, 0.56);
}

.btn-discord {
    color: #fff;
    background: linear-gradient(135deg, #7681ff 0%, #5865f2 100%);
}

.btn-forum {
    color: #ffe1bf;
    background: rgba(216, 154, 79, 0.18);
    border-color: rgba(216, 154, 79, 0.5);
}

.btn-lg {
    padding: 14px 24px;
    font-size: 15px;
}

.btn-xl {
    padding: 18px 34px;
    font-size: 16px;
}

.btn-icon {
    font-size: 20px;
    line-height: 1;
}

.btn-badge {
    border-radius: 999px;
    font-size: 11px;
    padding: 4px 8px;
    background: rgba(36, 17, 2, 0.2);
}

.features {
    background: linear-gradient(180deg, transparent 0%, rgba(16, 26, 29, 0.4) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    border-radius: 18px;
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 156, 18, 0.6);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.feature-title {
    font-family: "Sora", sans-serif;
    font-size: 21px;
    margin-bottom: 10px;
}

.feature-text {
    color: #c3d2d4;
    line-height: 1.72;
    font-size: 15px;
}

.mods-section {
    background: rgba(9, 16, 18, 0.7);
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.mods-scroll {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.mods-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: scroll 28s linear infinite;
    --mods-shift: 0px;
}

.mods-group {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    padding-right: 12px;
}

.mod-tag {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(216, 154, 79, 0.15);
    border: 1px solid rgba(216, 154, 79, 0.45);
    color: #ffdba8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--mods-shift)));
    }
}

.mods-scroll:hover .mods-track {
    animation-play-state: paused;
}

.howto {
    background: linear-gradient(180deg, rgba(9, 16, 18, 0.4) 0%, transparent 100%);
}

.steps {
    max-width: 740px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    font-family: "Sora", sans-serif;
    font-size: 20px;
    display: grid;
    place-items: center;
    color: #ffe1b7;
    background: rgba(243, 156, 18, 0.2);
    border: 1px solid rgba(243, 156, 18, 0.5);
}

.step-content {
    padding-top: 3px;
}

.step-title {
    font-family: "Sora", sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.step-text {
    color: #bfd0d3;
    line-height: 1.7;
}

.step-connector {
    width: 2px;
    height: 34px;
    margin: 10px 0 10px 23px;
    background: linear-gradient(180deg, rgba(243, 156, 18, 0.6) 0%, rgba(243, 156, 18, 0.1) 100%);
}

.community-section {
    background: rgba(9, 16, 18, 0.68);
}

.community-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.community-card {
    border-radius: 20px;
    padding: 30px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
}

.discord-card {
    border-color: rgba(88, 101, 242, 0.5);
}

.forum-card {
    border-color: rgba(243, 156, 18, 0.5);
}

.community-card-title {
    font-family: "Sora", sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.community-card-text {
    color: #bfd0d3;
    line-height: 1.72;
    margin-bottom: 18px;
}

.community-features {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-bottom: 24px;
    color: #c9d8da;
    flex: 1;
}

.community-features li::before {
    content: "•";
    color: #efc083;
    margin-right: 8px;
}

.server-section {
    background: linear-gradient(180deg, rgba(9, 16, 18, 0.2) 0%, rgba(9, 16, 18, 0.74) 100%);
}

.news-section {
    background: linear-gradient(180deg, rgba(9, 16, 18, 0.78) 0%, rgba(9, 16, 18, 0.42) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}

.news-card {
    min-width: 0;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 156, 18, 0.48);
}

.news-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 154, 79, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.03);
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    flex: 1;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #91a7ab;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-card-title {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    line-height: 1.18;
}

.news-card-text {
    color: #bfd0d3;
    line-height: 1.72;
    font-size: 15px;
    flex: 1;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: #c6d5d8;
    font-size: 16px;
    line-height: 1.6;
}

.server-card {
    border-radius: 24px;
    padding: 34px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
    gap: 34px;
    align-items: stretch;
}

.server-card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-card-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 18px;
}

.server-info-grid {
    display: grid;
    gap: 16px;
}

.server-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.server-info-label {
    color: #9eb2b6;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.server-info-value {
    font-size: 16px;
    color: #e7f0f2;
}

.server-ip-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.server-ip {
    font-size: 18px;
    color: #ffd7a1;
    background: rgba(216, 154, 79, 0.16);
    border: 1px solid rgba(216, 154, 79, 0.45);
    border-radius: 10px;
    padding: 8px 12px;
}

.copy-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #d7e4e7;
    border-radius: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
}

.copy-btn.copied {
    background: rgba(46, 204, 113, 0.22);
    border-color: rgba(46, 204, 113, 0.7);
    color: #d9ffea;
}

.server-card-right {
    min-width: 0;
    display: flex;
}

.server-status-panel {
    width: 100%;
    min-height: 100%;
    border-radius: 22px;
    padding: 28px 28px 24px;
    background:
        radial-gradient(circle at 50% 0%, rgba(180, 214, 220, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.server-status-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.server-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #edf7f8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-status-pill.online {
    border-color: rgba(46, 204, 113, 0.45);
    background: rgba(46, 204, 113, 0.16);
    color: #d8ffe8;
}

.server-status-pill.offline {
    border-color: rgba(255, 92, 88, 0.42);
    background: rgba(255, 92, 88, 0.14);
    color: #ffd8d5;
}

.server-status-meta {
    color: #a8bec2;
    font-size: 13px;
}

.server-status-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 18px;
}

.status-orbit {
    position: relative;
    width: 178px;
    height: 178px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.18), rgba(46, 204, 113, 0.04) 55%, transparent 72%);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.status-orbit.online {
    box-shadow: 0 0 44px rgba(46, 204, 113, 0.18);
}

.status-orbit.offline {
    background: radial-gradient(circle at center, rgba(255, 92, 88, 0.16), rgba(255, 92, 88, 0.04) 55%, transparent 72%);
    box-shadow: 0 0 34px rgba(255, 92, 88, 0.12);
}

.status-orbit-core {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(116, 255, 177, 0.95), rgba(46, 204, 113, 0.92));
    box-shadow: 0 0 24px rgba(46, 204, 113, 0.4);
}

.status-orbit.offline .status-orbit-core {
    background: linear-gradient(180deg, rgba(255, 152, 142, 0.94), rgba(255, 92, 88, 0.92));
    box-shadow: 0 0 20px rgba(255, 92, 88, 0.32);
}

.status-orbit-ring {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(180, 214, 220, 0.28);
}

.status-orbit-ring-a {
    animation: pulseOrbit 3.2s ease-in-out infinite;
}

.status-orbit-ring-b {
    inset: 2px;
    border-style: dashed;
    opacity: 0.35;
    animation: spinOrbit 14s linear infinite;
}

.server-status-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
}

.server-status-metric {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.server-status-metric-label {
    display: block;
    margin-bottom: 7px;
    color: #8ea6aa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.server-status-metric-value {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: "Sora", sans-serif;
    font-size: 30px;
    line-height: 1;
    color: #f3fbfc;
}

.server-status-metric-sep {
    color: #8fa5aa;
    font-size: 24px;
}

.server-status-metric-cap {
    color: #a8bec2;
    font-size: 22px;
}

.server-status-metric-text {
    display: block;
    color: #e7f0f2;
    font-size: 16px;
    font-weight: 700;
}

.status-circle.online {
    color: inherit;
}

.status-circle.offline {
    color: inherit;
}

.status-text-big {
    color: #e7f0f2;
}

@keyframes pulseOrbit {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.42;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

@keyframes spinOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.download-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.download-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    border-radius: 26px;
    padding: 42px 24px;
    background:
        radial-gradient(circle at 10% 10%, rgba(216, 154, 79, 0.2), transparent 36%),
        rgba(10, 17, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.download-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 10px;
}

.download-subtitle {
    color: #c1d2d5;
    font-size: 18px;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.download-note {
    color: #aebfc2;
    font-size: 14px;
    margin-bottom: 20px;
}

.download-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.download-info-item {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d5e3e6;
    padding: 8px 12px;
    font-size: 13px;
}

.download-count {
    margin-top: 18px;
    color: #9fb4b8;
    font-size: 13px;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    background: rgba(4, 7, 9, 0.9);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-text {
    max-width: 620px;
    margin: 0 auto 16px;
    color: #96aeb2;
    font-size: 13px;
}

.footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-link {
    color: #d3e2e5;
    font-weight: 600;
    font-size: 14px;
}

.footer-link:hover {
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-link {
        font-size: 13px;
    }

    .hero-stats {
        gap: 14px;
        flex-wrap: wrap;
    }

    .stat {
        min-width: 130px;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .server-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .server-ip-row {
        justify-content: center;
    }

    .server-card-right,
    .server-status-panel {
        min-width: 100%;
        width: 100%;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .nav-burger {
        display: inline-block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 12px;
        right: 12px;
        padding: 20px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(8, 13, 15, 0.96);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link,
    .nav-btn-download,
    .nav-btn-discord,
    .nav-btn-secondary,
    .nav-btn-ghost {
        text-align: center;
        justify-content: center;
    }

    .nav-auth {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-user-badge {
        width: 100%;
    }

    .hero {
        padding-top: 136px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        padding: 14px;
        flex-direction: column;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .section {
        padding: 74px 0;
    }

    .step {
        gap: 14px;
    }

    .step-title {
        font-size: 20px;
    }

    .download-subtitle {
        font-size: 16px;
    }

    .server-status-grid {
        flex-direction: column;
    }

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

    .news-card-body {
        padding: 20px;
    }

    .news-card-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        letter-spacing: -0.02em;
    }

    .btn-lg {
        width: 100%;
        max-width: 320px;
    }

    .btn-xl {
        width: 100%;
        max-width: 320px;
    }

    .download-info {
        flex-direction: column;
        align-items: center;
    }

    .download-info-item {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mods-track {
        animation: none;
    }
}
