/* =============================================================
   SEASON BADGE — Blue/Violet inside image card
   ============================================================= */

.season-badge-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}

/* Fumée tournante couche 1 — bleu/violet */
.season-badge-wrapper::before {
    content: '';
    position: absolute;
    inset: -50%;
    border-radius: 40px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(60, 80, 220, 0.35) 10%,
        rgba(100, 60, 255, 0.20) 20%,
        transparent 30%,
        rgba(40, 60, 200, 0.30) 45%,
        rgba(80, 50, 230, 0.18) 55%,
        transparent 65%,
        rgba(50, 70, 210, 0.28) 80%,
        rgba(90, 60, 240, 0.15) 90%,
        transparent 100%
    );
    filter: blur(12px);
    animation: seasonSmokeRotate1 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Fumée tournante couche 2 */
.season-badge-wrapper::after {
    content: '';
    position: absolute;
    inset: -40%;
    border-radius: 32px;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(120, 60, 255, 0.28) 15%,
        rgba(60, 40, 200, 0.15) 25%,
        transparent 40%,
        rgba(100, 50, 240, 0.30) 55%,
        rgba(50, 30, 190, 0.16) 70%,
        transparent 80%,
        rgba(130, 70, 255, 0.22) 90%,
        transparent 100%
    );
    filter: blur(10px);
    animation: seasonSmokeRotate2 12s linear infinite reverse;
    z-index: 1;
    pointer-events: none;
}

/* Halo bleu/violet interne */
.season-smoke-halo {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(
        ellipse at center,
        rgba(80, 60, 255, 0.15) 0%,
        rgba(60, 40, 200, 0.08) 50%,
        transparent 80%
    );
    filter: blur(8px);
    z-index: 0;
    animation: seasonHaloPulse 5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes seasonSmokeRotate1 {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.04); }
    to   { transform: rotate(360deg) scale(1); }
}

@keyframes seasonSmokeRotate2 {
    from { transform: rotate(0deg) scale(1.02); }
    50%  { transform: rotate(180deg) scale(0.97); }
    to   { transform: rotate(360deg) scale(1.02); }
}

@keyframes seasonHaloPulse {
    0%   { opacity: 0.5; transform: scale(0.96); }
    100% { opacity: 1;   transform: scale(1.05); }
}

/* Conteneur intérieur */
.season-inner {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            135deg,
            rgba(15, 15, 60, 0.18) 0%,
            rgba(8, 8, 45, 0.25) 40%,
            rgba(20, 15, 55, 0.18) 100%
        );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow:
        inset 0  1px 0 0 rgba(100, 140, 255, 0.15),
        inset 0 -1px 0 0 rgba(0,   0,   0,   0.15),
        0 2px 12px rgba(0, 0, 0, 0.30);
    text-align: center;
}

/* Ligne lumineuse bleue en haut */
.season-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(100, 140, 255, 0.50) 25%,
        rgba(140, 170, 255, 0.80) 50%,
        rgba(100, 140, 255, 0.50) 75%,
        transparent
    );
    z-index: 5;
    pointer-events: none;
    animation: seasonGlowPulse 3s ease-in-out infinite alternate;
}

/* Ligne violet/bleu en bas */
.season-inner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18%; right: 18%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(130, 100, 255, 0.35) 30%,
        rgba(100, 140, 255, 0.50) 50%,
        rgba(130, 100, 255, 0.35) 70%,
        transparent
    );
    z-index: 5;
    pointer-events: none;
    animation: seasonGlowPulse 4s ease-in-out infinite alternate-reverse;
}

@keyframes seasonGlowPulse {
    0%   { opacity: 0.5; }
    100% { opacity: 1.0; }
}

