/* ==================== 变量 ==================== */
:root {
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Alphacorsa", "Arial Black", sans-serif;

    --bg: #0a0a0c;
    --bg-alt: #111114;
    --surface: rgba(255,255,255,0.04);
    --surface-hover: rgba(255,255,255,0.06);
    --text: #e8e8ec;
    --text-muted: #6e6e78;
    --border: rgba(255,255,255,0.08);
    --accent: #e0e0e0;
    --accent-hover: #ffffff;
}

[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-alt: #ffffff;
    --surface: rgba(0,0,0,0.03);
    --surface-hover: rgba(0,0,0,0.05);
    --text: #1a1a1f;
    --text-muted: #6e6e78;
    --border: rgba(0,0,0,0.08);
    --accent: #1a1a1f;
    --accent-hover: #000000;
}

@font-face {
    font-family: "Alphacorsa";
    src: url("../fonts/Alphacorsa.ttf") format("truetype");
    font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

/* ==================== 载入动画 ==================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-brand img {
    height: 2rem;
    width: auto;
    display: block;
}

.brand-img {
    height: auto;
    max-height: 1.6rem;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}

[data-theme="light"] .brand-img,
[data-theme="light"] .hero-brand-img,
[data-theme="light"] .hero-favicon,
[data-theme="light"] .nav-favicon {
    filter: invert(1);
}

.nav-favicon {
    height: 1.6rem;
    width: 1.6rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.4rem;
}

.hero-brand-img {
    height: auto;
    max-height: clamp(4rem, 12vw, 10rem);
    width: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}

.hero-favicon {
    height: auto;
    max-height: clamp(3rem, 9vw, 7rem);
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

[data-theme="light"] .brand-img,
[data-theme="light"] .hero-brand-img,
[data-theme="light"] .hero-favicon,
[data-theme="light"] .nav-favicon {
    filter: invert(1);
}
.loader-line {
    width: 100px;
    height: 1px;
    background: var(--border);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}
.loader-line span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--text);
    transform: translateX(-100%);
    animation: loadSlide 1.2s ease-in-out infinite;
}
@keyframes loadSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ==================== 布局 ==================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* ==================== 导航 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s, border-color 0.3s;
}

[data-theme="light"] .navbar {
    background: rgba(245, 245, 247, 0.85);
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.92);
    border-color: var(--border);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(245, 245, 247, 0.92);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.logo i {
    font-size: 1.5rem;
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    border-bottom-color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.theme-toggle:hover {
    background: var(--surface-hover);
}

.theme-toggle .bx-sun { display: none; }
[data-theme="light"] .theme-toggle .bx-moon { display: none; }
[data-theme="light"] .theme-toggle .bx-sun { display: block; }

.mobile-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.mobile-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s, transform 0.2s;
}

.mobile-toggle .bx-x {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.mobile-toggle.active .bx-menu {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-toggle.active .bx-x {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.mobile-menu {
    display: flex;
    transform: translateY(-100%);
    opacity: 1;
    pointer-events: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 99;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .mobile-menu {
    background: rgba(245, 245, 247, 0.92);
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
}

.mobile-menu.active {
    transform: translateY(0);
    pointer-events: auto;
}

/* ==================== 按钮 ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--surface-hover);
    border-color: var(--text-muted);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-accent {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* ==================== 时间线 ==================== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 1rem 0 2rem 1.5rem;
}

.timeline-dot {
    position: absolute;
    left: -1.75rem;
    top: 1.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text);
    border: 2px solid var(--bg);
}

.timeline-date {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--surface);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== 照片画廊 ==================== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.photo-placeholder {
    aspect-ratio: 16/10;
    border-radius: 10px;
    border: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    background: var(--surface);
    text-align: center;
    padding: 1rem;
}

.photo-placeholder i {
    font-size: 2rem;
}

/* ==================== Hero ==================== */
.hero {
    padding: 10rem 0 6rem;
    border-bottom: 1px solid var(--border);
}

.hero-small {
    padding: 8rem 0 3rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: 4px;
    font-weight: 400;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.hero-chase {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* ==================== 区块标题 ==================== */
.section-header {
    margin-bottom: 3rem;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 5vw, 2rem);
    letter-spacing: 2px;
    font-weight: 400;
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* ==================== 特色（不对称布局） ==================== */
.feature-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.feature-row:first-child {
    padding-top: 0;
}

.feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-media {
    order: 1;
}

.feature-text {
    max-width: 400px;
}

.feature-text .feature-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text-muted);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    font-weight: 400;
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.feature-media {
    aspect-ratio: 16/10;
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== 赛道卡片 ==================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.track-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.track-card:hover {
    border-color: var(--text-muted);
}

.track-img {
    aspect-ratio: 16/9;
    background: var(--bg);
    overflow: hidden;
}

.track-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.track-card:hover .track-img img {
    transform: scale(1.03);
}

.track-info {
    padding: 1.25rem;
}

.track-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.track-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.track-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.track-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ==================== 性能块 ==================== */
.perf-block {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.perf-block:hover {
    border-color: var(--text-muted);
}

.perf-block i {
    font-size: 1.5rem;
    color: var(--text);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.perf-block h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.perf-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== 插件（列表式，图更大） ==================== */
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.tech-item:hover {
    border-color: var(--text-muted);
}

.tech-img {
    width: 200px;
    height: 120px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
}

.tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tech-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.tech-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== CTA ==================== */
.section-cta {
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.cta-inner > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ==================== 页脚 ==================== */
.footer {
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==================== 监控页面 ==================== */
.monitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.metric-card {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.metric-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== 服务器列表（状态页） ==================== */
.server-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.server-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.server-card:hover {
    border-color: var(--text-muted);
}

.server-main {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.server-header {
    flex: 1;
    min-width: 280px;
}

.server-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.server-title-row h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.server-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.server-dot.offline {
    background: #ef4444;
}

.server-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-weight: 600;
}

.server-badge.offline {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.server-addr {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.server-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.server-expand {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.server-expand:hover {
    border-color: var(--text-muted);
    background: var(--surface-hover);
}

.server-detail {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.detail-section-wide {
    grid-column: span 3;
}

.detail-section h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-section p {
    font-size: 0.95rem;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.detail-list li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-list li.empty {
    color: var(--text-muted);
    font-style: italic;
    border-bottom: none;
}

.mod-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1.5rem;
    max-height: 300px;
}

.mod-list li {
    border-bottom: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== 响应式 ==================== */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .monitor-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-visual img { max-width: 400px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-section-wide { grid-column: span 1; }
    .mod-list { grid-template-columns: 1fr; }
    .server-main { flex-direction: column; align-items: flex-start; }
    .server-stats { gap: 1.5rem; }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-media {
        order: 0;
    }
    .feature-text { max-width: 100%; }
    
    .tech-item { flex-direction: column; align-items: flex-start; }
    .tech-img { width: 100%; height: 180px; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .nav-inner {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.4rem;
        letter-spacing: 1px;
    }

    .brand-img {
        max-height: 1.3rem;
    }

    .nav-favicon {
        height: 1.3rem;
        width: 1.3rem;
    }

    .nav-actions {
        gap: 0.4rem;
        margin-left: auto;
    }

    .nav-user span {
        display: none;
    }

    .nav-user i.bx-chevron-down {
        display: none;
    }

    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .monitor-grid { grid-template-columns: 1fr; }

    .hero { padding: 7rem 0 4rem; }
    .hero-small { padding: 6rem 0 2rem; }
    .section { padding: 4rem 0; }

    .hero-actions, .cta-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }

    .server-stats { width: 100%; justify-content: space-between; }
}