/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0d0d22;
    --bg-card: #12122a;
    --bg-card-hover: #1a1a3a;
    --text-primary: #ffffff;
    --text-secondary: #c8c8e0;
    --text-muted: #7878a0;
    --accent: #ef4444;
    --accent-light: #ff6b6b;
    --accent-glow: rgba(239, 68, 68, 0.3);
    --gold: #ffffff;
    --gold-light: #e8e8ff;
    --gold-glow: rgba(255, 255, 255, 0.2);
    --electric: #3b82f6;
    --electric-light: #60a5fa;
    --electric-glow: rgba(59, 130, 246, 0.25);
    --red: #ef4444;
    --bleu: #1e3a8a;
    --blanc: #ffffff;
    --rouge: #dc2626;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    border-left: 2px solid;
    border-right: 2px solid;
    border-image: linear-gradient(180deg, #3b82f6 0%, rgba(255,255,255,0.1) 30%, #ef4444 50%, rgba(255,255,255,0.1) 70%, #3b82f6 100%) 1;
    box-shadow:
        inset 8px 0 60px rgba(59, 130, 246, 0.08),
        inset -8px 0 60px rgba(239, 68, 68, 0.08);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.gold-text {
    color: var(--gold);
}

.accent {
    color: var(--accent-light);
}

/* ========== BADGE CART (mini carte en haut) ========== */
.badge-cart {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge-cart:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.badge-cart-count {
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-img {
    height: 110px;
    width: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.logo-text {
    background: linear-gradient(135deg, #3b82f6, #ffffff, #ef4444);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chromeShift 4s ease-in-out infinite;
}

/* ===== LOGO VXC PREMIUM ===== */
.logo-vxc {
    display: inline-flex;
    gap: 2px;
    letter-spacing: 0.15em;
    position: relative;
}

.logo-vxc .logo-v,
.logo-vxc .logo-x,
.logo-vxc .logo-c {
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.logo-vxc .logo-v {
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 40%, #1e40af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    animation: logoPulseV 3s ease-in-out infinite;
}

.logo-vxc .logo-x {
    background: linear-gradient(180deg, #f0f0ff 0%, #ffffff 50%, #d4d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-style: italic;
    transform: scaleX(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    animation: logoGlowX 2.5s ease-in-out infinite;
}

.logo-vxc .logo-c {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 40%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    animation: logoPulseC 3s ease-in-out infinite 0.5s;
}

.logo-vxc:hover .logo-v,
.logo-vxc:hover .logo-x,
.logo-vxc:hover .logo-c {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    transform: translateY(-1px);
}

.logo-vxc:hover .logo-x {
    transform: scaleX(1.15) translateY(-1px);
}

@keyframes logoPulseV {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.3)); }
    50% { filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.6)); }
}

@keyframes logoGlowX {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.7)); }
}

@keyframes logoPulseC {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.3)); }
    50% { filter: drop-shadow(0 0 14px rgba(239, 68, 68, 0.6)); }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #ffffff, #ef4444);
    transition: width 0.3s;
}

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

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

.nav-cta {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 90px 60px 80px;
}

/* ========== GLOW COINS ========== */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: neonPulse 3s ease-in-out infinite;
    filter: blur(20px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.35) 0%, rgba(239, 68, 68, 0.15) 30%, rgba(239, 68, 68, 0.05) 50%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
    animation: neonPulse 3s ease-in-out infinite 1.5s;
}

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

/* ========== VIP BADGE ========== */
.vip-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out both;
    width: 100%;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 50px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0px;
    background: linear-gradient(135deg, rgba(10, 10, 40, 0.9), rgba(59, 130, 246, 0.08), rgba(239, 68, 68, 0.06));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow:
        0 0 40px rgba(59, 130, 246, 0.12),
        0 0 80px rgba(239, 68, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 60px rgba(59, 130, 246, 0.04);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
}

.vip-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 16px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd, #ffffff, #fca5a5, #ef4444, #60a5fa);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
    text-shadow: none;
}

@keyframes flagShift {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 50% 50%; }
    66% { background-position: 100% 50%; }
}

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

.vip-star {
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.7));
}

.vip-amount-hero {
    margin-top: 14px;
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ef4444, #ffffff, #3b82f6, #ffffff, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.3));
}

.vip-sub {
    margin-top: 8px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.particles {
    display: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.vault-glow {
    display: none;
}


@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
}

.hero-content {
    text-align: left;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 36px 32px;
    border-radius: 14px;
    flex: 1;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.08),
        0 0 60px rgba(59, 130, 246, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.8), rgba(59, 130, 246, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-product {
    display: flex;
    align-items: stretch;
    flex: 1;
    max-width: 460px;
}

.product-card {
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.8), rgba(239, 68, 68, 0.02));
    box-shadow: 
        0 0 20px rgba(239, 68, 68, 0.06),
        0 0 60px rgba(239, 68, 68, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.product-card:hover {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 
        0 0 25px rgba(239, 68, 68, 0.15),
        0 0 60px rgba(59, 130, 246, 0.06);
}

.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #000;
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 0;
    text-align: center;
    letter-spacing: 2px;
}

.product-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3b82f6, #ffffff, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
}

.product-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}

.product-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.product-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 22px 0;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(239,68,68,0.06));
    border: 1px solid rgba(180,195,215,0.12);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-feature:hover {
    border-color: rgba(59,130,246,0.35);
    transform: translateX(2px);
}

.product-feature .feature-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(239,68,68,0.15));
    border: 1px solid rgba(59,130,246,0.3);
    color: #fff;
    white-space: nowrap;
}

.product-feature .feature-value {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.3;
}

.check-square {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #ffffff, #ef4444);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3), 0 0 10px rgba(59, 130, 246, 0.3);
    position: relative;
    margin-top: 6px;
}

.check-square::after {
    display: none;
}

/* ========== BADGE FLOW DIAGRAM (futuriste) ========== */
.badge-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 6px 0 22px;
    padding: 14px 4px 6px;
    position: relative;
}

.flow-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 22px;
    border: 1px solid rgba(59, 130, 246, 0.55);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(239, 68, 68, 0.14)),
        rgba(10, 10, 12, 0.92);
    box-shadow:
        0 0 24px rgba(59, 130, 246, 0.35),
        inset 0 0 14px rgba(255, 255, 255, 0.06);
}

.flow-root .flow-tag {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.flow-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.flow-tree {
    width: 100%;
    height: 56px;
    margin: 6px 0 0;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.5));
}

.flow-tree path {
    stroke-dasharray: 6 4;
    animation: flowDash 1.6s linear infinite;
}

