/* === CHRISTMAS & NEW YEAR 2026 THEME === */
:root {
    --xmas-red: #d42426;
    --xmas-green: #165b33;
    --xmas-gold: #f8b229;
    --xmas-snow: #ffffff;
}

/* Add a festive top border */
body {
    border-top: 5px solid var(--xmas-red);
}

/* Decorations for the Header */
.app-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid var(--xmas-green);
    position: sticky;
}

.logo-wrapper {
    position: relative;
    z-index: 20;
}

/* Santa Hat on Logo */
.logo-wrapper::after {
    content: '🎅';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 24px;
    transform: rotate(15deg);
    z-index: 10;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

/* Festive Title Colors */
.title-group h1 {
    color: var(--xmas-red) !important;
    text-shadow: 1px 1px 0 var(--xmas-gold);
}

.title-group .subtitle {
    color: var(--xmas-green) !important;
}

/* Search Section Decoration */
.search-card {
    border: 2px solid var(--xmas-gold);
    background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
    position: relative;
    transition: all 0.3s ease !important;
}

/* GLOW EFFECT ON HOVER */
.search-card:hover {
    box-shadow: 0 0 20px rgba(248, 178, 41, 0.4), 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--xmas-red);
}

/* Mistletoe decoration */
.search-card::after {
    content: '🎄';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    opacity: 0.9;
}

/* Update Primary Button to Festive Red (GIFT BUTTON) */
.btn-primary {
    background: linear-gradient(135deg, var(--xmas-red), #b91c1c) !important;
    border: 1px solid #991b1b !important;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(220, 38, 38, 0.4) !important;
}

/* Ribbon for Gift Button */
.btn-primary::before {
    content: '🎁';
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Result Section Festive Header */
.result-header {
    background: linear-gradient(135deg, var(--xmas-green), #14532d) !important;
    box-shadow: 0 10px 25px -5px rgba(22, 101, 52, 0.4) !important;
    border: 1px solid var(--xmas-gold);
}

/* Snowfall Container */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    user-select: none;
    pointer-events: none;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* New Year 2026 Banner */
.holiday-banner {
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, var(--xmas-red), #b91c1c, var(--xmas-green));
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(212, 36, 38, 0.3);
    border: 2px solid var(--xmas-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.holiday-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* COUNTDOWN TIMER STYLES */
.countdown-container {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-value {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--xmas-gold);
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* SPARKLE CURSOR EFFECT */
.sparkle {
    position: fixed;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--xmas-gold) 10%, transparent 70%);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    mix-blend-mode: screen;
    z-index: 10000;
    animation: sparkleFade 1s linear forwards;
}

@keyframes sparkleFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}