/* Canvas aurora saison */
.season-aurora {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Texte français */
.season-text {
    font-family: 'Passion One', sans-serif;
    font-weight: 400;
    font-size: clamp(0.82rem, 3.8vw, 1.10rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: linear-gradient(
        180deg,
        rgba(210, 230, 255, 1.0) 0%,
        rgba(100, 180, 255, 1.0) 40%,
        rgba(60, 130, 255, 1.0) 70%,
        rgba(40, 100, 240, 1.0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 0 10px rgba(60, 140, 255, 0.60))
        drop-shadow(0 0 24px rgba(40, 100, 255, 0.30))
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.90));
    padding: 12px 26px;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
    display: block;
    pointer-events: none;
}

/* ===== DIAMOND DIVIDER ===== *//* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

body {
    background: radial-gradient(ellipse at 60% 20%, #3d1f8a 0%, #1e1145 35%, #0f0825 70%, #060310 100%);
    color: #ffffff;
    position: relative;
}

/* ===== CANVAS GRID ===== */
#gridCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== AMBIENT GLOWS ===== */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
}
.glow-1 { top: -15%; right: -5%; width: 600px; height: 600px; background: rgba(100, 30, 160, 0.20); animation: pulse 8s ease-in-out infinite alternate; }
.glow-2 { bottom: 5%; left: -10%; width: 450px; height: 450px; background: rgba(80, 20, 200, 0.15); animation: pulse 10s ease-in-out infinite alternate-reverse; }
.glow-3 { top: 35%; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: rgba(60, 10, 140, 0.12); animation: pulse 12s ease-in-out infinite alternate; }
.glow-4 { top: 10%; left: 20%; width: 300px; height: 300px; background: rgba(160, 60, 255, 0.08); animation: pulse 7s ease-in-out infinite alternate-reverse; }

@keyframes pulse {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.15); }
}

/* ===== FLOATING DIAMONDS ===== */
.diamond-field {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-diamond {
    position: absolute;
    border: 2px solid rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4), inset 0 0 6px rgba(139, 92, 246, 0.15);
    transform: rotate(45deg);
    animation: floatUp linear infinite;
}