@keyframes flowDash {
    to { stroke-dashoffset: -20; }
}

.flow-tree circle {
    filter: drop-shadow(0 0 4px currentColor);
    animation: flowBlink 1.8s ease-in-out infinite;
}

@keyframes flowBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.flow-branch {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.flow-leaf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 6px;
    margin: 0 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(239, 68, 68, 0.06)),
        rgba(10, 10, 12, 0.75);
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.12);
    text-align: center;
    min-height: 92px;
}

.flow-leaf .flow-tag {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(239, 68, 68, 0.55));
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.flow-leaf .flow-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
}

@media (max-width: 480px) {
    .flow-tree { height: 60px; }
    .flow-leaf .flow-label { font-size: 0.66rem; }
    .flow-leaf { padding: 8px 4px; min-height: 84px; }

    .product-features { gap: 6px; margin-bottom: 16px; }
    .product-feature { padding: 7px 10px; gap: 8px; border-radius: 8px; }
    .product-feature .feature-label { font-size: 0.55rem; padding: 2px 6px; letter-spacing: 1.5px; }
    .product-feature .feature-value { font-size: 0.72rem; line-height: 1.25; }
}

.product-pack-selector {
    margin-bottom: 16px;
}

.pack-selector-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pack-option {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.pack-option:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.pack-option.active {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.pack-radio {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.pack-option.active .pack-radio {
    border-color: #fff;
    background: #fff;
    box-shadow: inset 0 0 0 3px #000;
}

.pack-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.pack-details strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.pack-price {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.pack-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.tshirt-options {
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.product-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    margin-bottom: 16px;
}

.product-info {
    width: 100%;
    text-align: left;
}

.product-name {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.product-includes {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.product-label {
    margin-top: 12px;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), transparent, rgba(239, 68, 68, 0.3), transparent);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: neonBorderMove 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.7;
}

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

.hero-right {
    display: flex;
    align-items: stretch;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.04),
        0 0 60px rgba(255, 255, 255, 0.02),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05), rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: neonBorderMove 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-vault-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #c0c0c0;
    margin-bottom: 18px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title .g {
    color: #ffffff;
    text-shadow: none;
}

.hero-title .w {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

.title-line.accent {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: badgeVaultShine 4s linear infinite, badgeVaultGlow 2.6s ease-in-out infinite;
    text-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}

.title-line.gold {
    background: linear-gradient(135deg, #c0c0c0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions .btn-secondary {
    padding: 10px 18px;
    font-size: 0.75rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35), 0 0 40px rgba(239, 68, 68, 0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.45), 0 0 60px rgba(239, 68, 68, 0.15), 0 0 80px rgba(59, 130, 246, 0.08);
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3), 0 0 30px rgba(239, 68, 68, 0.08); }
    50% { box-shadow: 0 4px 40px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.15), 0 0 80px rgba(59, 130, 246, 0.08); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-price {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
}

.hero-contact-btn {
    margin-top: 10px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    padding: 14px 32px;
}

.hero-contact-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* ========== HERO AMOUNT SHOWCASE ========== */
.hero-amount-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 8px 0 12px;
    animation: fadeInUp 0.8s ease-out 0.55s both;
}

.amount-display {
    position: relative;
    z-index: 2;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    overflow: visible;
}

.amount-value {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ef4444, #ffffff, #3b82f6, #ffffff, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
    white-space: nowrap;
}

.amount-glow-ring {
    display: none;
}

.amount-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    z-index: 3;
    pointer-events: none;
    animation: scanLine 4s ease-in-out infinite;
}

@keyframes scanLine {
    0% { left: -40%; }
    100% { left: 120%; }
}

/* ========== HERO STATS ========== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat {
    text-align: center;
    min-width: 100px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0px;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ========== SCROLL INDICATOR ========== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(255, 255, 255, 0.05), rgba(239, 68, 68, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--bg-secondary);
}

.how-it-works .section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #3b82f6, #93c5fd, #ffffff, #fca5a5, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.25));
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: left 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.1), 0 0 30px rgba(59, 130, 246, 0.06), inset 0 1px 0 rgba(255,255,255,0.05);
}

.step-card.highlight {
    border-color: rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, var(--bg-card), rgba(239, 68, 68, 0.03));
}

.step-card.highlight:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.1), 0 0 30px rgba(239, 68, 68, 0.06), inset 0 1px 0 rgba(255,255,255,0.05);
}

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #3b82f6, #ffffff, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
}

.step-card.highlight .step-number {
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.5));
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stepsTransparencyShine 5s linear infinite, stepsTransparencyGlow 2.8s ease-in-out infinite;
}

.step-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stepsTransparencyShine 5s linear infinite, stepsTransparencyGlow 2.8s ease-in-out infinite;
}

.step-card p strong {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.step-card p.step-tagline {
    margin-top: auto;
    padding-top: 22px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stepsTransparencyShine 5s linear infinite, stepsTransparencyGlow 2.8s ease-in-out infinite;
}

.step-connector {
    display: none;
}

/* CTA urgence */
.steps-cta {
    text-align: center;
    margin-top: 40px;
}

.steps-warning {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 0.03), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: inline-block;
    letter-spacing: 0.3px;
}

.steps-transparency {
    font-size: 0.85rem;
    margin-top: 14px;
    font-style: italic;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: stepsTransparencyShine 5s linear infinite, stepsTransparencyGlow 2.8s ease-in-out infinite;
}

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

@keyframes stepsTransparencyGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.45)); }
    50% { filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.45)); }
}

.step-link {
    color: #60a5fa;
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.5);
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.step-link:hover { color: #93c5fd; }

.steps-done {
    margin-top: 18px;
    text-align: center;
}

.steps-done-stamp {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    letter-spacing: 8px;
    padding: 6px 22px;
    background: linear-gradient(135deg, #ef4444, #ffffff, #3b82f6, #ffffff, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: doneShift 4s ease-in-out infinite, donePulse 2.4s ease-in-out infinite;
    text-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
    border-top: 2px solid rgba(255, 255, 255, 0.18);
    border-bottom: 2px solid rgba(255, 255, 255, 0.18);
    transform: skewX(-6deg);
}

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

@keyframes donePulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)); }
    50% { filter: drop-shadow(0 0 22px rgba(59, 130, 246, 0.55)); }
}

/* ========== ARTEFACT GLITCH TITLE ========== */
.artefact-glitch {
    position: relative;
    display: inline-block;
    color: #ffffff;
    animation: artefactFade 4.2s ease-in-out infinite;
    text-shadow:
        0 0 12px rgba(59, 130, 246, 0.55),
        0 0 28px rgba(59, 130, 246, 0.35);
}

