/* ==========================================================================
   Vindex MC Server Stylesheet — Red Military Theme
   ========================================================================== */

/* Custom Variables */
:root {
    --bg-dark: #0a0608;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-hover: rgba(255, 20, 20, 0.05);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-hover: rgba(220, 38, 38, 0.3);
    
    --primary: #dc2626;
    --primary-glow: rgba(220, 38, 38, 0.35);
    --primary-hover: #b91c1c;
    --primary-soft: rgba(220, 38, 38, 0.08);
    
    --accent-orange: #f97316;
    --accent-orange-glow: rgba(249, 115, 22, 0.35);
    
    --accent-gold: #f59e0b;
    --accent-gold-glow: rgba(245, 158, 11, 0.35);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(14px);
    
    --discord-color: #5865F2;
    --tiktok-color: #fe2c55;
    --map-color: #dc2626;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; }

/* ====================== HEADER ====================== */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(10, 6, 8, 0.75);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}
.main-header.scrolled { background: rgba(10, 6, 8, 0.95); }

.header-container {
    max-width: 1200px; margin: 0 auto; padding: 12px 20px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-img {
    height: 36px; width: 36px; border-radius: 50%;
    border: 2px solid var(--primary); box-shadow: 0 0 10px var(--primary-glow);
    object-fit: cover; transition: var(--transition-smooth);
}
.logo:hover .logo-img { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 16px var(--primary); }
.logo-text-img { height: 22px; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-link {
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
    transition: var(--transition-smooth); position: relative; padding: 5px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--primary);
    transition: var(--transition-smooth); box-shadow: 0 0 8px var(--primary-glow);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-btn-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff !important; padding: 8px 18px !important;
    border-radius: 50px; font-weight: 600; box-shadow: 0 4px 15px var(--primary-glow);
}
.nav-btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5); }
.nav-btn-accent::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 15px; }

.ip-badge-wrapper {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-color);
    padding: 8px 16px; border-radius: 50px; cursor: pointer;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem;
    transition: var(--transition-smooth);
}
.ip-badge-wrapper:hover {
    background: var(--primary-soft); border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow); transform: scale(1.03);
}
.ip-badge-wrapper .ip-text { color: #fff; }
.ip-badge-wrapper .ip-copy-icon { color: var(--primary); }

.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

/* ====================== HERO ====================== */
.hero-section {
    position: relative; padding: 140px 20px 100px; min-height: 90vh;
    display: flex; align-items: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover; overflow: hidden;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom,
        rgba(10, 6, 8, 0.5) 0%,
        rgba(10, 6, 8, 0.85) 70%,
        var(--bg-dark) 100%);
    z-index: 1;
}
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 3; }
.hero-content { max-width: 700px; }

.hero-brand-logo { margin-bottom: 18px; }
.hero-shield-logo {
    height: 100px; width: 100px; border-radius: 50%;
    border: 3px solid var(--primary); box-shadow: 0 0 30px var(--primary-glow);
    object-fit: cover; animation: float 5s ease-in-out infinite;
    transition: var(--transition-smooth);
}
.hero-shield-logo:hover { transform: scale(1.08); box-shadow: 0 0 40px var(--primary); }

.hero-online-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur); padding: 6px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 18px; color: var(--text-secondary);
}

.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.pulsing-green { background: #22c55e; box-shadow: 0 0 10px #22c55e; animation: pulse-green 2s infinite; }
.pulsing-red { background: #ef4444; box-shadow: 0 0 10px #ef4444; animation: pulse-red 2s infinite; }

.hero-title {
    font-size: 4.5rem; font-weight: 900; line-height: 1.05; margin-bottom: 18px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.hero-subtitle {
    font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 30px;
    max-width: 620px; text-shadow: 0 2px 6px rgba(0,0,0,0.6); line-height: 1.7;
}
.hero-subtitle strong { color: var(--primary); font-weight: 700; }

.hero-cta { display: flex; gap: 14px; margin-bottom: 45px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; border-radius: 12px; font-family: var(--font-heading);
    font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition-smooth); border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff; box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5); }
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur); color: #fff;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); border-color: var(--text-muted); }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat-card { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 38px; background: var(--border-color); }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); z-index: 2; }
.hero-wave svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }
.hero-wave .shape-fill { fill: var(--bg-dark); }

