/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette utilisateur */
    --color-bg: #0F0F0F;
    --color-text: #E0E0E0;
    --color-titles: #FFD700;
    --color-cta: #FF4500;
    --color-link: #00BFFF;
    /* Variables dérivées */
    --dark-bg: #0F0F0F;
    --dark-secondary: #1a1a1a;
    --text-light: #E0E0E0;
    --text-muted: #a0a0a0;
    --blue-accent: #00BFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --blue-dark: #0a7ab8;
    --blue-light: #33ccff;
    --green-trust: #4caf50;
    --gray-neutral: #6b7280;
    --pink-purple: #FF4500;
    --purple: #00BFFF;
    --blue-bright: #00BFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    background-image: none;
    background-size: 100% 100%;
    overflow-x: hidden;
    font-size: 16px;
    position: relative;
}

body::before {
    display: none; /* Suppression des effets de particules flashy */
}

/* Bannière urgence sticky en haut */
.urgency-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-cta);
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.urgency-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.urgency-banner-text {
    font-size: 15px;
    font-weight: 600;
}

.urgency-banner-counter {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.urgency-banner-counter .counter-restantes {
    -webkit-text-fill-color: #ffffff;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* Hero image "Ça c'était moi avant" */
.hero-image-block {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 24px auto 12px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-lg);
    box-sizing: border-box;
}

.hero-image-block .hero-image-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.hero-image-overlay-top {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: inherit;
    font-size: clamp(18px, 3.8vw, 24px);
    font-weight: 800;
    color: #f5f0eb;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.hero-image-overlay-bottom {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: inherit;
    font-size: clamp(20px, 4.5vw, 28px);
    font-weight: 800;
    color: #f5f0eb;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding-top: 12px;
}

.hero-image-transition {
    text-align: center;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    color: var(--color-link);
    margin: 16px 0 20px;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .hero-image-block {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
    .hero-image-block .hero-image-img {
        border-radius: 12px;
    }
}

/* Winners List */
.winners-list {
    background: var(--dark-secondary);
    border-top: 2px solid var(--pink-purple);
    width: 100%;
    overflow-y: auto;
    max-height: 400px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}



.winners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    max-width: 100%;
    animation: slideInRight 0.5s ease;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--pink-purple);
    width: 100%;
    max-width: 700px;
    animation: winnerSlideIn 0.5s ease;
}