.artefact-glitch::before,
.artefact-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.85;
}

.artefact-glitch::before {
    color: #ef4444;
    animation: artefactGlitch1 3.6s steps(1) infinite;
    mix-blend-mode: screen;
}

.artefact-glitch::after {
    color: #3b82f6;
    animation: artefactGlitch2 3.6s steps(1) infinite;
    mix-blend-mode: screen;
}

@keyframes artefactFade {
    0%, 8%, 100% { opacity: 1; transform: translateY(0); }
    14% { opacity: 0; transform: translateY(-4px); }
    20% { opacity: 1; transform: translateY(0); }
    52% { opacity: 1; }
    58% { opacity: 0.15; }
    64% { opacity: 1; }
}

@keyframes artefactGlitch1 {
    0%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
    10% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 0); }
    20% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
    55% { clip-path: inset(40% 0 40% 0); transform: translate(-3px, 1px); }
    60% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}

@keyframes artefactGlitch2 {
    0%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
    12% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    22% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
    57% { clip-path: inset(20% 0 60% 0); transform: translate(3px, 0); }
    62% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
}

/* ========== VAULT SECTION — COFFRE 3D RÉALISTE ========== */
.vault-section {
    padding: 100px 0;
}

.vault-play {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Coffre 3D centré en haut ===== */
.vault-visual-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    margin-bottom: 10px;
}

/* ===== Bloc Mission Jackpot (à côté du coffre) ===== */
.mission-jackpot {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0f1a 0%, #050810 100%);
    border: 1px solid rgba(59, 130, 246, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255,255,255,0.04);
    isolation: isolate;
    z-index: 2;
    pointer-events: none;
}
.mission-jackpot::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(59,130,246,0.15), transparent 60%),
        radial-gradient(120% 80% at 50% 100%, rgba(239,68,68,0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.mission-jackpot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 3px,
        rgba(255,255,255,0.012) 3px,
        rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
    z-index: 0;
}
.mj-silhouette {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: auto;
    z-index: 1;
    opacity: 0.78;
    filter: drop-shadow(0 0 18px rgba(0,0,0,0.55));
}
.mj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,8,16,0.05) 0%, rgba(5,8,16,0.4) 60%, rgba(5,8,16,0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .mission-jackpot {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 140px;
        height: 200px;
        margin: 0 auto 16px;
    }
}

.vault-ambient-glow {
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(220, 230, 245, 0.18) 0%,
        rgba(180, 200, 230, 0.10) 35%,
        rgba(140, 170, 210, 0.04) 60%,
        transparent 75%);
    filter: blur(45px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
    animation: vaultNeonHalo 4.5s ease-in-out infinite;
}

@keyframes vaultNeonHalo {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
        filter: blur(45px);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
        filter: blur(55px);
    }
}

/* ===== SCÈNE 3D ===== */
.vault-3d-scene {
    perspective: 900px;
    perspective-origin: 50% 46%;
    width: 300px;
    height: 320px;
    position: relative;
    z-index: 1;
}

.vault-3d-body {
    width: 300px; height: 320px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-14deg) rotateX(3deg);
    animation: vaultFloat 8s ease-in-out infinite;
}

@keyframes vaultFloat {
    0%, 100% { transform: rotateY(-14deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-14deg) rotateX(3deg) translateY(-8px); }
}

.vault-face {
    position: absolute;
    backface-visibility: hidden;
}

/* ===== PORTE (face avant) — 300×320, Z+70 ===== */
.vault-front {
    width: 300px; height: 320px;
    top: 0; left: 0;
    transform: translateZ(70px);
    background:
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(180,195,215,0.005) 3px, rgba(180,195,215,0.005) 6px),
        linear-gradient(175deg, #2e3138 0%, #22252a 20%, #1a1c20 50%, #16181c 80%, #1a1c20 100%);
    border: 4px solid;
    border-image: linear-gradient(180deg, rgba(200,210,225,0.55), rgba(180,195,215,0.12), rgba(200,210,225,0.35)) 1;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow:
        inset 0 2px 0 rgba(240,245,250,0.1),
        inset 0 -2px 0 rgba(0,0,0,0.6),
        0 25px 80px rgba(0,0,0,0.7),
        0 0 100px rgba(140,160,185,0.04);
    overflow: hidden;
    z-index: 5;
    animation: vaultNeonEdge 4.5s ease-in-out infinite;
}

@keyframes vaultNeonEdge {
    0%, 100% {
        box-shadow:
            inset 0 2px 0 rgba(240,245,250,0.1),
            inset 0 -2px 0 rgba(0,0,0,0.6),
            0 25px 80px rgba(0,0,0,0.7),
            0 0 22px rgba(200, 215, 240, 0.18),
            0 0 60px rgba(180, 200, 230, 0.10);
    }
    50% {
        box-shadow:
            inset 0 2px 0 rgba(240,245,250,0.14),
            inset 0 -2px 0 rgba(0,0,0,0.6),
            0 25px 80px rgba(0,0,0,0.7),
            0 0 38px rgba(220, 230, 245, 0.32),
            0 0 90px rgba(200, 215, 240, 0.20);
    }
}

/* Cadre extérieur de la porte */
.vault-door-outer {
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(180,195,215,0.1);
    border-radius: 3px;
    pointer-events: none;
}

/* Panneau intérieur — très subtil */
.vault-door-inner {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(180,195,215,0.04);
    border-radius: 2px;
    pointer-events: none;
}

.vault-nameplate {
    position: absolute;
    top: 32px;
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(180,195,215,0.35);
    border: 1px solid rgba(180,195,215,0.12);
    padding: 4px 16px;
    border-radius: 2px;
    background: rgba(180,195,215,0.03);
    text-shadow: 0 0 8px rgba(140,160,185,0.1);
}

