/* ============================================
   EASTER EGGS & SEASONAL ANIMATIONS
   Made for Arcadia by Vyrriox
   ============================================ */

/* ============================================
   CONSOLE SECRET: Custom Theme Colors
   ============================================ */
.arcadia-custom-theme #app {
    filter: hue-rotate(var(--arcadia-secret-hue, 0deg));
}

.arcadia-custom-theme .ambient-glow {
    filter: hue-rotate(var(--arcadia-secret-hue, 0deg));
}

/* --- Logo Breathing Glow --- */
.logo-breathe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: breatheGlow 5s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- Konami Code Effect --- */
#app.konami-active {
    animation: konamiFlash 15s ease-in-out;
}

@keyframes konamiFlash {
    0% { filter: brightness(1) hue-rotate(0deg); }
    5% { filter: brightness(1.8) hue-rotate(30deg); }
    10% { filter: brightness(1.2) hue-rotate(72deg); }
    15% { filter: brightness(1.6) hue-rotate(108deg); }
    20% { filter: brightness(1) hue-rotate(144deg); }
    25% { filter: brightness(1.5) hue-rotate(180deg); }
    30% { filter: brightness(1.3) hue-rotate(216deg); }
    35% { filter: brightness(1.7) hue-rotate(252deg); }
    40% { filter: brightness(1.1) hue-rotate(288deg); }
    45% { filter: brightness(1.4) hue-rotate(324deg); }
    50% { filter: brightness(1.6) hue-rotate(360deg); }
    55% { filter: brightness(1.2) hue-rotate(330deg); }
    60% { filter: brightness(1.8) hue-rotate(270deg); }
    65% { filter: brightness(1.1) hue-rotate(200deg); }
    70% { filter: brightness(1.5) hue-rotate(150deg); }
    75% { filter: brightness(1.3) hue-rotate(100deg); }
    80% { filter: brightness(1.7) hue-rotate(50deg); }
    85% { filter: brightness(1.2) hue-rotate(180deg); }
    90% { filter: brightness(1.4) hue-rotate(300deg); }
    95% { filter: brightness(1.1) hue-rotate(60deg); }
    100% { filter: brightness(1) hue-rotate(0deg); }
}

.konami-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.konami-particle {
    position: absolute;
    font-size: 1.5rem;
    animation: konamiParticleFall linear forwards;
    opacity: 0;
}

@keyframes konamiParticleFall {
    0% { transform: translateY(-50px) rotate(0deg) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(0) rotate(30deg) scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg) scale(0.5); opacity: 0; }
}

/* --- Logo Secret Click --- */
/* --- Logo Mega Animation (5 clicks) --- */
.logo-mega-shake {
    animation: megaShake 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes megaShake {
    0%, 100% { transform: translateX(0) rotate(0); }
    5% { transform: translateX(-15px) rotate(-5deg); }
    10% { transform: translateX(15px) rotate(5deg); }
    15% { transform: translateX(-12px) rotate(-4deg); }
    20% { transform: translateX(12px) rotate(4deg); }
    25% { transform: translateX(-10px) rotate(-3deg); }
    30% { transform: translateX(10px) rotate(3deg); }
    40% { transform: translateX(-8px) rotate(-2deg); }
    50% { transform: translateX(8px) rotate(2deg); }
    60% { transform: translateX(-5px) rotate(-1deg); }
    70% { transform: translateX(5px) rotate(1deg); }
    80% { transform: translateX(-3px); }
    90% { transform: translateX(3px); }
}

.logo-mega-levitate {
    animation: megaLevitate 1.2s ease-in-out both;
    filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.9)) drop-shadow(0 0 80px rgba(168, 85, 247, 0.6)) !important;
}

@keyframes megaLevitate {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.15); }
    100% { transform: translateY(-30px) scale(1.1); }
}

.logo-mega-explosion {
    animation: megaExplosion 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
    filter: drop-shadow(0 0 60px rgba(245, 158, 11, 1)) drop-shadow(0 0 120px rgba(168, 85, 247, 0.8)) !important;
}