.floating-diamond:nth-child(1)  { left: 5%;  width: 15px; height: 15px; animation-duration: 25s; animation-delay: 0s;    opacity: 0.75; }
.floating-diamond:nth-child(2)  { left: 12%; width: 22px; height: 22px; animation-duration: 30s; animation-delay: -5s;   opacity: 0.60; }
.floating-diamond:nth-child(3)  { left: 20%; width: 12px; height: 12px; animation-duration: 20s; animation-delay: -10s;  opacity: 0.85; }
.floating-diamond:nth-child(4)  { left: 28%; width: 18px; height: 18px; animation-duration: 28s; animation-delay: -3s;   opacity: 0.65; }
.floating-diamond:nth-child(5)  { left: 36%; width: 25px; height: 25px; animation-duration: 35s; animation-delay: -8s;   opacity: 0.55; }
.floating-diamond:nth-child(6)  { left: 44%; width: 14px; height: 14px; animation-duration: 22s; animation-delay: -15s;  opacity: 0.80; }
.floating-diamond:nth-child(7)  { left: 52%; width: 20px; height: 20px; animation-duration: 32s; animation-delay: -12s;  opacity: 0.65; }
.floating-diamond:nth-child(8)  { left: 60%; width: 10px; height: 10px; animation-duration: 18s; animation-delay: -7s;   opacity: 0.85; }
.floating-diamond:nth-child(9)  { left: 68%; width: 28px; height: 28px; animation-duration: 38s; animation-delay: -20s;  opacity: 0.50; }
.floating-diamond:nth-child(10) { left: 76%; width: 16px; height: 16px; animation-duration: 24s; animation-delay: -2s;   opacity: 0.70; }
.floating-diamond:nth-child(11) { left: 84%; width: 20px; height: 20px; animation-duration: 27s; animation-delay: -18s;  opacity: 0.65; }
.floating-diamond:nth-child(12) { left: 92%; width: 13px; height: 13px; animation-duration: 21s; animation-delay: -9s;   opacity: 0.75; }
.floating-diamond:nth-child(13) { left: 8%;  width: 18px; height: 18px; animation-duration: 29s; animation-delay: -6s;   opacity: 0.60; }
.floating-diamond:nth-child(14) { left: 17%; width: 11px; height: 11px; animation-duration: 23s; animation-delay: -14s;  opacity: 0.80; }
.floating-diamond:nth-child(15) { left: 24%; width: 24px; height: 24px; animation-duration: 36s; animation-delay: -1s;   opacity: 0.55; }
.floating-diamond:nth-child(16) { left: 33%; width: 14px; height: 14px; animation-duration: 19s; animation-delay: -11s;  opacity: 0.85; }
.floating-diamond:nth-child(17) { left: 41%; width: 20px; height: 20px; animation-duration: 31s; animation-delay: -4s;   opacity: 0.65; }
.floating-diamond:nth-child(18) { left: 49%; width: 16px; height: 16px; animation-duration: 26s; animation-delay: -16s;  opacity: 0.70; }
.floating-diamond:nth-child(19) { left: 57%; width: 30px; height: 30px; animation-duration: 40s; animation-delay: -22s;  opacity: 0.50; }
.floating-diamond:nth-child(20) { left: 65%; width: 12px; height: 12px; animation-duration: 17s; animation-delay: -8s;   opacity: 0.90; }
.floating-diamond:nth-child(21) { left: 73%; width: 22px; height: 22px; animation-duration: 33s; animation-delay: -13s;  opacity: 0.60; }
.floating-diamond:nth-child(22) { left: 80%; width: 15px; height: 15px; animation-duration: 28s; animation-delay: -19s;  opacity: 0.75; }
.floating-diamond:nth-child(23) { left: 88%; width: 18px; height: 18px; animation-duration: 23s; animation-delay: -3s;   opacity: 0.70; }
.floating-diamond:nth-child(24) { left: 96%; width: 10px; height: 10px; animation-duration: 20s; animation-delay: -17s;  opacity: 0.90; }

@keyframes floatUp {
    0%   { transform: rotate(45deg) translateY(100vh) scale(0.5); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: rotate(45deg) translateY(-100vh) scale(1.2); opacity: 0; }
}

/* ===== MAIN CONTENT ===== */
.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    text-align: center;
    gap: 16px;
}

/* ===== LOGO WRAPPER ===== */
.logo-wrapper {
    position: relative;
    width: 90vw;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== LOGO ===== */
.logo-img {
    display: block;
    width: 100%;
    height: auto;
    filter: none;
    position: relative;
    z-index: 2;
}

/* =============================================================
   TAGLINE WRAPPER — Fantasy Smoke & Glow (style image-card)
   ============================================================= */

.tagline-wrapper {
    position: relative;
    z-index: 3;
    margin-top: -32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}

/* --- Fumée tournante couche 1 — dorée, à l'intérieur --- */
.tagline-wrapper::before {
    content: '';
    position: absolute;
    inset: -50%;
    border-radius: 40px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(200, 150, 40, 0.35) 10%,
        rgba(255, 190, 60, 0.20) 20%,
        transparent 30%,
        rgba(180, 130, 20, 0.30) 45%,
        rgba(220, 170, 50, 0.18) 55%,
        transparent 65%,
        rgba(190, 140, 30, 0.28) 80%,
        rgba(210, 160, 45, 0.15) 90%,
        transparent 100%
    );
    filter: blur(12px);
    animation: taglineSmokeRotate1 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* --- Fumée tournante couche 2 — dorée, à l'intérieur --- */
.tagline-wrapper::after {
    content: '';
    position: absolute;
    inset: -40%;
    border-radius: 32px;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(230, 180, 60, 0.28) 15%,
        rgba(180, 130, 30, 0.15) 25%,
        transparent 40%,
        rgba(210, 160, 45, 0.30) 55%,
        rgba(170, 120, 20, 0.16) 70%,
        transparent 80%,
        rgba(240, 190, 70, 0.22) 90%,
        transparent 100%
    );
    filter: blur(10px);
    animation: taglineSmokeRotate2 12s linear infinite reverse;
    z-index: 1;
    pointer-events: none;
}