/* ===== FACE DROITE — 140×320, pliée depuis le bord droit ===== */
.vault-right {
    width: 140px; height: 320px;
    top: 0; left: 230px;
    transform: rotateY(90deg);
    background:
        repeating-linear-gradient(0deg, transparent, transparent 32px, rgba(0,0,0,0.05) 32px, rgba(0,0,0,0.05) 33px),
        linear-gradient(90deg, #1a1c20 0%, #141618 30%, #0f1012 70%, #0a0b0e 100%);
    border-top: 3px solid rgba(180,195,215,0.1);
    border-bottom: 3px solid rgba(180,195,215,0.05);
    border-right: 3px solid rgba(180,195,215,0.08);
    box-shadow:
        inset -20px 0 50px rgba(0,0,0,0.6),
        inset 8px 0 20px rgba(180,195,215,0.03);
}

/* ===== FACE GAUCHE — 140×320, pliée depuis le bord gauche ===== */
.vault-left-side {
    width: 140px; height: 320px;
    top: 0; left: -70px;
    transform: rotateY(-90deg);
    background:
        linear-gradient(90deg, #08090b 0%, #0b0c0f 30%, #0f1012 70%, #141618 100%);
    border-top: 3px solid rgba(180,195,215,0.04);
    border-bottom: 3px solid rgba(180,195,215,0.03);
    border-left: 3px solid rgba(180,195,215,0.05);
    box-shadow:
        inset 20px 0 50px rgba(0,0,0,0.7);
}

/* ===== DESSUS — 300×140, plié depuis le bord haut ===== */
.vault-top {
    width: 300px; height: 140px;
    top: -70px; left: 0;
    transform: rotateX(90deg);
    background:
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(180,195,215,0.008) 50px, rgba(180,195,215,0.008) 51px),
        linear-gradient(180deg, #2a2d32 0%, #1e2024 40%, #16181c 100%);
    border: 3px solid rgba(180,195,215,0.1);
    border-bottom: none;
    box-shadow:
        inset 0 -15px 40px rgba(0,0,0,0.4),
        inset 0 2px 0 rgba(220,225,230,0.06);
}

/* ===== DESSOUS — 300×140, plié depuis le bord bas ===== */
.vault-bottom {
    width: 300px; height: 140px;
    top: 250px; left: 0;
    transform: rotateX(-90deg);
    background: linear-gradient(180deg, #0a0b0e 0%, #08090b 100%);
    border: 3px solid rgba(180,195,215,0.03);
    border-top: none;
}

/* ===== ARRIÈRE — 300×320, Z-70 ===== */
.vault-back {
    width: 300px; height: 320px;
    top: 0; left: 0;
    transform: translateZ(-70px);
    background: linear-gradient(170deg, #0d0e11 0%, #08090b 100%);
    border: 3px solid rgba(180,195,215,0.03);
}

/* ===== OMBRE AU SOL ===== */
.vault-shadow {
    position: absolute;
    bottom: -25px; left: -20px;
    width: 340px; height: 60px;
    background: radial-gradient(ellipse 60% 50%, rgba(0,0,0,0.5) 0%, transparent 70%);
    filter: blur(18px);
    z-index: -1;
}

/* Roue */
.vault-wheel {
    width: 130px; height: 130px;
    border-radius: 50%;
    border: 5px solid rgba(180,195,215,0.35);
    background:
        radial-gradient(circle at 40% 35%, rgba(220,230,240,0.15), transparent 50%),
        radial-gradient(circle at 60% 65%, rgba(100,115,135,0.08), transparent 50%),
        radial-gradient(circle, rgba(180,195,215,0.05) 0%, transparent 70%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow:
        0 0 30px rgba(140,160,185,0.08),
        inset 0 0 25px rgba(0,0,0,0.5),
        inset 0 2px 3px rgba(220,230,240,0.08),
        0 3px 6px rgba(0,0,0,0.6);
    animation: wheelSlow 30s linear infinite;
    z-index: 2;
}
@keyframes wheelSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.vault-wheel-inner {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(180,195,215,0.2);
    position: relative;
    animation: wheelSlow 30s linear infinite reverse;
    background: radial-gradient(circle at 40% 40%, rgba(200,210,220,0.06), transparent 60%);
}

.vault-wheel-spoke {
    position: absolute;
    width: 2px; height: 100%;
    left: 50%; top: 0;
    transform-origin: center center;
    background: linear-gradient(180deg, rgba(180,195,215,0.3), rgba(180,195,215,0.06), rgba(180,195,215,0.3));
}
.vault-wheel-spoke:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.vault-wheel-spoke:nth-child(2) { transform: translateX(-50%) rotate(60deg); }
.vault-wheel-spoke:nth-child(3) { transform: translateX(-50%) rotate(120deg); }

/* Montant */
.vault-amount-3d {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
}

.vault-3d-value {
    font-family: 'Orbitron', monospace;
    font-size: clamp(0.85rem, 2.4vw, 1.2rem);
    font-weight: 900;
    letter-spacing: 1.5px;
    white-space: nowrap;
    display: inline-block;
    background: linear-gradient(135deg, #8898a8, #b8c4d0, #e0e6ec, #b8c4d0, #8898a8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chromeShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(140,160,185,0.25));
}
@keyframes chromeShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.edition-anasthasia {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #3b82f6, #ffffff, #ef4444);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flagShift 5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.3));
}

.vault-handle {
    position: absolute;
    right: 45px; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 70px;
    background: linear-gradient(180deg, rgba(220,230,240,0.3), rgba(180,195,215,0.12), rgba(220,230,240,0.3));
    border-radius: 5px;
    border: 1px solid rgba(180,195,215,0.18);
    box-shadow: 3px 0 10px rgba(0,0,0,0.4), -1px 0 4px rgba(180,195,215,0.06);
    z-index: 2;
}

/* LEDs */
.vault-leds { display: flex; gap: 8px; position: absolute; bottom: 60px; z-index: 2; }
.vault-led {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(140,160,185,0.25);
    box-shadow: 0 0 4px rgba(140,160,185,0.15);
    animation: ledPulse 2.5s ease-in-out infinite;
}
.vault-led:nth-child(1) { animation-delay: 0s; }
.vault-led:nth-child(2) { animation-delay: 0.3s; }
.vault-led:nth-child(3) { animation-delay: 0.6s; }
.vault-led:nth-child(4) { animation-delay: 0.9s; }
.vault-led:nth-child(5) { animation-delay: 1.2s; }
.vault-led:nth-child(6) { animation-delay: 1.5s; }
@keyframes ledPulse {
    0%, 100% { opacity: 0.3; background: rgba(140,160,185,0.25); box-shadow: 0 0 3px rgba(140,160,185,0.08); }
    50% { opacity: 1; background: rgba(180,200,220,0.8); box-shadow: 0 0 10px rgba(140,160,185,0.4); }
}

/* Boulons (coins) */
.vault-bolt {
    position: absolute; width: 18px; height: 18px; border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(220,230,240,0.4), rgba(180,195,215,0.08) 70%);
    border: 1.5px solid rgba(180,195,215,0.2);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.6), 0 1px 2px rgba(220,230,240,0.05);
    z-index: 2;
}
.vault-bolt::after {
    content: '+'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: rgba(180,195,215,0.25); font-weight: 700;
}
.vault-bolt-tl { top: 16px; left: 16px; }
.vault-bolt-tr { top: 16px; right: 16px; }
.vault-bolt-bl { bottom: 16px; left: 16px; }
.vault-bolt-br { bottom: 16px; right: 16px; }

/* Rivets (milieux des bords) */
.vault-rivet {
    position: absolute; width: 10px; height: 10px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(200,210,220,0.25), rgba(180,195,215,0.06));
    border: 1px solid rgba(180,195,215,0.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
    z-index: 2;
}
.vault-rivet-1 { top: 50%; left: 16px; transform: translateY(-50%); }
.vault-rivet-2 { top: 50%; right: 16px; transform: translateY(-50%); }
.vault-rivet-3 { top: 16px; left: 50%; transform: translateX(-50%); }
.vault-rivet-4 { bottom: 16px; left: 50%; transform: translateX(-50%); }

/* Lockbars (3 barres à gauche) */
.vault-lockbar {
    position: absolute; left: -10px; width: 22px; height: 8px;
    background: linear-gradient(90deg, rgba(180,195,215,0.2), rgba(200,210,220,0.35), rgba(180,195,215,0.2));
    border-radius: 1px;
    border: 1px solid rgba(180,195,215,0.12);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 2;
}
.vault-lockbar-t { top: 70px; }
.vault-lockbar-m { top: 50%; transform: translateY(-50%); }
.vault-lockbar-b { bottom: 70px; }

/* Charnières (côté droit, plus grosses) */
.vault-hinge {
    position: absolute; right: -12px; width: 16px; height: 55px;
    background:
        linear-gradient(90deg, rgba(180,195,215,0.3), rgba(180,195,215,0.1));
    border-radius: 0 6px 6px 0;
    border: 1.5px solid rgba(180,195,215,0.12);
    box-shadow: 2px 0 6px rgba(0,0,0,0.3);
    z-index: 1;
}
.vault-hinge::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(180,195,215,0.15);
    border: 1px solid rgba(180,195,215,0.1);
    left: 4px; top: 50%;
    transform: translateY(-50%);
}
.vault-hinge-top { top: 45px; }
.vault-hinge-bottom { bottom: 45px; }

/* ===== Code display EN DESSOUS du coffre ===== */
.vault-code-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.vault-code-slot {
    width: 38px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem; font-weight: 900;
    color: rgba(180,195,215,0.8);
    background: rgba(180,195,215,0.04);
    border: 2px solid rgba(180,195,215,0.15);
    border-bottom: 3px solid rgba(180,195,215,0.3);
    border-radius: 8px;
    text-shadow: 0 0 12px rgba(140,160,185,0.3);
    transition: all 0.15s;
}
.vault-code-slot.filled {
    color: #d0d8e0;
    border-color: rgba(180,195,215,0.4);
    background: rgba(180,195,215,0.08);
    text-shadow: 0 0 20px rgba(180,195,215,0.5);
}
.vault-code-slot.active {
    border-color: rgba(180,195,215,0.6);
    box-shadow: 0 0 16px rgba(140,160,185,0.15);
}

/* ===== Bottom row : digicode + login/player ===== */
.vault-bottom-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 600px;
}

/* ===== Login box (à droite du digicode) ===== */
.vault-login-box {
    flex: 1;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(180,195,215,0.1);
    border-radius: 12px;
    background: rgba(180,195,215,0.03);
}

/* ===== BIOMETRIC PREMIUM PANEL ===== */
.biometric-panel {
    position: relative;
    padding: 22px 20px 20px;
    border: 1px solid rgba(180,195,215,0.1);
    border-radius: 12px;
    background: rgba(180,195,215,0.03);
    overflow: hidden;
}

.biometric-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
    pointer-events: none;
    opacity: 0.5;
}

.biometric-corners .bc {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(180, 195, 215, 0.4);
    pointer-events: none;
}
.bc-tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.bc-tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.bc-bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.bc-br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }

.biometric-scanner {
    position: relative;
    margin: 4px auto 14px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(180,195,215,0.18);
    overflow: hidden;
}

.biometric-hand {
    width: 64px;
    height: 64px;
    color: #e5e9f0;
    filter: drop-shadow(0 0 8px rgba(220, 225, 235, 0.45));
}

@keyframes bioPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.biometric-beam {
    display: none;
}

@keyframes bioScan {
    0% { top: -18px; }
    50% { top: 88px; }
    100% { top: -18px; }
}

.biometric-pulse {
    display: none;
}

@keyframes bioRing {
    0% { transform: scale(0.85); opacity: 0.9; }
    100% { transform: scale(1.25); opacity: 0; }
}

.biometric-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: rgba(207, 225, 255, 0.75);
    margin-bottom: 4px;
}

.biometric-led {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6, 0 0 18px rgba(59,130,246,0.7);
    animation: bioBlink 1.4s ease-in-out infinite;
}

@keyframes bioBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.biometric-panel .vault-login-title,
.biometric-panel .vault-login-desc,
.biometric-panel .vault-input,
.biometric-panel .vault-btn,
.biometric-panel .vault-msg {
    position: relative;
    z-index: 1;
}

.biometric-panel .vault-login-title {
    text-align: center;
    color: #ffffff;
}

.biometric-panel .vault-login-desc {
    text-align: center;
}

.biometric-panel .vault-input {
    background: rgba(59,130,246,0.06);
    border-color: rgba(59,130,246,0.3);
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

.biometric-panel .vault-input:focus {
    border-color: rgba(59,130,246,0.85);
    box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}

/* ===== ID Row : personnage + carte d'identité avec inputs ===== */
.id-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 14px;
}

.id-person {
    flex: 0 0 auto;
    width: 56px;
    height: 64px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldFlag 2.6s ease-in-out infinite;
}

.id-person svg {
    width: 100%;
    height: 100%;
}

.id-card {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(59,130,246,0.35);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(239,68,68,0.05));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    min-width: 0;
}

.id-card-photo {
    flex: 0 0 36px;
    width: 36px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(180,195,215,0.25), rgba(180,195,215,0.08));
    border: 1px solid rgba(180,195,215,0.2);
    position: relative;
}

.id-card-photo::after {
    content: '';
    position: absolute;
    inset: 6px 6px 4px 6px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.4) 0 22%, transparent 24%),
        radial-gradient(ellipse at 50% 95%, rgba(255,255,255,0.35) 0 40%, transparent 42%);
}

.id-card-fields {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    gap: 6px;
    min-width: 0;
}

.id-input {
    width: 100%;
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 8px !important;
    font-size: 0.7rem !important;
    border-radius: 4px !important;
    letter-spacing: 0.5px !important;
}