@keyframes megaExplosion {
    0% { transform: translateY(-30px) scale(1.1) perspective(800px) rotateY(0deg); }
    25% { transform: translateY(-50px) scale(1.4) perspective(800px) rotateY(180deg); }
    50% { transform: translateY(-30px) scale(0.8) perspective(800px) rotateY(360deg); }
    75% { transform: translateY(-40px) scale(1.3) perspective(800px) rotateY(540deg); }
    100% { transform: translateY(-20px) scale(1.2) perspective(800px) rotateY(720deg); }
}

.logo-mega-rainbow {
    animation: megaRainbow 3s ease-in-out both;
}

@keyframes megaRainbow {
    0% { transform: translateY(-20px) scale(1.2); filter: hue-rotate(0deg) drop-shadow(0 0 40px rgba(245, 158, 11, 0.8)); }
    20% { filter: hue-rotate(72deg) drop-shadow(0 0 30px rgba(168, 85, 247, 0.8)); }
    40% { filter: hue-rotate(144deg) drop-shadow(0 0 30px rgba(52, 211, 153, 0.8)); }
    60% { filter: hue-rotate(216deg) drop-shadow(0 0 30px rgba(239, 68, 68, 0.8)); }
    80% { filter: hue-rotate(288deg) drop-shadow(0 0 30px rgba(59, 130, 246, 0.8)); }
    100% { transform: translateY(0) scale(1); filter: hue-rotate(360deg) drop-shadow(0 0 0px transparent); }
}

/* Particle ring around logo */
.logo-particle-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}

.logo-ring-particle {
    position: fixed;
    font-size: 1.5rem;
    animation: ringExplode 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

@keyframes ringExplode {
    0% { transform: translate(0, 0) scale(0); opacity: 0; }
    20% { opacity: 1; transform: translate(calc(var(--ring-x) * 0.3), calc(var(--ring-y) * 0.3)) scale(1.3); }
    60% { opacity: 1; }
    100% { transform: translate(var(--ring-x), var(--ring-y)) scale(0); opacity: 0; }
}

/* Shockwave effect */
.logo-shockwave {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 3px solid rgba(245, 158, 11, 0.8);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%) scale(1);
    animation: shockwaveExpand 1s ease-out forwards;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4), inset 0 0 20px rgba(245, 158, 11, 0.2);
}

@keyframes shockwaveExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(60); opacity: 0; }
}

/* --- Magic Cursor Trail --- */
.magic-cursor-particle {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: cursorParticleFade 0.8s ease-out forwards;
}

@keyframes cursorParticleFade {
    0% { transform: scale(1) translate(0, 0); opacity: 1; }
    100% { transform: scale(0) translate(var(--dx), var(--dy)); opacity: 0; }
}

/* --- Hidden Text --- */
.arcadia-hidden-text {
    color: transparent;
    user-select: all;
    font-size: 0.75rem;
    line-height: 1;
    transition: color 0.3s ease;
    cursor: default;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.arcadia-hidden-text::selection {
    background: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* --- Click Counter Toast --- */
.easter-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.95), rgba(30, 30, 40, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 12px;
    padding: 16px 28px;
    color: #fff;
    font-size: 0.95rem;
    z-index: 100000;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.15);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease;
    opacity: 0;
    text-align: center;
    max-width: 90vw;
}

.easter-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.easter-toast .toast-icon {
    font-size: 1.4rem;
    margin-right: 10px;
    vertical-align: middle;
}

.easter-toast .toast-text {
    vertical-align: middle;
}

/* --- Midnight Event --- */
.midnight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99997;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(88, 28, 135, 0.15) 100%);
    opacity: 0;
    transition: opacity 2s ease;
}

.midnight-overlay.active {
    opacity: 1;
}

.midnight-star {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    animation: midnightTwinkle 2s ease-in-out infinite alternate;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

@keyframes midnightTwinkle {
    0% { opacity: 0.2; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1.5); }
}

/* ============================================
   SEASONAL ANIMATIONS
   ============================================ */