/* --- Halo doré interne --- */
.tagline-smoke-halo {
    display: none;
}

@keyframes taglineSmokeRotate1 {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.04); }
    to   { transform: rotate(360deg) scale(1); }
}

@keyframes taglineSmokeRotate2 {
    from { transform: rotate(0deg) scale(1.02); }
    50%  { transform: rotate(180deg) scale(0.97); }
    to   { transform: rotate(360deg) scale(1.02); }
}

@keyframes taglineHaloPulse {
    0%   { opacity: 0.5; transform: scale(0.96); }
    100% { opacity: 1;   transform: scale(1.05); }
}

/* --- Conteneur intérieur fantasy --- */
.tagline-inner {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    isolation: isolate;

    /* Fond sombre avec touche chaude */
    background:
        linear-gradient(
            135deg,
            rgba(35, 15, 60, 0.18) 0%,
            rgba(20, 8, 45, 0.25) 40%,
            rgba(40, 20, 50, 0.18) 100%
        );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* Double bordure intérieure : or + violet */
    box-shadow:
        inset 0  1px 0 0 rgba(255, 200, 100, 0.20),
        inset 0 -1px 0 0 rgba(0,   0,   0,   0.30),
        inset 1px 0 0 0  rgba(255, 200, 100, 0.08),
        inset -1px 0 0 0 rgba(255, 200, 100, 0.08),
        0 4px 30px rgba(0, 0, 0, 0.60),
        0 0 50px rgba(255, 170, 50, 0.08),
        0 0 80px rgba(120, 60, 200, 0.06);
}

/* Ligne dorée lumineuse en haut */
.tagline-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 200, 100, 0.50) 25%,
        rgba(255, 230, 160, 0.80) 50%,
        rgba(255, 200, 100, 0.50) 75%,
        transparent
    );
    z-index: 5;
    pointer-events: none;
    animation: topGlowPulse 3s ease-in-out infinite alternate;
}

/* Ligne violet/ambre en bas */
.tagline-inner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18%; right: 18%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(180, 130, 255, 0.35) 30%,
        rgba(255, 190, 100, 0.50) 50%,
        rgba(180, 130, 255, 0.35) 70%,
        transparent
    );
    z-index: 5;
    pointer-events: none;
    animation: topGlowPulse 4s ease-in-out infinite alternate-reverse;
}

@keyframes topGlowPulse {
    0%   { opacity: 0.5; }
    100% { opacity: 1.0; }
}

/* Canvas aurora derrière le texte */
.tagline-aurora {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== TAGLINE TEXTE — Fantasy doré ===== */
.tagline {
    font-family: 'Passion One', sans-serif;
    font-weight: 400;
    font-size: clamp(0.88rem, 4.2vw, 1.22rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    /* Dégradé doré sur le texte */
    background: linear-gradient(
        180deg,
        rgba(255, 240, 200, 1.0) 0%,
        rgba(255, 210, 130, 1.0) 40%,
        rgba(220, 170, 80,  1.0) 70%,
        rgba(200, 150, 60,  1.0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 0 8px rgba(255, 180, 60, 0.50))
        drop-shadow(0 0 20px rgba(255, 150, 30, 0.25))
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.90));
    padding: 14px 30px;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
    display: block;
    pointer-events: none;
}

/* ===== IMAGE CARD WRAPPER ===== */
.image-card-wrapper {
    position: relative;
    width: 90vw;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card-wrapper::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(75, 15, 160, 0.55) 10%,
        rgba(115, 45, 160, 0.30) 20%,
        transparent 30%,
        rgba(45, 5, 120, 0.50) 45%,
        rgba(95, 30, 155, 0.25) 55%,
        transparent 65%,
        rgba(60, 10, 135, 0.45) 80%,
        rgba(80, 20, 150, 0.20) 90%,
        transparent 100%
    );
    filter: blur(25px);
    animation: smokeRotate1 8s linear infinite;
    z-index: -1;
}