.winner-item .winner-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.winner-item .winner-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.winner-item .winner-text strong {
    color: var(--pink-purple);
    font-weight: 700;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive pour mobile */
@media (max-width: 767px) {
    .winners-container {
        gap: 10px;
        padding: 16px;
    }
    
    .winner-item {
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .winner-item .winner-icon {
        width: 16px;
        height: 16px;
    }
    
    .bonus-carousel {
        max-width: 100%;
        margin: 20px auto;
        height: 120px;
    }
    
    .carousel-slide {
        width: 350px;
        height: 120px;
        margin-right: 15px;
    }
    
    .carousel-content {
        padding: 20px 25px;
    }
    
    .carousel-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .carousel-subtitle {
        font-size: 12px;
    }
    
    /* Bonus header mobile adjustments */
    .bonus-header {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        padding-bottom: 20px;
        padding-left: 8px;
        flex-wrap: nowrap;
    }
    
    .casino-badge {
        flex-shrink: 1;
        padding: 8px 0;
    }
    
    .casino-logo {
        height: auto;
        max-height: 50px;
        min-width: 120px;
        width: auto;
        max-width: 100%;
    }
    
    .rating-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .rating {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .rating svg {
        display: none;
    }
    
    .trustpilot-badge {
        font-size: 10px;
        white-space: nowrap;
    }
    
    .trustpilot-logo {
        height: 14px;
        width: 14px;
    }
    
    .trustpilot-text {
        font-size: 10px;
    }
    
    /* Réduire considérablement la taille des titres sur mobile */
    .section-title {
        font-size: 10px;
        line-height: 1.1;
        margin-top: -20px;
        margin-bottom: 6px;
        letter-spacing: 0.1px;
        padding: 0 2px;
    }
    
    .cta-title {
        font-size: 10px;
        line-height: 1.1;
        margin-top: -20px;
        margin-bottom: 6px;
        letter-spacing: 0.1px;
        padding: 0 2px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    /* Réduire le padding des sections sur mobile pour remonter le contenu */
    .bonus-section,
    .roulette-section,
    .testimonials-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    
    /* Réduire la taille du bouton sur mobile pour qu'il tienne sur une ligne */
    .btn-large {
        font-size: 12px;
        padding: 12px 20px;
        white-space: nowrap;
        letter-spacing: 0.3px;
    }
    
    .btn {
        font-size: 12px;
        padding: 12px 20px;
    }
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.popup-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.popup-text {
    flex: 1;
}

.popup-text strong {
    font-weight: 700;
}

/* Timer Banner */
.timer-banner {
    background: var(--gradient-pink-orange);
    padding: 8px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.timer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.timer-text {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.timer-display {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Header */
.header {
    background: var(--dark-secondary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--pink-purple);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    background: linear-gradient(135deg, var(--pink-purple) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-image {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.btn-header {
    background: var(--gradient-pink-orange);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-subhead {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-titles);
    margin: 40px 0 12px;
    letter-spacing: 0.5px;
}

#section-13aout {
    scroll-margin-top: 180px;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.bonus-box {
    background: var(--dark-secondary);
    padding: 20px 32px;
    border-radius: 16px;
    border: 2px solid var(--pink-purple);
    text-align: center;
    min-width: 140px;
}

.bonus-box.highlight {
    background: var(--gradient-pink-orange);
    border-color: var(--pink-purple);
    transform: scale(1.05);
}

.bonus-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bonus-box.highlight .bonus-label {
    color: var(--text-light);
}

.bonus-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
}

.arrow {
    font-size: 32px;
    color: var(--blue-bright);
    font-weight: 800;
}

.bonus-percent {
    font-size: 16px;
    background: linear-gradient(135deg, var(--pink-purple) 0%, var(--blue-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--color-cta);
    color: #ffffff;
    box-shadow: var(--shadow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--blue-bright);
    border: 2px solid var(--blue-bright);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--blue-bright);
    color: var(--text-light);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-after-hero {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 48px;
}

.hero-cta-mid {
    text-align: center;
    margin: 28px 0;
}

.btn-full {
    width: 100%;
    display: block;
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--pink-purple) 0%, var(--purple) 50%, var(--blue-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-muted);
}

/* Roulette Section */
.roulette-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.roulette-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.roulette-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px;
    background: var(--dark-bg);
    overflow: hidden;
}

.roulette-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    opacity: 1;
}


.daily-counter {
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    background: var(--dark-secondary);
    border-radius: 16px;
    border: 2px solid var(--pink-purple);
    box-shadow: var(--shadow);
}

.daily-counter-text {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.daily-counter-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-purple) 0%, var(--blue-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin: 0 8px;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.counter-wrapper {
    width: 100%;
}

.counter-box {
    background: var(--dark-secondary);
    padding: 32px 24px;
    border-radius: 20px;
    border: 2px solid var(--pink-purple);
    text-align: center;
    box-shadow: var(--shadow);
}

.roulette-image-container-small {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.roulette-image-small {
    width: 150px;
    height: auto;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}


.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.counter-display {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-purple) 0%, var(--blue-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.counter-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 16px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.warning-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Bonus Section */
.bonus-section {
    padding: 60px 0;
    background: var(--dark-secondary);
}

.bonus-card {
    background: var(--dark-bg);
    border-radius: 24px;
    padding: 32px 24px;
    border: 2px solid var(--pink-purple);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 159, 238, 0.3);
}

.casino-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 0 8px 0;
    height: 33%;
    width: 100%;
}

.casino-logo {
    height: 33%;
    width: auto;
    max-width: 100%;
    min-width: 200px;
    object-fit: contain;
}

.rating-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.rating {
    color: var(--pink-purple);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating svg {
    display: none;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2C2C2C;
    font-weight: 600;
}

.trustpilot-logo {
    height: 18px;
    width: auto;
}

.trustpilot-text {
    font-size: 12px;
    font-weight: 600;
    color: #00B67A;
}

.bonus-main {
    text-align: center;
}

/* Bonus Carousel - Défilement continu */
.bonus-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    overflow: hidden;
    height: 140px;
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: slideLeft 15s linear infinite;
    will-change: transform;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    flex: 0 0 auto;
    width: 450px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.carousel-content {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(199, 125, 255, 0.15) 50%, rgba(255, 140, 66, 0.15) 100%);
    padding: 25px 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.carousel-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.carousel-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.carousel-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.bonus-features {
    margin: 32px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-light);
    font-size: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark-secondary);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid var(--pink-purple);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-pink-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-light);
}

.testimonial-name {
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-purple) 0%, var(--blue-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.testimonial-rating {
    color: var(--pink-purple);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.testimonial-rating svg {
    width: 14px;
    height: 14px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    padding: 28px 0 60px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    text-align: center;
}

.cta-section .btn {
    margin-top: 56px;
    margin-bottom: 32px;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    color: var(--color-titles);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a {
    color: var(--blue-bright);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink-purple);
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .logo-image {
        height: 100px;
        max-width: 400px;
    }

    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .roulette-section,
    .bonus-section,
    .testimonials-section {
        padding: 100px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-carousel {
        max-width: 550px;
        height: 160px;
    }

    .carousel-slide {
        width: 500px;
        height: 160px;
    }

    .carousel-content {
        padding: 30px 35px;
    }

    .carousel-title {
        font-size: 28px;
    }

    .carousel-subtitle {
        font-size: 16px;
    }

    .box-amount.highlight {
        font-size: 40px;
    }

    .counter-display {
        font-size: 80px;
    }

    .roulette-image {
        max-width: 600px;
    }
    
    .daily-counter-number {
        font-size: 56px;
    }

}

@media (min-width: 1024px) {
    .casino-logo {
        width: 40%;
        max-height: 100px;
        min-width: 250px;
    }

    .hero-title {
        font-size: 44px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .bonus-card {
        padding: 48px 40px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.bonus-card,
.testimonial-card {
    animation: fadeIn 0.6s ease;
}

/* Texte fluide (diagnostic / unique) - pas de listes */
.diagnostic-flow,
.unique-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--dark-secondary);
    border-radius: 12px;
}

.diagnostic-flow p,
.unique-flow p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 1.5em;
    color: var(--text-light);
}

.diagnostic-flow p:last-child,
.unique-flow p:last-child {
    margin-bottom: 0;
}

/* Hero centré */
.hero-section {
    text-align: center;
    padding: 80px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-titles);
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--color-titles);
    max-width: 800px;
    margin: -10px auto 30px;
    text-align: center;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: left;
}

.hero-intro .hero-text {
    margin-bottom: 10px;
}

.hero-retraits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.hero-retraits-list li {
    padding: 2px 0;
    color: var(--text-light);
}

.hero-retraits-list li::before {
    content: "– ";
    color: var(--color-link);
}

.hero-mini-title {
    display: block;
    font-weight: 700;
    font-size: 1.05em;
    margin-bottom: 4px;
    color: var(--color-titles);
}

#section-13aout.hero-intro {
    margin-top: 32px;
}

.hero-transparency-block {
    margin-top: 28px;
}

.hero-text .hero-cta-link {
    color: var(--color-link);
    text-decoration: underline;
    font-weight: 600;
    font-style: italic;
}

.hero-text .hero-cta-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}

.hero-cta-nowrap {
    white-space: nowrap;
}

.hero-cta-inline {
    display: inline;
}

.hero-bonus-block {
    margin: 28px auto 24px;
}

.hero-bonus-link {
    display: block;
    padding: 14px 20px;
    background: rgba(45, 125, 210, 0.08);
    border: 1px solid var(--blue-accent);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-bonus-link:hover {
    background: rgba(45, 125, 210, 0.15);
    border-color: var(--color-link);
    opacity: 1;
}

.hero-bonus-link,
.hero-bonus-link .hero-text,
.hero-bonus-link .hero-bonus-text {
    font-style: italic;
}

.hero-bonus-link strong {
    color: var(--color-link);
}

.hero-text:last-of-type {
    margin-bottom: 40px;
}

/* Avis / Témoignages */
.avis-section {
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: left;
}

.avis-section-bottom {
    margin-top: 0;
    margin-bottom: 50px;
    padding: 50px 20px 0;
}

.avis-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-titles);
    margin-bottom: 24px;
    text-align: center;
}

.avis-title-verif {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-light);
}

.avis-trustpilot-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.avis-trustpilot-logo {
    height: 20px;
    width: auto;
    margin-left: 4px;
    vertical-align: middle;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.avis-cta-phrase {
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.avis-cta-phrase .hero-cta-link {
    color: var(--color-link);
    text-decoration: underline;
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 900px) {
    .avis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .avis-grid {
        grid-template-columns: 1fr;
    }
}

.avis-card {
    background: var(--dark-secondary);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avis-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avis-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--blue-accent);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.avis-avatar-img {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.avis-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-light);
}

.avis-age {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-light);
}

.avis-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.avis-stars {
    margin: 10px 0 0;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--color-titles);
}

/* Urgency Section */
.urgency-section {
    padding: 60px 20px;
    background: var(--dark-secondary);
}

.urgency-section-compact {
    padding: 20px 20px 12px;
    margin-top: -24px;
    background: transparent;
    text-align: center;
}

.urgency-subhead {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-titles);
    text-align: center;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.urgency-text-compact {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 18px;
}

.urgency-text-compact .counter-restantes {
    font-weight: 700;
    color: var(--color-link);
    font-family: 'Courier New', monospace;
}

.urgency-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.urgency-warning {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 20px;
}

.counter-wrapper {
    margin: 30px 0;
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-section .counter-display {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-link);
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-link);
    background-clip: unset;
    text-shadow: none;
}

.urgency-section .counter-display #counterRestantes {
    color: var(--color-link);
    -webkit-text-fill-color: var(--color-link);
}

.urgency-section .counter-display .counter-sep {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-link);
    font-family: 'Courier New', monospace;
    -webkit-text-fill-color: var(--color-link);
}