/* ====================== MAP SHOWCASE ====================== */
.map-showcase {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center;
}
.map-desc {
    color: var(--text-secondary); font-size: 1.05rem; margin-top: 20px; line-height: 1.8;
}
.map-desc strong { color: #fff; }
.map-highlights {
    list-style: none; margin-top: 25px; display: flex; flex-direction: column; gap: 14px;
}
.map-highlights li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-secondary); font-size: 0.95rem;
    padding: 10px 16px; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: 12px;
    transition: var(--transition-smooth);
}
.map-highlights li:hover {
    background: var(--primary-soft); border-color: var(--primary);
    transform: translateX(6px);
}
.map-highlights li i { color: var(--primary); font-size: 1.2rem; width: 24px; text-align: center; }
.map-highlights li strong { color: #fff; }

.map-showcase-visual {
    display: flex; align-items: center; justify-content: center;
}
.globe-container {
    position: relative; width: 220px; height: 220px;
    display: flex; align-items: center; justify-content: center;
}
.globe-icon {
    font-size: 7rem; color: var(--primary);
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 6s ease-in-out infinite;
}
.globe-ring {
    position: absolute; width: 200px; height: 200px; border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.15);
    animation: spin-ring 12s linear infinite;
}
.globe-ring-2 {
    width: 260px; height: 260px;
    border: 1px dashed rgba(220, 38, 38, 0.1);
    animation: spin-ring 20s linear infinite reverse;
}

/* ====================== SECTIONS ====================== */
.content-wrapper { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-container { padding: 80px 0; }

.dark-section {
    background: rgba(255, 255, 255, 0.01); border: 1px solid var(--border-color);
    border-radius: 24px; padding: 50px 35px; backdrop-filter: var(--glass-blur); margin: 40px 0;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-pretitle {
    display: block; color: var(--primary); font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 10px;
}
.section-title { font-size: 2.4rem; font-weight: 800; color: #fff; }
.section-bar {
    width: 55px; height: 4px; background: var(--primary);
    margin: 15px auto 0; border-radius: 2px; box-shadow: 0 0 10px var(--primary-glow);
}

/* ====================== FEATURES GRID ====================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; }

.feature-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 18px; padding: 32px 28px; transition: var(--transition-smooth);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0; transition: var(--transition-smooth);
}
.feature-card:hover {
    background: var(--bg-card-hover); border-color: var(--border-color-hover);
    transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 1.9rem; color: var(--primary); margin-bottom: 18px; filter: drop-shadow(0 0 10px var(--primary-glow)); }
.feature-title { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.feature-text { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

/* ====================== STATUS SECTION ====================== */
.status-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 25px; }

.status-card-main {
    background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color);
    border-radius: 18px; padding: 30px;
}
.status-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.server-info-block { display: flex; flex-direction: column; gap: 5px; }
.server-info-ip { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #fff; }
.server-info-ver {
    color: var(--text-secondary); font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05); padding: 3px 10px; border-radius: 5px; align-self: flex-start;
}
.server-status-pill {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px; font-weight: 700; font-size: 0.88rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.status-dot-large { width: 10px; height: 10px; border-radius: 50%; }
.glow-green { background: #22c55e; box-shadow: 0 0 12px #22c55e; }
.glow-red { background: #ef4444; box-shadow: 0 0 12px #ef4444; }

.progress-container { margin-bottom: 25px; }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.progress-bar-bg { width: 100%; height: 10px; background: rgba(255, 255, 255, 0.05); border-radius: 50px; overflow: hidden; border: 1px solid var(--border-color); }
.progress-bar-fill {
    height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent-orange));
    border-radius: 50px; width: 0%; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--primary-glow);
}

.motd-box { background: rgba(0, 0, 0, 0.3); border: 1px solid var(--border-color); border-radius: 12px; padding: 18px; }
.motd-title { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.05em; }
.motd-content { font-family: monospace; font-size: 1rem; color: #f1f5f9; line-height: 1.5; word-break: break-word; }

.status-card-players {
    background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color);
    border-radius: 18px; padding: 25px; display: flex; flex-direction: column;
}
.status-card-players .card-title { font-size: 1.15rem; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.status-card-players .card-title i { color: var(--primary); }

.players-list-scroll { flex-grow: 1; max-height: 250px; overflow-y: auto; padding-right: 5px; }
.players-list-scroll::-webkit-scrollbar { width: 5px; }
.players-list-scroll::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); border-radius: 10px; }
.players-list-scroll::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }

.players-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.player-item {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color);
    padding: 10px; border-radius: 10px; transition: var(--transition-smooth);
}
.player-item:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.player-avatar { width: 34px; height: 34px; image-rendering: pixelated; margin-bottom: 6px; border-radius: 4px; box-shadow: 0 3px 8px rgba(0,0,0,0.3); }
.player-name { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); text-align: center; max-width: 85px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.players-placeholder { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 35px 0; color: var(--text-muted); text-align: center; }
.players-placeholder i { font-size: 1.8rem; margin-bottom: 12px; color: var(--primary); }