.image-card-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 40px;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(130, 40, 160, 0.40) 15%,
        rgba(60, 10, 120, 0.20) 25%,
        transparent 40%,
        rgba(95, 20, 150, 0.45) 55%,
        rgba(40, 5, 105, 0.25) 70%,
        transparent 80%,
        rgba(110, 30, 150, 0.35) 90%,
        transparent 100%
    );
    filter: blur(18px);
    animation: smokeRotate2 12s linear infinite reverse;
    z-index: -1;
}

.smoke-halo {
    position: absolute;
    inset: -50px;
    border-radius: 60px;
    background: radial-gradient(
        ellipse at center,
        rgba(120, 40, 255, 0.25) 0%,
        rgba(80, 20, 180, 0.15) 40%,
        transparent 70%
    );
    filter: blur(30px);
    z-index: -2;
    animation: haloPulse 5s ease-in-out infinite alternate;
}

/* ===== IMAGE CARD ===== */
.image-card {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(160, 100, 255, 0.3),
        0 0 30px rgba(120, 40, 220, 0.4),
        0 12px 40px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.image-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  rgba(50, 5, 110, 0.80) 0%, transparent 30%, transparent 70%, rgba(50, 5, 110, 0.80) 100%),
        linear-gradient(to bottom, rgba(50, 5, 110, 0.80) 0%, transparent 30%, transparent 70%, rgba(50, 5, 110, 0.80) 100%);
    border-radius: 24px;
}

/* ===== DIAMOND DIVIDER ===== */
.diamond-divider {
    display: flex;
    align-items: center;
    gap: 16px;
}

.diamond-divider span {
    width: 10px; height: 10px;
    background: rgba(160, 100, 255, 0.6);
    box-shadow: 0 0 10px rgba(160, 100, 255, 0.5);
    transform: rotate(45deg);
    display: block;
    animation: diamondPulse 2s ease-in-out infinite alternate;
}

.diamond-divider span:nth-child(2) {
    width: 14px; height: 14px;
    background: rgba(180, 120, 255, 0.8);
    box-shadow: 0 0 15px rgba(180, 120, 255, 0.6);
    animation-delay: 0.3s;
}

.diamond-divider span:nth-child(3) { animation-delay: 0.6s; }

@keyframes diamondPulse {
    0%   { box-shadow: 0 0 6px rgba(160,100,255,0.4); }
    100% { box-shadow: 0 0 18px rgba(180,120,255,0.8); }
}

.diamond-divider::before,
.diamond-divider::after {
    content: '';
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 100, 255, 0.5), transparent);
}

/* ===== QR CODE ===== */

.qr-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Bordure animée pulsante — entoure juste la card */
.qr-card-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-border-anim {
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: 0;
    overflow: hidden;
}

.qr-border-anim::before {
    content: '';
    position: absolute;
    inset: -80%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(100, 180, 255, 0.0)  8%,
        rgba(100, 180, 255, 0.70) 15%,
        rgba(160, 210, 255, 0.95) 19%,
        rgba(100, 180, 255, 0.70) 23%,
        rgba(100, 180, 255, 0.0)  30%,
        transparent 40%,
        rgba(140, 100, 255, 0.0)  50%,
        rgba(140, 100, 255, 0.55) 56%,
        rgba(180, 150, 255, 0.75) 59%,
        rgba(140, 100, 255, 0.55) 62%,
        rgba(140, 100, 255, 0.0)  70%,
        transparent 80%,
        rgba(80, 160, 255, 0.0)   86%,
        rgba(80, 160, 255, 0.50)  90%,
        rgba(80, 160, 255, 0.0)   94%,
        transparent 100%
    );
    animation: qrBorderSpin 3s linear infinite;
}