/* --- HALLOWEEN (25 Oct - 3 Nov) --- */
.season-halloween .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(255, 102, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.halloween-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 1.2rem;
    opacity: 0;
    animation: halloweenFloat linear infinite;
}

@keyframes halloweenFloat {
    0% { transform: translateY(110vh) rotate(0deg) translateX(0); opacity: 0; }
    5% { opacity: 0.8; }
    50% { transform: translateY(50vh) rotate(180deg) translateX(30px); }
    95% { opacity: 0.6; }
    100% { transform: translateY(-10vh) rotate(360deg) translateX(-20px); opacity: 0; }
}

.season-halloween .footer-title,
.season-halloween .section-title .copper-text {
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

/* --- CHRISTMAS (10 Dec - 2 Jan) --- */
.snowflake {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes snowfall {
    0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.9; }
    50% { transform: translateY(50vh) translateX(20px) rotate(180deg); }
    100% { transform: translateY(110vh) translateX(-15px) rotate(360deg); opacity: 0; }
}

.season-christmas .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.season-christmas .footer-title,
.season-christmas .section-title .copper-text {
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

/* --- NEW YEAR (31 Dec - 2 Jan) --- */
.firework {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.firework-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: fireworkExplode 1.5s ease-out forwards;
}

@keyframes fireworkExplode {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--fx), var(--fy)) scale(0); opacity: 0; }
}

/* --- VALENTINE'S DAY (10 Feb - 16 Feb) --- */
.valentine-heart {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    color: #ef4444;
    opacity: 0;
    animation: heartFloat linear infinite;
}

@keyframes heartFloat {
    0% { transform: translateY(110vh) scale(0.5) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    50% { transform: translateY(50vh) scale(1) rotate(15deg); }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) scale(0.8) rotate(-10deg); opacity: 0; }
}

.season-valentine .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* --- EASTER (variable, ~March-April) --- */
.season-easter .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hidden eggs */
.easter-hidden-egg {
    position: absolute;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0.25;
    transition: transform 0.3s ease, opacity 0.4s ease;
    filter: grayscale(0.5) brightness(0.7);
    animation: eggBob 3s ease-in-out infinite;
    user-select: none;
}

.easter-hidden-egg:hover {
    opacity: 0.7;
    filter: grayscale(0) brightness(1);
    transform: scale(1.3) rotate(10deg);
}

.easter-hidden-egg.egg-found {
    pointer-events: none;
    filter: none;
}

@keyframes eggBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Egg hunt counter */
.easter-hunt-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.9), rgba(124, 58, 237, 0.9));
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    z-index: 100001;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(88, 28, 135, 0.4);
    transition: transform 0.3s ease, opacity 0.4s ease;
}

.hunt-counter-pulse {
    animation: counterPulse 0.5s ease;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); box-shadow: 0 0 25px rgba(168, 85, 247, 0.8); }
    100% { transform: scale(1); }
}

.hunt-counter-hide {
    opacity: 0;
    transform: translateY(20px);
}

/* Victory overlay */
.easter-victory-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 20, 0.85);
    backdrop-filter: blur(12px);
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.easter-victory-overlay.active {
    opacity: 1;
}

.easter-victory-content {
    text-align: center;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease;
    max-width: 500px;
    padding: 20px;
}

.easter-victory-overlay.active .easter-victory-content {
    transform: scale(1);
    opacity: 1;
}

.easter-victory-emoji {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: victoryBounce 1s ease infinite;
}

@keyframes victoryBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.easter-victory-title {
    font-family: 'Metamorphous', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #a855f7, #f59e0b, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.easter-victory-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.easter-victory-eggs {
    font-size: 2rem;
    letter-spacing: 8px;
    margin-bottom: 30px;
    animation: victoryEggsWave 2s ease-in-out infinite;
}

@keyframes victoryEggsWave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.easter-victory-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.easter-victory-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.6);
}

/* Victory confetti */
.easter-confetti {
    position: absolute;
    top: -30px;
    pointer-events: none;
    animation: confettiFall linear forwards;
    opacity: 0;
}