.urgency-section .counter-display .counter-total {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-link);
    font-family: 'Courier New', monospace;
    -webkit-text-fill-color: var(--color-link);
}

.bonus-timer-inline {
    font-size: 1.05em;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--color-link);
    letter-spacing: 1px;
}

.hero-bonus-block .hero-bonus-text {
    margin-bottom: 0;
}

.cta-text {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 16px;
}

.cta-text .hero-cta-link {
    color: var(--color-link);
    text-decoration: underline;
    font-weight: 600;
    font-style: italic;
}

.cta-section .btn-secondary {
    display: inline-block;
    margin-top: 12px;
}

.cta-box {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 20px;
    border: 2px solid var(--blue-accent);
    border-radius: 12px;
    background: rgba(45, 125, 210, 0.04);
}

/* Story Time */
.story-section {
    padding: 60px 20px;
}

.story-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 15px;
}

.story-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-link);
    text-align: center;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 1.2em;
    color: var(--text-light);
}

.story-highlight {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-link);
    text-align: center;
    margin: 30px 0;
}

/* Premier CTA */
.cta-first {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Proof Blocks (par objection) */
.proof-block {
    margin-bottom: 60px;
}

.proof-block-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-link);
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-box {
    background: var(--dark-secondary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* Offer Flow */
.offer-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--dark-secondary);
    border-radius: 12px;
}