.qr-border-anim::after {
    content: '';
    position: absolute;
    inset: -80%;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(120, 160, 255, 0.0)  12%,
        rgba(120, 160, 255, 0.45) 17%,
        rgba(120, 160, 255, 0.0)  22%,
        transparent 35%,
        rgba(160, 120, 255, 0.0)  52%,
        rgba(160, 120, 255, 0.40) 56%,
        rgba(160, 120, 255, 0.0)  60%,
        transparent 100%
    );
    animation: qrBorderSpin 5s linear infinite reverse;
    opacity: 0.8;
}

@keyframes qrBorderSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Card QR */
.qr-card {
    position: relative;
    z-index: 1;
    width: 160px;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    box-shadow:
        0 0 20px rgba(80, 140, 255, 0.25),
        0 0 50px rgba(80, 140, 255, 0.10),
        0 6px 24px rgba(0, 0, 0, 0.40);
    animation: qrPulseGlow 2.5s ease-in-out infinite alternate;
}

.qr-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes qrPulseGlow {
    0%   { box-shadow: 0 0 15px rgba(80, 140, 255, 0.20), 0 0 40px rgba(80, 140, 255, 0.08), 0 6px 24px rgba(0, 0, 0, 0.40); }
    100% { box-shadow: 0 0 25px rgba(80, 160, 255, 0.40), 0 0 60px rgba(100, 160, 255, 0.18), 0 6px 24px rgba(0, 0, 0, 0.40); }
}

/* Label QR */
.qr-label {
    font-family: 'Passion One', sans-serif;
    font-weight: 400;
    font-size: clamp(0.7rem, 3vw, 0.88rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: linear-gradient(
        180deg,
        rgba(210, 230, 255, 1.0) 0%,
        rgba(100, 180, 255, 1.0) 50%,
        rgba(60, 130, 255, 1.0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 0 8px rgba(60, 140, 255, 0.45))
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.80));
    animation: qrLabelPulse 2s ease-in-out infinite alternate;
}

@keyframes qrLabelPulse {
    0%   { opacity: 0.7; }
    100% { opacity: 1.0; }
}

/* Bouton Google Play */
.playstore-btn {
    display: inline-block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.playstore-btn img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.40));
}

.playstore-btn:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 0 14px rgba(80, 160, 255, 0.40));
}

.playstore-btn:active {
    transform: scale(0.97);
}

/* ===== ANIMATIONS ===== */
@keyframes smokeRotate1 {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.05); }
    to   { transform: rotate(360deg) scale(1); }
}

@keyframes smokeRotate2 {
    from { transform: rotate(0deg) scale(1.02); }
    50%  { transform: rotate(180deg) scale(0.97); }
    to   { transform: rotate(360deg) scale(1.02); }
}

@keyframes haloPulse {
    0%   { opacity: 0.6; transform: scale(0.97); }
    100% { opacity: 1;   transform: scale(1.04); }
}