@keyframes confettiFall {
    0% { transform: translateY(-30px) rotate(0deg); opacity: 0; }
    8% { opacity: 1; }
    90% { opacity: 0.8; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* --- SUMMER (21 Jun - 21 Sep) --- */
.season-summer .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.summer-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 1rem;
    opacity: 0;
    animation: summerFloat linear infinite;
}

@keyframes summerFloat {
    0% { transform: translateY(-5vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    100% { transform: translateY(110vh) translateX(40px) rotate(90deg); opacity: 0; }
}

/* --- BASTILLE DAY / 14 Juillet (13 Jul - 15 Jul) --- */
.season-bastille .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 35, 149, 0.06) 0%, transparent 33%, transparent 66%, rgba(237, 41, 57, 0.06) 100%);
    pointer-events: none;
    z-index: 0;
}

/* --- APRIL FOOLS (1 Apr) --- */
.season-aprilfools .hero {
    transition: transform 0.3s ease;
}

.april-wobble {
    animation: aprilWobble 4s ease-in-out infinite;
}

@keyframes aprilWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(0.5deg); }
    75% { transform: rotate(-0.5deg); }
}

/* --- Seasonal banner --- */
.seasonal-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-right: 50px;
    transform: translateY(-100%);
    animation: bannerSlideIn 0.6s 1s ease forwards;
    cursor: pointer;
}

.seasonal-banner:hover {
    opacity: 0.9;
}

.seasonal-banner-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    font-size: 1.2rem;
    line-height: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.seasonal-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@keyframes bannerSlideIn {
    to { transform: translateY(0); }
}