/* ====================== SOCIAL LINKS ====================== */
.links-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 25px; }

.social-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 18px; padding: 35px 28px; display: flex; flex-direction: column;
    overflow: hidden; transition: var(--transition-smooth); position: relative;
}
.social-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; }
.social-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); background: var(--bg-card-hover); }

.social-icon { font-size: 2.6rem; margin-bottom: 18px; }
.social-body h3 { font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.social-body p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 22px; line-height: 1.6; }

.social-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
    color: #fff; padding: 10px 20px; border-radius: 10px; transition: var(--transition-smooth);
}

.discord-theme::before { background: var(--discord-color); }
.discord-theme .social-icon { color: var(--discord-color); }
.discord-theme .social-btn { background: var(--discord-color); }
.discord-theme .social-btn:hover { background: #404eed; box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4); }

.tiktok-theme::before { background: var(--tiktok-color); }
.tiktok-theme .social-icon { color: var(--tiktok-color); }
.tiktok-theme .social-btn { background: var(--tiktok-color); }
.tiktok-theme .social-btn:hover { background: #df1f46; box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4); }

.map-theme::before { background: var(--primary); }
.map-theme .social-icon { color: var(--primary); }
.map-theme .social-btn { background: var(--primary); }
.map-theme .social-btn:hover { background: var(--primary-hover); box-shadow: 0 4px 15px var(--primary-glow); }

/* ====================== DONATE SECTION ====================== */
.donate-intro { text-align: center; color: var(--text-secondary); max-width: 660px; margin: 0 auto 40px; font-size: 1.05rem; }

.donate-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 35px; flex-wrap: wrap; }
.tab-btn {
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color);
    color: var(--text-secondary); padding: 10px 22px; border-radius: 50px;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
    cursor: pointer; transition: var(--transition-smooth);
}
.tab-btn:hover { border-color: rgba(220, 38, 38, 0.3); color: #fff; background: var(--primary-soft); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 15px var(--primary-glow); }

.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }

.donate-card {
    position: relative; background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border-color); border-radius: 20px;
    padding: 45px 35px; text-align: center; transition: var(--transition-smooth); overflow: hidden;
}
.donate-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.035); }
.ru-store:hover { box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1); border-color: rgba(220, 38, 38, 0.25); }
.global-store:hover { box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.25); }

.donate-badge {
    position: absolute; top: 15px; right: -30px;
    background: var(--primary); color: #fff; font-family: var(--font-heading); font-weight: 700;
    font-size: 0.72rem; padding: 5px 35px; transform: rotate(45deg); box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.global-badge { background: var(--accent-orange); }

.donate-icon { font-size: 3rem; margin-bottom: 20px; }
.ru-store .donate-icon { color: var(--primary); filter: drop-shadow(0 0 15px var(--primary-glow)); }
.global-store .donate-icon { color: var(--accent-orange); filter: drop-shadow(0 0 15px var(--accent-orange-glow)); }

.donate-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.donate-desc { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 25px; min-height: 44px; }

.payment-methods { list-style: none; text-align: left; margin: 0 auto 30px; max-width: 250px; display: flex; flex-direction: column; gap: 10px; }
.payment-methods li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.ru-store .payment-methods i { color: var(--primary); }
.global-store .payment-methods i { color: var(--accent-orange); }

.btn-donate { width: 100%; padding: 14px 20px; font-size: 1rem; border-radius: 12px; }
.btn-global { background: linear-gradient(135deg, var(--accent-orange), #ea580c); box-shadow: 0 4px 15px var(--accent-orange-glow); }
.btn-global:hover { box-shadow: 0 8px 22px rgba(249, 115, 22, 0.5); }

/* ====================== HOW TO START ====================== */
.join-steps-container { display: flex; justify-content: space-between; align-items: center; gap: 18px; }

.step-card {
    flex: 1; background: var(--bg-card); border: 1px solid var(--border-color);
    padding: 28px 22px; border-radius: 16px; position: relative; text-align: center;
}
.step-num {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; background: var(--primary); color: #fff;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; box-shadow: 0 0 12px var(--primary-glow);
}
.step-card h4 { font-size: 1.1rem; margin: 8px 0 10px; color: #fff; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); }
.step-arrow { font-size: 1.3rem; color: var(--text-muted); }

.ip-highlight { color: var(--primary); cursor: pointer; border-bottom: 1px dashed var(--primary); transition: var(--transition-smooth); }
.ip-highlight:hover { color: #fff; border-color: #fff; }

/* ====================== FOOTER ====================== */
.main-footer {
    border-top: 1px solid var(--border-color); background: rgba(5, 3, 4, 0.85);
    backdrop-filter: var(--glass-blur); padding: 60px 20px 25px;
}
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 40px; }
.footer-about p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 16px; max-width: 340px; }
.footer-logo { display: inline-flex; }

.footer-links h4, .footer-disclaimer h4 { font-size: 1rem; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-secondary); font-size: 0.88rem; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-disclaimer p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 20px; }
.footer-copyright { font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--border-color); padding-top: 12px; }

/* ====================== TOAST ====================== */
.toast-notification {
    position: fixed; bottom: 28px; right: 28px; z-index: 1000;
    background: rgba(220, 38, 38, 0.12); border: 1px solid var(--primary);
    backdrop-filter: var(--glass-blur); padding: 14px 22px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--primary-glow);
    transform: translateY(150%) scale(0.9); opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); pointer-events: none;
}
.toast-notification.show { transform: translateY(0) scale(1); opacity: 1; }
.toast-content { display: flex; align-items: center; gap: 14px; }
.toast-icon { font-size: 1.6rem; color: var(--primary); filter: drop-shadow(0 0 5px var(--primary-glow)); }
.toast-text { display: flex; flex-direction: column; }
.toast-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; color: #fff; }
.toast-desc { font-size: 0.78rem; color: var(--text-secondary); }