/* ===== MOBILE — petits écrans ===== */
@media (max-width: 480px) {
    .tagline {
        font-size: clamp(0.85rem, 4.5vw, 1.15rem);
        letter-spacing: 0.14em;
        padding: 14px 26px;
    }

    .tagline-wrapper {
        margin-top: -12px;
    }

    .tagline-wrapper::before { inset: -60%; }
    .tagline-wrapper::after  { inset: -50%; }

    .image-card img {
        transform: scale(1.4);
        object-position: center 35%;
    }

    .season-badge-wrapper {
        bottom: 16px;
    }

    .season-text {
        font-size: clamp(0.72rem, 3.5vw, 0.95rem);
        padding: 10px 20px;
    }

    .qr-card {
        width: 130px;
        height: 130px;
        padding: 10px;
    }

    .playstore-btn img {
        height: 44px;
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
    .content { gap: 28px; padding: 40px 20px; }
    .logo-wrapper { width: 46vw; max-width: 460px; }

    .tagline {
        font-size: 1.28rem;
        letter-spacing: 0.19em;
        padding: 15px 44px;
    }

    .tagline-wrapper::before { inset: -45%; }
    .tagline-wrapper::after  { inset: -35%; }

    .image-card-wrapper {
        width: 46vw;
        max-width: 460px;
        aspect-ratio: unset;
        height: 320px;
    }

    .season-badge-wrapper {
        bottom: 20px;
    }

    .season-text {
        font-size: 1.15rem;
        padding: 13px 32px;
    }

    .qr-card {
        width: 180px;
        height: 180px;
        padding: 14px;
    }

    .playstore-btn img {
        height: 58px;
    }
}

/* =============================================================
   PRIVACY LINK BUTTON — Animated shield
   ============================================================= */

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Passion One', sans-serif;
    font-weight: 400;
    padding: 10px 24px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;

    /* Glass background */
    background:
        linear-gradient(
            135deg,
            rgba(25, 15, 60, 0.35) 0%,
            rgba(15, 10, 45, 0.45) 50%,
            rgba(30, 18, 65, 0.35) 100%
        );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(140, 100, 255, 0.15);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
        0 4px 16px rgba(0, 0, 0, 0.30);
}

.privacy-link:hover {
    border-color: rgba(160, 120, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
        0 4px 20px rgba(0, 0, 0, 0.30),
        0 0 30px rgba(120, 80, 255, 0.15);
    transform: translateY(-2px);
}

.privacy-link:active {
    transform: translateY(0) scale(0.98);
}

/* Top highlight */
.privacy-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(180, 150, 255, 0.35) 30%,
        rgba(200, 170, 255, 0.55) 50%,
        rgba(180, 150, 255, 0.35) 70%,
        transparent
    );
    opacity: 0.6;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.privacy-link:hover::before {
    opacity: 1;
}

/* ===== Shield icon wrapper ===== */
.privacy-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.privacy-shield {
    position: relative;
    z-index: 2;
    color: rgba(170, 150, 255, 0.85);
    filter: drop-shadow(0 0 4px rgba(140, 100, 255, 0.40));
    animation: shieldFloat 3s ease-in-out infinite alternate;
    transition: color 0.3s ease, filter 0.3s ease;
}

.privacy-link:hover .privacy-shield {
    color: rgba(200, 180, 255, 1);
    filter: drop-shadow(0 0 8px rgba(160, 120, 255, 0.60));
}

/* Pulsing ring behind shield */
.privacy-icon-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(140, 100, 255, 0.25);
    animation: shieldPulseRing 2.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shieldFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-2px); }
}

@keyframes shieldPulseRing {
    0%   { transform: scale(0.85); opacity: 0; border-color: rgba(140, 100, 255, 0.0); }
    40%  { opacity: 1; border-color: rgba(160, 120, 255, 0.35); }
    100% { transform: scale(1.35); opacity: 0; border-color: rgba(140, 100, 255, 0.0); }
}

/* ===== Text ===== */
.privacy-text {
    font-size: clamp(0.72rem, 2.8vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(
        180deg,
        rgba(210, 200, 240, 0.80) 0%,
        rgba(160, 140, 220, 0.65) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.60));
    transition: filter 0.3s ease;
}

.privacy-link:hover .privacy-text {
    background: linear-gradient(
        180deg,
        rgba(230, 220, 255, 0.95) 0%,
        rgba(180, 160, 240, 0.85) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    filter:
        drop-shadow(0 0 6px rgba(140, 100, 255, 0.30))
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.60));
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .privacy-link {
        padding: 9px 20px;
        gap: 8px;
    }
}

@media (min-width: 769px) {
    .privacy-link {
        padding: 11px 28px;
        gap: 12px;
    }
}