.offer-flow p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 1.5em;
    color: var(--text-light);
}

.offer-flow strong {
    font-size: 20px;
    color: var(--color-link);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile - optimisation téléphone (landing aligned) */
@media (max-width: 767px) {
    .hero-section {
        padding: 40px 16px;
    }
    .hero-section .container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .hero-section .hero-image-block {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        min-width: 0;
    }
    .hero-section .hero-image-block .hero-image-img {
        max-width: 100%;
        border-radius: 12px;
    }
    .hero-title {
        font-size: 28px;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-subhead {
        font-size: 18px;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-text {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
    .hero-cta-inline {
        display: block;
        width: 100%;
        margin: 14px 0;
    }
    .hero-bonus-block {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-bonus-link {
        padding: 12px 16px;
    }
    .hero-bonus-text {
        text-align: left;
    }
    .cta-section .cta-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    .cta-section .cta-text {
        font-size: 15px;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .cta-section {
        padding: 40px 16px;
    }
    .cta-section .container {
        padding: 0 16px;
    }
    .container {
        padding: 0 16px;
    }
    .btn-large,
    .cta-section .btn,
    .btn-after-hero {
        min-height: 44px;
        padding: 14px 24px;
        font-size: 15px;
    }
    .urgency-section-compact .container {
        padding: 0 16px;
    }
    .urgency-text-compact {
        font-size: 15px;
        text-align: left;
        max-width: 100%;
        padding: 0;
    }
    .urgency-subhead {
        text-align: left;
    }
    .avis-section {
        max-width: 100%;
    }
    .avis-section .container {
        padding: 0 16px;
    }
    .avis-title {
        text-align: left;
    }
}
