
/* ==========================================================================
   LevGaming Christmas Edition 2025
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Mountains+of+Christmas:wght@700&family=Cinzel+Decorative:wght@700&display=swap');

/* ==========================================================================
   Base Styles – Winter Night Sky
   ========================================================================== */

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1a2e 0%, #112233 25%, #0a1a2e 50%, #1e3a5f 75%, #0a1a2e 100%);
    background-size: 400% 400%;
    animation: snowBackground 20s ease infinite;
    color: #f0f0f0;
    position: relative;
}

/* Subtle falling snow effect (optional but magical) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle fill="%23ffffff22" r="2" cx="10" cy="10"/><circle fill="%23ffffff22" r="1.5" cx="40" cy="60"/><circle fill="%23ffffff22" r="2" cx="80" cy="30"/><circle fill="%23ffffff22" r="1" cx="60" cy="80"/></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle fill="%23ffffff33" r="1.5" cx="20" cy="40"/><circle fill="%23ffffff33" r="2" cx="70" cy="20"/><circle fill="%23ffffff33" r="1" cx="90" cy="70"/></svg>');
    background-size: 200px 200px;
    animation: snowfall 15s linear infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes snowfall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes snowBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   Typography – Festive Titles
   ========================================================================== */

.hero-title {
    font-family: 'Mountains of Christmas', 'Cinzel Decorative', serif;
    font-size: 4.5rem;
    background: linear-gradient(45deg, #c41e3a, #ff3333, #ffd700, #00b33c, #c41e3a);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: christmasGradient 6s ease infinite, glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes christmasGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7)); }
    to { filter: drop-shadow(0 0 35px rgba(220, 20, 60, 0.9)); }
}

/* ==========================================================================
   Cards & Sections – Candy Cane & Holly
   ========================================================================== */

.server-card,
.changelog-entry,
.quick-action-section,
.support-section,
.discord-section,
.filter-section {
    background: linear-gradient(135deg, rgba(20, 35, 30, 0.9) 0%, rgba(50, 10, 20, 0.6) 100%);
    border: 2px solid rgba(220, 20, 60, 0.5); /* Candy cane red */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.server-card::before,
.changelog-entry::before {
    background: linear-gradient(90deg, #c41e3a, #ffffff, #00b33c, #ffffff, #c41e3a);
    background-size: 300% 100%;
    animation: candyStripe 5s linear infinite;
}

@keyframes candyStripe {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

/* Extra festive glows */
.support-section::before,
.discord-section::before {
    background: radial-gradient(circle, rgba(0, 179, 60, 0.35) 0%, transparent 70%);
    animation: christmasPulse 6s ease-in-out infinite;
}

@keyframes christmasPulse {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.2; transform: scale(1.2) rotate(180deg); }
}

/* ==========================================================================
   Buttons – Christmas Lights Style
   ========================================================================== */

.steam-connect-btn,
.rss-button,
.copy-btn {
    background: linear-gradient(45deg, #c41e3a, #00b33c, #ffd700, #c41e3a);
    background-size: 400%;
    animation: christmasGradient 4s ease infinite;
    border: none;
    transition: all 0.3s ease;
}

.steam-connect-btn:hover,
.rss-button:hover,
.copy-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.6);
}

/* ==========================================================================
   Status Badges
   ========================================================================== */

.status-active {
    background: linear-gradient(45deg, #00b33c, #00ff6c);
    animation: pulseGreen 2s infinite;
}

.status-offline {
    background: linear-gradient(45deg, #8B0000, #c41e3a);
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ==========================================================================
   Progress Bar – Golden Lights
   ========================================================================== */

.progress-bar {
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #00b33c, #ffd700);
    background-size: 300%;
    animation: christmasGradient 5s ease infinite;
}

.progress-bar::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

/* ==========================================================================
   Ko-Fi Heart → Christmas Bell / Ornament
   ========================================================================== */

.kofi-heart {
    animation: jingle 2s ease-in-out infinite;
}

@keyframes jingle {
    0%, 100% { transform: scale(1) rotate(-10deg); }
    50% { transform: scale(1.15) rotate(10deg); }
}

/* ==========================================================================
   Date Badges – Gift Tags
   ========================================================================== */

.date-badge {
    background: linear-gradient(45deg, #c41e3a, #00b33c);
    color: #ffd700;
    font-weight: bold;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}