.seasonal-banner.halloween-banner {
    background: linear-gradient(135deg, #7c2d12, #9a3412);
    color: #fed7aa;
    border-bottom: 2px solid #f97316;
}

.seasonal-banner.christmas-banner {
    background: linear-gradient(135deg, #14532d, #166534);
    color: #bbf7d0;
    border-bottom: 2px solid #22c55e;
}

.seasonal-banner.valentine-banner {
    background: linear-gradient(135deg, #881337, #9f1239);
    color: #fecdd3;
    border-bottom: 2px solid #f43f5e;
}

.seasonal-banner.easter-banner {
    background: linear-gradient(135deg, #581c87, #6b21a8);
    color: #e9d5ff;
    border-bottom: 2px solid #a855f7;
}

.seasonal-banner.bastille-banner {
    background: linear-gradient(90deg, #002395, #ffffff20, #ed2939);
    color: #fff;
    border-bottom: 2px solid #fff;
}

.seasonal-banner.aprilfools-banner {
    background: linear-gradient(135deg, #854d0e, #a16207);
    color: #fef3c7;
    border-bottom: 2px solid #facc15;
}

.seasonal-banner.newyear-banner {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: #c7d2fe;
    border-bottom: 2px solid #818cf8;
}

.seasonal-banner.epiphanie-banner {
    background: linear-gradient(135deg, #78350f, #92400e);
    color: #fef3c7;
    border-bottom: 2px solid #f59e0b;
}

.seasonal-banner.chandeleur-banner {
    background: linear-gradient(135deg, #78350f, #a16207);
    color: #fef9c3;
    border-bottom: 2px solid #fbbf24;
}

.seasonal-banner.mardigras-banner {
    background: linear-gradient(135deg, #581c87, #9333ea);
    color: #f5d0fe;
    border-bottom: 2px solid #d946ef;
}

.seasonal-banner.stpatrick-banner {
    background: linear-gradient(135deg, #14532d, #166534);
    color: #bbf7d0;
    border-bottom: 2px solid #22c55e;
}

.seasonal-banner.travail-banner {
    background: linear-gradient(135deg, #78350f, #92400e);
    color: #fed7aa;
    border-bottom: 2px solid #f97316;
}

.seasonal-banner.fetemeres-banner {
    background: linear-gradient(135deg, #831843, #be185d);
    color: #fce7f3;
    border-bottom: 2px solid #f472b6;
}

.seasonal-banner.feteperes-banner {
    background: linear-gradient(135deg, #1e3a5f, #1e40af);
    color: #dbeafe;
    border-bottom: 2px solid #60a5fa;
}

.seasonal-banner.musique-banner {
    background: linear-gradient(135deg, #701a75, #a21caf);
    color: #fae8ff;
    border-bottom: 2px solid #e879f9;
}

.seasonal-banner.rentree-banner {
    background: linear-gradient(135deg, #3730a3, #4f46e5);
    color: #e0e7ff;
    border-bottom: 2px solid #818cf8;
}

.seasonal-banner.armistice-banner {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #d1d5db;
    border-bottom: 2px solid #9ca3af;
}

/* --- Automne particles --- */
.automne-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: automneFloat linear infinite;
}

@keyframes automneFloat {
    0% { transform: translateY(-5vh) translateX(0) rotate(0deg); opacity: 0; }
    8% { opacity: 0.7; }
    50% { transform: translateY(55vh) translateX(40px) rotate(180deg); }
    100% { transform: translateY(110vh) translateX(-20px) rotate(360deg); opacity: 0; }
}

.season-automne .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(180, 83, 9, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* --- New Year particles --- */
.newyear-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: newyearFloat linear infinite;
}

@keyframes newyearFloat {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    8% { opacity: 0.9; }
    50% { transform: translateY(50vh) rotate(180deg) translateX(20px); }
    100% { transform: translateY(-10vh) rotate(360deg) translateX(-10px); opacity: 0; }
}

/* --- Hiver --- */
.season-hiver .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(147, 197, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* --- Printemps --- */
.season-printemps .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(52, 211, 153, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at top, rgba(244, 114, 182, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* --- Generic seasonal particle --- */
.generic-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: genericFloat linear infinite;
}

@keyframes genericFloat {
    0% { transform: translateY(-5vh) translateX(0) rotate(0deg); opacity: 0; }
    8% { opacity: 0.7; }
    50% { transform: translateY(55vh) translateX(25px) rotate(180deg); }
    100% { transform: translateY(110vh) translateX(-15px) rotate(360deg); opacity: 0; }
}

/* --- Interactive Seasonal Items --- */
.seasonal-interactive-item {
    position: fixed;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease, opacity 0.3s ease;
    user-select: none;
    animation: interactiveAppear 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}

.seasonal-interactive-item:hover {
    transform: scale(1.4) !important;
}

@keyframes interactiveAppear {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.halloween-pumpkin-click {
    animation: interactiveAppear 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both, pumpkinPulse 1.5s ease-in-out infinite;
}

@keyframes pumpkinPulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.8)); }
}

.christmas-catch-flake {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.valentine-catch-heart {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.4));
}

.stpatrick-clover {
    font-size: 2rem;
    animation: interactiveAppear 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both, cloverSpin 3s linear infinite;
}

@keyframes cloverSpin {
    0% { filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.3)); }
    50% { filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.7)); }
    100% { filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.3)); }
}

.musique-note {
    font-size: 2.2rem;
    animation: interactiveAppear 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both, noteWiggle 0.8s ease-in-out infinite;
}

@keyframes noteWiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* --- Seasonal Hero Greeting --- */
#seasonal-hero-greeting {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* --- Seasonal Footer Greeting --- */
.seasonal-footer-greeting {
    text-align: center;
    padding: 12px 0;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.3px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 300000;
    display: flex;
    justify-content: center;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cookie-consent-overlay.active {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-box {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.97), rgba(25, 25, 40, 0.97));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 520px;
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.08);
    text-align: center;
}

.cookie-consent-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cookie-consent-title {
    font-family: 'Metamorphous', serif;
    font-size: 1.3rem;
    color: #f59e0b;
    margin-bottom: 10px;
}

.cookie-consent-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.cookie-consent-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 18px;
}

.cookie-consent-links a {
    color: #f59e0b;
    font-size: 0.78rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cookie-consent-links a:hover {
    opacity: 1;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cookie-btn-accept:hover {
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
}

.cookie-btn-refuse {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-refuse:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}