@media (max-width: 768px) {
    .id-row { gap: 6px; align-items: center; }
    .id-person { width: 28px; height: 34px; flex: 0 0 28px; }
    .id-card { padding: 4px; gap: 4px; flex: 1 1 auto; min-width: 0; }
    .id-card-fields { flex-direction: row !important; gap: 4px; min-width: 0; flex: 1 1 auto; }
    .id-input { padding: 4px 5px !important; font-size: 0.5rem !important; letter-spacing: 0 !important; min-width: 0 !important; flex: 1 1 0 !important; width: auto !important; }
}

.vault-login-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(255,255,255,0.92);
    margin: 0;
    text-transform: none;
}

.vault-login-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin: 0 0 4px;
}

.vault-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(180,195,215,0.15);
    border-radius: 8px;
    background: rgba(180,195,215,0.05);
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.vault-input:focus { border-color: rgba(180,195,215,0.5); }
.vault-input::placeholder { color: rgba(255,255,255,0.2); }

.vault-btn {
    padding: 14px 24px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    background: rgba(59, 130, 246, 0.12);
    color: #ffffff;
    transition: all 0.3s;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.vault-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.vault-btn:hover::before { left: 100%; }
.vault-btn:hover { background: rgba(59, 130, 246, 0.2); border-color: rgba(59, 130, 246, 0.6); }
.vault-btn-full { width: 100%; }

/* ===== Player box (état connecté, à droite du digicode) ===== */
.vault-player-box {
    flex: 1;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    border: 1px solid rgba(180,195,215,0.1);
    border-radius: 12px;
    background: rgba(180,195,215,0.03);
}

.vault-player-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vault-pseudo {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(180,195,215,0.9);
}
.vault-attempts-count {
    font-size: 0.78rem;
    color: rgba(180,195,215,0.7);
    font-weight: 600;
}
.vault-attempts-count.danger { color: #e74c3c; }

.vault-btn-link {
    background: none; border: none; color: rgba(255,255,255,0.3);
    font-size: 0.72rem; cursor: pointer;
    transition: color 0.2s; font-family: 'Inter', sans-serif;
    text-align: left;
}
.vault-btn-link:hover { color: rgba(255,255,255,0.6); }

/* ===== Digicode ===== */
.vault-digicode {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vault-digicode-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.digicode-body {
    width: 260px;
    padding: 24px 20px;
    position: relative;
    background:
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.10), transparent 60%),
        linear-gradient(165deg, #1e2024 0%, #16181c 50%, #111316 100%);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 14px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.5),
        0 0 28px rgba(59, 130, 246, 0.18),
        0 0 28px rgba(239, 68, 68, 0.10),
        inset 0 0 18px rgba(59, 130, 246, 0.05);
    overflow: hidden;
    animation: digicodeGlow 4s ease-in-out infinite;
}

@keyframes digicodeGlow {
    0%, 100% {
        box-shadow:
            0 10px 40px rgba(0,0,0,0.5),
            0 0 28px rgba(59, 130, 246, 0.22),
            0 0 28px rgba(239, 68, 68, 0.08),
            inset 0 0 18px rgba(59, 130, 246, 0.05);
        border-color: rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow:
            0 10px 40px rgba(0,0,0,0.5),
            0 0 28px rgba(59, 130, 246, 0.10),
            0 0 32px rgba(239, 68, 68, 0.25),
            inset 0 0 18px rgba(239, 68, 68, 0.08);
        border-color: rgba(239, 68, 68, 0.4);
    }
}

.digicode-body::before {
    display: none;
}

.digicode-body::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.18), transparent);
    pointer-events: none;
    animation: digicodeScan 4.5s ease-in-out infinite;
}

@keyframes digicodeScan {
    0% { top: -30%; }
    100% { top: 130%; }
}

.digicode-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(180,195,215,0.06);
    position: relative;
    z-index: 1;
}
.digi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(180,195,215,0.1);
    border: 1px solid rgba(180,195,215,0.08);
    transition: all 0.15s;
}
.digi-dot.filled {
    background: rgba(180,200,220,0.7);
    box-shadow: 0 0 8px rgba(140,160,185,0.4);
    border-color: rgba(180,195,215,0.3);
}

.digicode-keys {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
    z-index: 1;
}

.dk {
    aspect-ratio: 1;
    border: 1px solid rgba(180,195,215,0.12);
    border-radius: 8px;
    background: rgba(180,195,215,0.04);
    color: rgba(220,225,230,0.85);
    font-family: 'Orbitron', monospace;
    font-size: 1rem; font-weight: 700;
    cursor: pointer;
    transition: all 0.12s;
    display: flex; align-items: center; justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.dk:hover {
    background: rgba(180,195,215,0.1);
    border-color: rgba(180,195,215,0.25);
    box-shadow: 0 0 12px rgba(140,160,185,0.1);
}
.dk:active {
    background: rgba(180,195,215,0.18);
    transform: scale(0.95);
}
.dk-del { color: rgba(220,160,160,0.8); font-size: 1.2rem; }
.dk-del:hover { background: rgba(220,100,100,0.08); border-color: rgba(220,160,160,0.25); }
.dk-go { color: rgba(120,200,160,0.9); font-size: 1.4rem; }
.dk-go:hover { background: rgba(100,200,150,0.08); border-color: rgba(120,200,160,0.25); }

/* ===== Messages ===== */
.vault-msg {
    margin-top: 10px;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 8px;
    display: none;
}
.vault-msg.error { display: block; background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; }
.vault-msg.info { display: block; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.vault-msg.success { display: block; background: rgba(140,160,185,0.1); border: 1px solid rgba(140,160,185,0.3); color: #b8c4d0; }

/* ===== Winner / Closed ===== */
.vault-winner-box, .vault-closed-box {
    padding: 40px; border-radius: 14px; text-align: center;
    max-width: 480px; margin: 0 auto;
}
.vault-winner-box {
    border: 1px solid rgba(180,195,215,0.3);
    background: rgba(180,195,215,0.06);
}
.vault-winner-box h3 {
    font-family: 'Orbitron', monospace; font-size: 1.4rem;
    background: linear-gradient(135deg, #8898a8, #b8c4d0, #e0e6ec);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.vault-winner-box p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.vault-closed-box {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}
.vault-closed-box h3 {
    font-family: 'Orbitron', monospace; font-size: 1rem;
    color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.vault-closed-box p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

@keyframes vaultShake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
.vault-shake { animation: vaultShake 0.4s ease-in-out; }

/* ========== PACK SECTION ========== */
.pack-section {
    background: var(--bg-secondary);
}

.pack-grid {
    display: flex;
    justify-content: center;
}

.pack-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pack-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 16px 60px rgba(59, 130, 246, 0.12), 0 0 30px rgba(239, 68, 68, 0.06);
}

.pack-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--red), #ff7043);
    color: white;
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(35deg);
}

.pack-header {
    text-align: center;
    margin-bottom: 32px;
}

.pack-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pack-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pack-content {
    margin-bottom: 32px;
}

.pack-content h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pack-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pack-features li span:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-highlight {
    background: rgba(108, 92, 231, 0.1);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.pack-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ========== PROOF SECTION ========== */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.proof-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s;
}

.proof-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.proof-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.proof-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.proof-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(212, 168, 83, 0.3);
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(59, 130, 246, 0.04));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== SHOP PAGE ========== */
.shop-header {
    padding: 140px 0 40px;
    text-align: center;
}

.shop-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 25%, #ffffff 50%, #ef4444 75%, #60a5fa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: badgeVaultShine 4s linear infinite, badgeVaultGlow 2.6s ease-in-out infinite;
    text-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}

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

@keyframes badgeVaultGlow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.55)); }
    50% { filter: drop-shadow(0 0 18px rgba(239, 68, 68, 0.55)); }
}

