:root {
    --blue-dark: #001428;
    --blue-darker: #000b1a;
    --gold: #ffd700;
    --gold-light: #ffea80;
    --silver: #d0d0d0;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--blue-dark);
    color: var(--silver);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #001428, #000b1a);
    overflow: hidden;
}

.hero-shimmer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,215,0,0.10) 0%, transparent 65%);
    animation: shimmer-bg 16s ease-in-out infinite;
}

@keyframes shimmer-bg {
    0%,100% { transform: translate(0,0) scale(1); opacity:0.65; }
    50%     { transform: translate(10%,15%) scale(1.18); opacity:1; }
}

.hero-content { position: relative; z-index: 2; max-width: 1100px; padding: 0 20px; }

.logo {
    max-width: 340px;
    filter: drop-shadow(0 0 40px rgba(255,215,0,0.6));
    animation: logo-float 7s ease-in-out infinite;
}

@keyframes logo-float {
    0%,100% { transform: translateY(0) scale(1); }
    50%     { transform: translateY(-25px) scale(1.04); }
}

.glow-logo { animation: glow 4s ease-in-out infinite alternate; }
@keyframes glow { to { filter: drop-shadow(0 0 70px #ffd700); } }

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--gold);
    text-shadow: 0 0 50px rgba(255,215,0,0.7);
    margin: 0.3em 0 0.4em;
}

.shimmer-text {
    background: linear-gradient(90deg, #ffd700, #ffea80, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200%;
    animation: shimmer 5s linear infinite;
}

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

.subtitle { font-size: clamp(1.4rem, 4vw, 1.9rem); max-width: 800px; margin: 0 auto 2.5em; }

/* ── CTA Button ───────────────────────────────────────── */
.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffea80, #ffd700);
    background-size: 200% 200%;
    color: #000b1a;
    padding: 18px 50px;
    border-radius: 60px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 40px rgba(255,215,0,0.45);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 25px 60px rgba(255,215,0,0.65);
}

.shine-ripple::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.7s ease-out, height 0.7s ease-out;
}

.shine-ripple:active::after { width: 500px; height: 500px; }

/* ── Container & Titles ───────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 80px 20px; }

.section-title { font-size: clamp(2.6rem, 6vw, 3.8rem); text-align: center; margin-bottom: 3.5rem; }

.pricing-intro { text-align: center; font-size: 1.3rem; max-width: 800px; margin: 0 auto 4rem; }

/* ── Cards ────────────────────────────────────────────── */
.cards, .pricing-cards, .grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.card, .pricing-card, .pronostic-card {
    background: rgba(0,20,40,0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.18);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

.card:hover, .pricing-card:hover, .pronostic-card:hover {
    transform: translateY(-18px);
    border-color: var(--gold);
    box-shadow: 0 35px 90px rgba(255,215,0,0.25);
}

.pricing-card.popular {
    border: 2px solid var(--gold);
    background: linear-gradient(145deg, rgba(255,215,0,0.12), rgba(0,20,40,0.55));
}

.popular-badge {
    background: var(--gold);
    color: #000b1a;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(255,215,0,0.4);
}

.price { font-size: 4.2rem; color: var(--gold); font-weight: bold; margin: 0.4em 0; }

.per { font-size: 1.3rem; color: var(--silver); margin-bottom: 1.8rem; }

.benefits { list-style: none; padding: 0; margin: 2rem 0 3rem; text-align: left; }

.benefits li {
    margin: 1rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.2rem;
}

.benefits li::before {
    content: '✔';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ── Pronostics page specific ─────────────────────────── */
.protected .hero { height: 60vh; min-height: 500px; }

.password-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.password-box {
    background: rgba(0,20,40,0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

input[type="password"] {
    width: 100%;
    padding: 16px;
    margin: 25px 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: white;
    font-size: 1.3rem;
    text-align: center;
}

.error { color: #ff6b6b; margin-top: 20px; font-weight: bold; font-size: 1.1rem; }

.sub-title { font-size: 2.4rem; margin: 0 0 2.5rem; text-align: center; }

.card-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.3rem; }

.base    { background: #00c853; color: black;    padding: 8px 18px; border-radius: 30px; font-weight: bold; font-size: 0.95rem; }
.coup    { background: var(--gold); color: #000b1a; padding: 8px 18px; border-radius: 30px; font-weight: bold; font-size: 0.95rem; }
.outsider { background: #ff6b6b; color: white;  padding: 8px 18px; border-radius: 30px; font-weight: bold; font-size: 0.95rem; }

.odds { margin-top: 1.6rem; font-style: italic; color: var(--gold-light); font-weight: bold; font-size: 1.1rem; }

.jeu-recommande {
    margin: 4rem auto 0;
    max-width: 700px;
    padding: 2.5rem;
    background: rgba(255,215,0,0.07);
    border: 1px dashed var(--gold);
    border-radius: 16px;
    text-align: center;
}

/* ── Animations scroll ────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(90px) scale(0.94);
    transition: all 1.1s cubic-bezier(0.22,1,0.36,1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--delay, 0s));
}

/* ── Footer ───────────────────────────────────────────── */
footer {
    text-align: center;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255,215,0,0.15);
}

.legal a { color: var(--gold-light); text-decoration: underline; }

.center { text-align: center; }
.cta-button.large {
    padding: 22px 70px !important;
    font-size: 1.7rem !important;
    min-width: 320px;
}