:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --accent: #60a5fa;
    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --bg-dark: #020617;
    --glass-bg: rgba(15, 23, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-body: 'Inter', sans-serif;
    --font-header: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-dark);
}

body {
    overflow-x: hidden;
}

/* Background */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../assets/img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.85));
    z-index: -1;
}

/* Typography & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

section {
    padding: 3rem 0;
    width: 100%;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-links a.nav-btn::after {
    display: none;
}

.nav-links a.nav-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 2rem;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title-img {
    max-width: 100%;
    width: 600px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
}

/* Hero Actions */
.hero-actions {
    animation: fadeIn 1s ease-out 0.3s both;
}

.discord-invite-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #5865F2; /* Discord Color */
    color: white;
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

/* Countdown */
.countdown-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.countdown-title {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-value {
    font-family: var(--font-header);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Status Section */
.status-section {
    position: relative;
}

.status-card {
    padding: 3rem 2rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.ip-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.ip-box {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ip-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.ip-box.copied {
    border-color: #10b981;
}

.ip-text {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ip-box:hover .copy-btn {
    background: var(--primary-hover);
}

.ip-box.copied .copy-btn {
    background: #10b981;
}

.players-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.status-indicator.online {
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Staff Section */
.staff-section {
    position: relative;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.staff-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.staff-head {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    image-rendering: pixelated;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.staff-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.staff-role {
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-role.owner { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.staff-role.admin { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
.staff-role.developer { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
.staff-role.moderator { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.staff-role.builder { background: rgba(139, 92, 246, 0.2); color: #c4b5fd; }
.staff-role.manager { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.staff-role.co-owner { background: rgba(209, 227, 255, 0.175); color: #ededed; }

/* Footer */
.footer {
    background: rgba(2, 6, 23, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.footer-dev-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.78rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    justify-content: center;
}

.footer-dev-credit svg {
    opacity: 0.5;
    color: var(--accent);
}

.footer-dev-credit strong {
    color: var(--accent);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar & Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; z-index: 1001; font-size: 1.8rem; }
    .nav-logo span { display: none; } /* Ocultar texto del logo en celular para hacer espacio */

    /* Hero Section */
    .hero-section { padding-top: 7rem; padding-bottom: 2rem; }
    .hero-title-img { width: 95%; max-width: 320px; }
    .hero-subtitle { font-size: 1.05rem; padding: 0 1rem; margin-bottom: 3rem; line-height: 1.5; }
    .hero-actions { width: 100%; padding: 0 1rem; }
    .discord-invite-text { font-size: 1rem; }
    .discord-btn { width: 100%; justify-content: center; font-size: 1.1rem; padding: 1.2rem; }

    /* Contenedores Generales */
    .container { padding: 0 1.2rem; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    section { padding: 2.5rem 0; }

    /* Countdown */
    .countdown-container { padding: 1.5rem; border-radius: 1.2rem; width: 100%; margin-top: 1rem; }
    .countdown { flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
    .time-box { min-width: 60px; width: calc(50% - 0.5rem); } /* 2x2 grid en móviles */
    .time-value { font-size: 2.5rem; }

    /* Status Section */
    .status-card { padding: 2rem 1.2rem; border-radius: 1.2rem; }
    .ip-container { margin-bottom: 2rem; width: 100%; }
    .ip-box { 
        padding: 0.5rem; border-radius: 1rem; flex-direction: column; gap: 0.5rem; width: 100%; 
    }
    .ip-text { font-size: 1.2rem; margin-right: 0; padding-top: 0.5rem; word-break: break-all; }
    .copy-btn { width: 100%; justify-content: center; padding: 1rem; font-size: 1.1rem; }
    .players-info { font-size: 1.05rem; flex-direction: column; text-align: center; gap: 0.5rem; }

    /* Staff Grid */
    .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .staff-card { padding: 1.2rem 0.5rem; border-radius: 1rem; }
    .staff-head { width: 70px; height: 70px; margin-bottom: 1rem; border-width: 2px; }
    .staff-name { font-size: 1.1rem; }
    .staff-role { font-size: 0.7rem; padding: 0.2rem 0.6rem; }

    /* Footer */
    .footer { padding: 3rem 0 2rem; margin-top: 2rem; }
    .footer-container { gap: 1.5rem; }
    .footer-links { flex-direction: column; gap: 1.2rem; align-items: center; }
    .footer-copyright { margin-top: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .staff-grid { grid-template-columns: 1fr; }
    .time-value { font-size: 2.2rem; }
    .section-title { font-size: 1.75rem; }
    .discord-btn { font-size: 1rem; padding: 1rem; }
    .nav-logo img { height: 40px; }
}

/* Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .countdown-container {
        padding: 1.5rem 2rem;
    }
    .countdown {
        gap: 1.5rem;
    }
    .time-value {
        font-size: 2.8rem;
    }
    .hero-title-img {
        width: 500px;
    }
    .hero-section {
        padding-top: 8rem;
    }
}

/* ── Vote Section ── */
.vote-section {
    position: relative;
    padding: 4rem 0 5rem;
}

.vote-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: -1.5rem auto 2rem;
    line-height: 1.6;
}

/* ── Geyser / Bedrock warning ── */
.geyser-warning {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: rgba(239, 68, 68, 0.08);
    border: 1.5px solid rgba(239, 68, 68, 0.45);
    border-left: 4px solid #ef4444;
    border-radius: 0.9rem;
    padding: 1.2rem 1.5rem;
    max-width: 820px;
    margin: 0 auto 2.5rem;
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
    50%       { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.07); }
}

.geyser-warning__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 1.05rem;
}

.geyser-warning__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.geyser-warning__title {
    font-family: var(--font-header);
    font-size: 0.98rem;
    color: #fca5a5;
    display: block;
    margin-bottom: 0.15rem;
}

.geyser-warning__body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.geyser-warning__body code {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.1rem 0.42rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.88rem;
    color: #e2e8f0;
}

.geyser-warning__body code.highlight {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.geyser-warning__note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #94a3b8 !important;
    font-size: 0.83rem !important;
    border-top: 1px solid rgba(239, 68, 68, 0.15);
    padding-top: 0.55rem;
    margin-top: 0.2rem !important;
}

.geyser-warning__note i {
    color: #60a5fa;
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .geyser-warning {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.1rem;
    }
    .geyser-warning__icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vote-card {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.vote-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vote-platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.vote-platform-name {
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.vote-platform-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.vote-desc {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.55;
    flex: 1;
}

.vote-reward {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.25);
    color: #facc15;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    width: fit-content;
}

.vote-reward i {
    font-size: 0.85rem;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.4rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
    margin-top: auto;
}

.vote-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.vote-footer-note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 1rem;
    padding: 1rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 700px;
    margin: 0 auto;
}

.vote-footer-note i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.vote-footer-note strong {
    color: var(--text);
}

/* Footer vote links */
.footer-vote-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-vote-label {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-vote-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.footer-vote-links a:hover {
    color: var(--accent);
    border-color: var(--primary);
}

/* Vote section responsive */
@media (max-width: 900px) {
    .vote-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .vote-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .vote-section {
        padding: 3rem 0 4rem;
    }
    .footer-vote-links {
        gap: 0.75rem;
    }
}


/* ═══ Gold Nav Button ═══ */
.nav-links a.nav-btn.gold {
    background: linear-gradient(90deg, #ffc94a, #f59e0b);
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.nav-links a.nav-btn.gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6);
}

/* ═══ Sale Banner (Home) ═══ */
.shop-sale-banner {
    background: linear-gradient(90deg, #ffc94a, #f59e0b);
    color: #000;
    padding: 0.75rem 0;
    width: 100%;
    z-index: 50;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    margin-top: 76px; /* Height of the navbar */
}

.shop-sale-banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-sale-banner__content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-sale-banner__badge {
    background: #000;
    color: #ffc94a;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.shop-sale-banner__content p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.shop-sale-banner__date {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media(max-width: 800px) {
    .shop-sale-banner { margin-top: 72px; }
    .shop-sale-banner__inner { flex-direction: column; text-align: center; justify-content: center; gap: 0.5rem; }
    .shop-sale-banner__content { flex-direction: column; gap: 0.5rem; }
}

/* ═══ Server Online Banner (Home) ═══ */
.server-online-container {
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    margin: 2rem auto;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.online-subtitle {
    color: #00B2FF;
    font-family: var(--font-display), sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

.online-subtitle .dot {
    width: 8px;
    height: 8px;
    background-color: #00B2FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00B2FF;
}

.online-title {
    color: #4ade80;
    font-family: var(--font-display), sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media(max-width: 600px) {
    .server-online-container { padding: 1.5rem; margin: 1.5rem 1rem; width: auto; max-width: 100%; }
    .online-title { font-size: 1.5rem; text-align: center; }
    .online-subtitle { font-size: 0.85rem; letter-spacing: 0.1em; }
}

.global-discount-banner {
    background: linear-gradient(90deg, #ff9900, #ffc94a);
    color: #000;
    text-align: center;
    padding: 0.8rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    display: none;
    font-family: var(--font-display, 'Sora', sans-serif);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

body.has-discount {
    padding-top: 45px;
}

body.has-discount .navbar {
    top: 45px;
}

body.has-discount .server-online-container {
    border-color: rgba(255, 201, 74, 0.4);
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.2);
}

body.has-discount .online-subtitle {
    color: #ffc94a !important;
}

body.has-discount .online-subtitle .dot {
    background-color: #ffc94a;
    box-shadow: 0 0 8px #ffc94a;
}

body.has-discount .online-title {
    background: linear-gradient(180deg, #fff, #ffc94a);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 4px 15px rgba(255, 201, 74, 0.3);
}

body.has-discount .discord-btn {
    background: linear-gradient(135deg, #ffc94a, #ff9900);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

body.has-discount .discord-btn:hover {
    background: linear-gradient(135deg, #ffd670, #ffaa00);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

body.has-discount .ip-box {
    border-color: rgba(255, 201, 74, 0.4);
}

body.has-discount .copy-btn {
    color: #ffc94a;
}