.shop-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: justify;
    text-align-last: left;
    line-height: 1.7;
    hyphens: auto;
}

.shop-section {
    padding: 20px 0 100px;
    position: relative;
    overflow: hidden;
}

.shop-section > .container {
    position: relative;
    z-index: 1;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shop-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.5);
}

.shop-loading .loader {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.shop-card {
    position: relative;
    border: 1px solid rgba(220, 230, 245, 0.35);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(220, 230, 245, 0.06),
        0 0 22px rgba(200, 215, 240, 0.18),
        0 8px 30px rgba(0, 0, 0, 0.45);
}

.shop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 240, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(220, 230, 245, 0.12),
        0 0 32px rgba(210, 225, 245, 0.32),
        0 12px 40px rgba(0, 0, 0, 0.55);
}

.shop-card-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.shop-card-disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.12);
}

.shop-card-img {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    cursor: pointer;
}

.shop-card-img img {
    max-width: 200px;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
    transition: opacity 0.3s;
}

.shop-one-size-tag {
    display: inline-block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 12px;
    font-weight: 500;
}

.shop-coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shop-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-card-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.shop-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    line-height: 1.4;
}

.shop-options {
    margin-bottom: 12px;
}

.shop-options-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.shop-color-options,
.shop-size-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.shop-option-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.shop-option-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.shop-option-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.shop-card-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.shop-buy-btn {
    font-size: 0.8rem !important;
    padding: 10px 20px !important;
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: not-allowed;
}

.shop-badge-info {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* ========== SHOP BACK BUTTON ========== */
.shop-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    margin-bottom: 8px;
}
.shop-back-btn:hover {
    color: #fff;
}

/* ========== CAROUSEL ========== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s;
}
.shop-card-img:hover .carousel-arrow {
    opacity: 1;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.35);
}

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.2s;
}
.carousel-dot.active {
    background: #fff;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== CONTACT ========== */
.contact-section {
    text-align: center;
}

.contact-intro {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 36px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.03);
    min-width: 220px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.contact-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-value:hover {
    color: #3b82f6;
}

.contact-mail-soon {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== FUTURISTIC PREMIUM EFFECTS ========== */

/* --- Désactiver les effets premium sur shop --- */
.page-shop::before,
.page-shop::after {
    display: none !important;
}

/* --- Boutons bleu sur shop --- */
.page-shop .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35), 0 0 40px rgba(59, 130, 246, 0.1);
}

.page-shop .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.45), 0 0 60px rgba(59, 130, 246, 0.15);
}

/* --- Scan line holographique global --- */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(59, 130, 246, 0.015) 2px,
        rgba(59, 130, 246, 0.015) 4px
    );
    animation: scanDrift 0.1s steps(2) infinite;
}

@keyframes scanDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* --- Laser beam horizontal qui traverse le body --- */
body::after {
    content: '';
    position: fixed;
    top: 0; left: -100%;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, #ffffff, #ef4444, transparent);
    pointer-events: none;
    z-index: 9998;
    animation: laserSweep 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 30px rgba(239, 68, 68, 0.3);
}

@keyframes laserSweep {
    0% { top: 10%; left: -40%; }
    50% { top: 85%; left: 100%; }
    100% { top: 10%; left: -40%; }
}

/* --- Grille cyber en pointillés sur le hero --- */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* --- Bande tech tricolore animée sur les sections --- */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #ffffff, #ef4444, transparent);
    background-size: 200% 100%;
    animation: techScanLine 3s ease-in-out infinite;
    z-index: 2;
}

.how-it-works { position: relative; }

.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), rgba(255, 255, 255, 0.3), rgba(239, 68, 68, 0.5), transparent);
    z-index: 2;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.faq-section { position: relative; }

@keyframes techScanLine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* --- HUD corners sur la CTA box --- */
.cta-box::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, rgba(59, 130, 246, 0.4), transparent 30%, transparent 70%, rgba(239, 68, 68, 0.4)) 1;
    pointer-events: none;
    animation: hudCornerPulse 3s ease-in-out infinite;
}

@keyframes hudCornerPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* --- Holographic orb sur le coffre --- */
.vault-3d-wrapper::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #3b82f6, #ffffff, #ef4444, #3b82f6);
    opacity: 0.6;
    animation: orbSpin 4s linear infinite;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(239, 68, 68, 0.2);
    filter: blur(1px);
}

@keyframes orbSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.8); }
    100% { transform: rotate(360deg) scale(1); }
}