/* ====================== ANIMATIONS ====================== */
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
@keyframes pulse-red { 0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } }
@keyframes spin-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.animate-fade-in { animation: fadeIn 1s ease-out forwards; }
.animate-slide-up { opacity: 0; animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.animate-slide-up-delayed { opacity: 0; animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards; }
.animate-slide-up-delayed2 { opacity: 0; animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards; }
.animate-slide-up-delayed3 { opacity: 0; animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Carousel Dots (Mobile) */
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 22px; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
    .hero-title { font-size: 3.4rem; }
    .status-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-disclaimer { grid-column: 1 / -1; }
    .map-showcase { grid-template-columns: 1fr; gap: 30px; }
    .map-showcase-visual { order: -1; }
    .globe-container { width: 160px; height: 160px; }
    .globe-icon { font-size: 5rem; }
    .globe-ring { width: 150px; height: 150px; }
    .globe-ring-2 { width: 200px; height: 200px; }
    .section-title[style] { text-align: center !important; }
    .section-bar[style] { margin: 15px auto 0 !important; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(10, 6, 8, 0.96); backdrop-filter: var(--glass-blur);
        flex-direction: column; padding: 25px 20px; gap: 18px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0); z-index: -1;
    }
    .nav-menu.active { transform: translateY(0); }
    
    .hero-section { padding: 110px 20px 70px; text-align: center; min-height: auto; }
    .hero-content { margin: 0 auto; }
    .hero-brand-logo { display: flex; justify-content: center; }
    .hero-online-badge { margin: 0 auto 18px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .stat-divider { display: none; }
    
    .join-steps-container { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 8px 0; }
    .dark-section { padding: 35px 18px; }
    .server-info-ip { font-size: 1.3rem; }
    
    .carousel-dots { display: flex; }
    .features-grid, .links-cards-grid, .donate-grid {
        display: flex !important; overflow-x: auto !important;
        scroll-snap-type: x mandatory !important; gap: 18px !important;
        padding: 15px 5px !important; scrollbar-width: none !important; scroll-behavior: smooth;
    }
    .features-grid::-webkit-scrollbar, .links-cards-grid::-webkit-scrollbar, .donate-grid::-webkit-scrollbar { display: none !important; }
    .feature-card, .social-card, .donate-card {
        flex: 0 0 82% !important; width: 82% !important; max-width: 82% !important;
        scroll-snap-align: center !important;
    }
    
    .carousel-dot {
        width: 8px; height: 8px; border-radius: 50%;
        background: rgba(255, 255, 255, 0.2); cursor: pointer; transition: var(--transition-smooth);
    }
    .carousel-dot.active { background: var(--primary); transform: scale(1.4); box-shadow: 0 0 8px var(--primary-glow); }
    
    .map-desc { text-align: center; }
    .map-highlights li { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.6rem; }
    .hero-cta { flex-direction: column; gap: 10px; }
    .btn { width: 100%; }
    .ip-badge-wrapper { display: none; }
    .footer-container { grid-template-columns: 1fr; }
    .donate-tabs { gap: 8px; }
    .tab-btn { padding: 8px 16px; font-size: 0.82rem; }
}