/* --- Cyber hexagon sur le VIP badge --- */
.vip-badge::after {
    content: '';
    position: absolute;
    top: -6px; right: -6px;
    width: 18px; height: 18px;
    background: transparent;
    border: 1.5px solid rgba(59, 130, 246, 0.6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexPulse 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes hexPulse {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
    50% { opacity: 1; transform: scale(1.3) rotate(30deg); box-shadow: 0 0 15px rgba(59, 130, 246, 0.6); }
}

/* --- Neon border animé sur les step cards --- */
.step-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    right: -1px; bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(var(--neon-angle, 0deg), #3b82f6, transparent 40%, transparent 60%, #ef4444);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.step-card { position: relative; z-index: 1; }

.step-card:hover::before {
    opacity: 1;
    animation: neonBorderSpin 3s linear infinite;
}

@keyframes neonBorderSpin {
    0% { --neon-angle: 0deg; background: linear-gradient(0deg, #3b82f6, transparent 40%, transparent 60%, #ef4444); }
    25% { background: linear-gradient(90deg, #3b82f6, transparent 40%, transparent 60%, #ef4444); }
    50% { background: linear-gradient(180deg, #3b82f6, transparent 40%, transparent 60%, #ef4444); }
    75% { background: linear-gradient(270deg, #3b82f6, transparent 40%, transparent 60%, #ef4444); }
    100% { background: linear-gradient(360deg, #3b82f6, transparent 40%, transparent 60%, #ef4444); }
}

/* --- Data stream particles dans le hero --- */
.hero-content::after {
    content: '';
    position: absolute;
    width: 2px; height: 100%;
    top: 0; right: 12px;
    background: linear-gradient(180deg, transparent, #3b82f6 20%, transparent 40%, #ef4444 60%, transparent 80%, #3b82f6, transparent);
    background-size: 100% 200%;
    animation: dataStream 3s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

@keyframes dataStream {
    0% { background-position: 0 0; }
    100% { background-position: 0 200%; }
}

/* --- Glitch flicker sur le footer --- */
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #3b82f6 15%, 
        transparent 30%, 
        #ffffff 45%, 
        transparent 55%, 
        #ef4444 70%, 
        transparent 85%,
        #3b82f6 100%
    );
    background-size: 200% 100%;
    animation: footerGlitch 4s linear infinite;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.footer { position: relative; }

@keyframes footerGlitch {
    0% { background-position: 0% 0; opacity: 0.6; }
    25% { opacity: 1; }
    50% { background-position: 100% 0; opacity: 0.4; }
    75% { opacity: 1; }
    100% { background-position: 200% 0; opacity: 0.6; }
}

/* --- Holographic shimmer sur la product card --- */
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), rgba(255, 255, 255, 0.08), rgba(239, 68, 68, 0.05), transparent);
    transform: skewX(-15deg);
    animation: holoShimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes holoShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* --- Pulse ring sur les section tags --- */
.section-tag::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 1px solid rgba(59, 130, 246, 0.3);
    opacity: 0;
    animation: tagRingPulse 3s ease-out infinite;
    pointer-events: none;
}

.section-tag { position: relative; overflow: visible; }

@keyframes tagRingPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* --- Matrix rain dots subtils --- */
.how-it-works::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(1px 1px at 15% 20%, rgba(59, 130, 246, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 35% 45%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 55% 15%, rgba(239, 68, 68, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 75% 65%, rgba(59, 130, 246, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 85% 35%, rgba(255, 255, 255, 0.15) 50%, transparent 50%),
        radial-gradient(1px 1px at 25% 75%, rgba(239, 68, 68, 0.25) 50%, transparent 50%),
        radial-gradient(1px 1px at 65% 85%, rgba(59, 130, 246, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 45% 55%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    animation: matrixFade 4s ease-in-out infinite alternate;
}

@keyframes matrixFade {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .vault-bottom-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;
        gap: 14px;
    }

    .vault-login-box,
    .vault-player-box {
        max-width: 50%;
        width: 50%;
        flex: 1 1 50%;
    }

    .vault-3d-scene {
        width: 260px;
        height: 280px;
    }

    .vault-3d-body {
        width: 260px;
        height: 280px;
    }

    .vault-front {
        width: 260px;
        height: 280px;
        transform: translateZ(60px);
    }

    .vault-right {
        width: 120px;
        height: 280px;
        left: 200px;
    }

    .vault-left-side {
        width: 120px;
        height: 280px;
        left: -60px;
    }

    .vault-top {
        width: 260px;
        height: 120px;
        top: -60px;
    }

    .vault-bottom {
        width: 260px;
        height: 120px;
        top: 220px;
    }

    .vault-back {
        width: 260px;
        height: 280px;
        transform: translateZ(-60px);
    }

    .vault-wheel {
        width: 100px;
        height: 100px;
    }

    .vault-wheel-inner {
        width: 70px;
        height: 70px;
    }

    .vault-3d-value {
        font-size: 1rem;
    }

    .vault-visual-center {
        min-height: 340px;
    }

    .vault-code-slot {
        width: 44px;
        height: 54px;
        font-size: 1.5rem;
    }

    .digicode-body {
        width: 240px;
    }

    .dk {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .vault-visual-center {
        min-height: 300px;
    }

    .vault-3d-scene {
        width: 220px;
        height: 240px;
    }

    .vault-3d-body {
        width: 220px;
        height: 240px;
    }

    .vault-front {
        width: 220px;
        height: 240px;
        transform: translateZ(50px);
    }

    .vault-right {
        width: 100px;
        height: 240px;
        left: 170px;
    }

    .vault-left-side {
        width: 100px;
        height: 240px;
        left: -50px;
    }

    .vault-top {
        width: 220px;
        height: 100px;
        top: -50px;
    }

    .vault-bottom {
        width: 220px;
        height: 100px;
        top: 190px;
    }

    .vault-back {
        width: 220px;
        height: 240px;
        transform: translateZ(-50px);
    }

    .vault-wheel {
        width: 70px;
        height: 70px;
    }

    .vault-wheel-inner {
        width: 50px;
        height: 50px;
    }

    .vault-3d-value {
        font-size: 0.85rem;
    }

    .vault-code-display {
        gap: 4px;
    }

    .vault-code-slot {
        width: 28px;
        height: 40px;
        font-size: 1rem;
    }

    .vault-bottom-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0 8px;
        box-sizing: border-box;
    }

    .vault-login-box,
    .vault-player-box {
        max-width: 50%;
        width: 50%;
        flex: 1 1 50%;
        padding: 12px 8px;
    }

    .digicode-body {
        width: 100%;
        max-width: 100%;
        padding: 10px 6px;
    }

    .dk {
        font-size: 0.9rem;
    }

    .vault-nameplate {
        font-size: 0.5rem;
        top: 22px;
    }

    .hero-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-product {
        max-width: 100%;
    }

    .product-img {
        max-width: 250px;
    }

    .hero-amount-showcase {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .steps-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    .step-connector {
        display: none;
    }
    
    .step-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
        padding: 26px 18px !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        position: relative;
    }

    .step-card::before {
        content: none !important;
        display: none !important;
    }

    .step-card + .step-card::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, #3b82f6 20%, #ffffff 50%, #ef4444 80%, transparent 100%);
        background-size: 200% 100%;
        animation: stepsTransparencyShine 5s linear infinite;
        opacity: 0.7;
        pointer-events: none;
    }

    .step-card.highlight {
        background: transparent !important;
        border: 0 !important;
    }

    .step-card:hover,
    .step-card.highlight:hover {
        transform: none !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .step-card:hover::before {
        opacity: 0 !important;
        animation: none !important;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pack-card {
        padding: 28px 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
