/* ================================
   FASTPANEL - PAGE PRODUIT DYNAMIQUE
   Style moderne Mobile-First inspiré du design FastPanel
   Utilise les CSS variables --game-primary et --game-secondary
   ================================ */

/* Variables définies dynamiquement par PHP dans la page
   --game-primary: couleur principale du jeu
   --game-secondary: couleur secondaire du jeu
   --game-primary-rgb: RGB de la couleur principale
   --game-secondary-rgb: RGB de la couleur secondaire
*/

/* CSS Variables de base (copiées de index-style.css) */
:root {
    --primary-900: #181a1b;
    --primary-800: #1e2022;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;
    --primary-50: #f8fafc;
    --green-500: #22c55e;
    --green-400: #4ade80;
    --white: #ffffff;
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ================================
   FOND GLOBAL — aligné sur index.php / game.php
   ================================ */
body {
    background-color: #181a1b !important;
    background-image:
        radial-gradient(ellipse 75% 65% at 50% 0%,   rgba(18,20,22,0.85)  0%, transparent 70%),
        radial-gradient(ellipse 55% 50% at 5%  20%,  rgba(79,195,247,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 92% 55%,  rgba(79,195,247,0.03) 0%, transparent 55%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* ================================
   NAVIGATION BAR
   ================================ */

.navigation-bar,
.sticky-wrapper {
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
}

.header-top-area {
    z-index: 1 !important;
    position: relative !important;
}

/* ================================
   HERO SECTION - MOBILE FIRST
   ================================ */

.game-product-hero {
    background: linear-gradient(135deg, var(--primary-900) 0%, #181a1b 50%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Mobile first: padding plus petit */
    padding: 100px 0 60px;
}

/* Fondu en bas du hero vers la section suivante */
.game-product-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(24, 26, 27, 0.3) 30%,
        rgba(24, 26, 27, 0.7) 60%,
        var(--primary-900) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Image de fond avec effet de fondu */
.game-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.65;
}

/* Overlay avec fondu dégradé pour l'image de fond */
.game-background-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(24, 26, 27, 0.15) 0%,
        rgba(24, 26, 27, 0.35) 30%,
        rgba(24, 26, 27, 0.6) 60%,
        rgba(24, 26, 27, 0.85) 80%,
        rgba(24, 26, 27, 1) 100%
    );
    z-index: 1;
}

/* Background animé subtil */
.game-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(var(--game-primary-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(var(--game-primary-rgb), 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(var(--game-secondary-rgb), 0.06) 0%, transparent 40%);
}

/* Particules subtiles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle.game-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--game-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s ease-in-out infinite;
}

.particle.game-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle.game-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 3s; }
.particle.game-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 6s; }
.particle.game-particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 9s; }
.particle.game-particle:nth-child(5) { top: 15%; left: 50%; animation-delay: 12s; }
.particle.game-particle:nth-child(6) { top: 80%; left: 85%; animation-delay: 15s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
}

/* Orbs gradient - cachés par défaut, affichés sur grand écran */
.gradient-orbs,
.orb.game-orb {
    display: none;
}

/* Hero content - Mobile first */
.hero-content-ultra {
    position: relative;
    z-index: 2;
}

/* Badge - Mobile first */
.game-badge {
    background: rgba(var(--game-primary-rgb), 0.1);
    border: 1px solid rgba(var(--game-primary-rgb), 0.3);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.badge-text {
    color: var(--game-primary);
    font-size: 13px;
    font-weight: 500;
}

.badge-text strong {
    color: var(--white);
}

/* Breadcrumb - Mobile first */
.modern-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
    font-size: 12px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-300);
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-item:hover {
    color: var(--game-primary);
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 4px;
    color: var(--primary-500);
    font-size: 10px;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--game-primary);
    font-weight: 600;
}

/* Titre Hero - Mobile first */
.game-title {
    font-size: clamp(2rem, 5vw + 0.2rem, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.game-title .title-line-1,
.game-title .title-line-3 {
    display: block;
    color: var(--white);
}

.game-title .title-line-2 {
    display: block;
}

.title-gradient.game-gradient {
    background: linear-gradient(135deg, var(--game-primary) 0%, var(--game-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight.game-highlight {
    color: var(--game-primary);
}

/* Sous-titre - Mobile first */
.hero-subtitle-ultra {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--primary-300);
    margin-bottom: 28px;
    max-width: 100%;
}

.hero-subtitle-ultra strong {
    color: var(--white);
    font-weight: 600;
}

/* Métriques - Mobile first: grille 1 colonne */
.game-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--game-primary-rgb), 0.3);
    transform: translateY(-2px);
}

.game-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* Boutons d'action - Mobile first: stack vertical */
.game-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.game-primary {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(var(--game-primary-rgb), 0.4);
}

.game-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(var(--game-primary-rgb), 0.5);
    color: var(--white);
    text-decoration: none;
}

.btn-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-arrow {
    opacity: 0.7;
    transition: transform 0.2s ease;
    margin-left: auto;
}

.game-primary:hover .btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.game-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
}

.game-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* Garanties - Mobile first - Style identique aux badges */
.game-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.game-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.game-guarantee:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.game-guarantee i {
    color: var(--green-400);
    font-size: 14px;
}

/* ================================
   HERO RESPONSIVE - Tablet (768px+)
   ================================ */

@media (min-width: 768px) {
    .game-product-hero {
        padding: 100px 0 80px;
    }

    .game-badge {
        padding: 10px 20px;
        gap: 12px;
        margin-bottom: 28px;
    }

    .badge-text {
        font-size: 14px;
    }

    .modern-breadcrumb {
        font-size: 14px;
        gap: 0;
        margin: 20px 0 28px;
    }

    .breadcrumb-separator {
        margin: 0 12px;
    }

    .game-title {
        margin-bottom: 24px;
    }

    .hero-subtitle-ultra {
        font-size: 1.1rem;
        margin-bottom: 36px;
        max-width: 540px;
    }

    .game-metrics {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .game-card {
        flex: 1;
        min-width: calc(50% - 8px);
    }

    .game-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }

    .game-primary {
        padding: 16px 24px;
    }

    .game-secondary {
        padding: 14px 24px;
        justify-content: flex-start;
    }

    .game-guarantees {
        gap: 12px;
        justify-content: flex-start;
    }

    .game-guarantee {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* ================================
   HERO RESPONSIVE - Desktop (992px+)
   ================================ */

@media (min-width: 992px) {
    .game-product-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .gradient-orbs {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .orb.game-orb {
        display: block;
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(var(--game-primary-rgb), 0.15) 0%, transparent 70%);
        filter: blur(60px);
        animation: pulseOrb 6s ease-in-out infinite;
    }

    .orb.orb-1 { width: 400px; height: 400px; top: 10%; left: 5%; animation-delay: 0s; }
    .orb.orb-2 { width: 300px; height: 300px; bottom: 20%; right: 10%; animation-delay: 2s; }
    .orb.orb-3 { width: 350px; height: 350px; top: 50%; right: 5%; animation-delay: 4s; }

    @keyframes pulseOrb {
        0%, 100% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.05); }
    }

    .game-badge {
        margin-bottom: 32px;
    }

    .hero-subtitle-ultra {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }

    .game-metrics {
        gap: 16px;
        margin-bottom: 40px;
    }

    .game-card {
        min-width: auto;
        flex: 0 1 auto;
        padding: 16px 20px;
    }

    .game-actions {
        gap: 16px;
        margin-bottom: 32px;
    }

    .game-primary {
        padding: 16px 28px;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ================================
   DASHBOARD MOCKUP - Style index.php (Mobile-First)
   ================================ */

/* Hero Visual - Caché sur mobile, visible sur desktop */
.hero-visual {
    display: none;
    position: relative;
    z-index: 2;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.mockup-header {
    background: var(--primary-900);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-title {
    font-weight: 600;
    color: var(--primary-300);
    font-size: 13px;
}

.mockup-content {
    padding: 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

.stat-icon.cpu { background: var(--game-primary); }
.stat-icon.ram { background: var(--green-500); }

.stat-info {
    flex: 1;
}

.stat-label {
    color: var(--primary-400);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.mockup-content .stat-value {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--game-primary), var(--game-secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.service-item:hover,
.service-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--game-primary-rgb), 0.2);
}

.service-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-status.online {
    background: var(--green-400);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.service-status.maintenance {
    background: #fb923c;
    box-shadow: 0 0 8px rgba(251, 146, 60, 0.5);
}

.mockup-content .service-info {
    flex: 1;
    min-width: 0;
}

.service-name {
    color: var(--white);
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
}

.service-uptime {
    color: var(--primary-400);
    font-size: 11px;
}

.service-action {
    color: var(--primary-500);
    font-size: 14px;
}

/* Floating Cards - Cachés sur mobile */
.floating-cards {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: floatCard 8s ease-in-out infinite;
}

.floating-card i {
    color: var(--game-primary);
}

.card-1 { top: 10%; right: -10px; animation-delay: 0s; }
.card-2 { bottom: 40%; left: -15px; animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Dashboard visible sur Desktop (992px+) */
@media (min-width: 992px) {
    .hero-visual {
        display: block;
    }

    .floating-cards {
        display: block;
    }
}

/* ================================
   PRICING SECTION - Mobile First
   ================================ */

.game-pricing {
    background: transparent;
    padding: 60px 0;
    position: relative;
}

.game-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    background: rgba(var(--game-primary-rgb), 0.1);
    border: 1px solid rgba(var(--game-primary-rgb), 0.3);
    color: var(--game-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.section-title-ultra {
    font-size: clamp(1.75rem, 2.5vw + 0.8rem, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.title-normal {
    color: var(--white);
}

.section-subtitle-ultra {
    color: var(--primary-400);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 100%;
    padding: 0 16px;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.deco-line {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, transparent 0%, var(--game-primary) 50%, transparent 100%);
}

.deco-diamond {
    width: 10px;
    height: 10px;
    background: var(--game-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(var(--game-primary-rgb), 0.5);
}

/* ================================
   PRICING SECTION — Responsive
   ================================ */

@media (min-width: 768px) {
    .game-pricing { padding: 80px 0; }
    .game-pricing-header { margin-bottom: 50px; }
    .section-badge { padding: 8px 20px; font-size: 14px; margin-bottom: 24px; }
    .section-title-ultra { margin-bottom: 20px; }
    .section-subtitle-ultra { font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
    .deco-line { width: 50px; }
}

@media (min-width: 992px) {
    .game-pricing { padding: 100px 0; }
    .game-pricing-header { margin-bottom: 60px; }
    .section-subtitle-ultra { font-size: 1.1rem; max-width: 600px; margin-bottom: 30px; }
    .section-decoration { gap: 20px; }
    .deco-line { width: 60px; }
    .deco-diamond { width: 12px; height: 12px; }
}

/* ================================
   GAME PRICING CARDS
   ================================ */

.gpc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
@media (min-width: 560px) { .gpc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .gpc-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

/* ─── Carte de base ─── */
.gpc-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 24px 22px 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
    display: flex;
    flex-direction: column;
}
.gpc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--game-primary-rgb), .28);
}
.gpc-card--featured {
    border-color: rgba(var(--game-primary-rgb), .3);
    background: rgba(var(--game-primary-rgb), .04);
}
.gpc-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(var(--game-primary-rgb), .07) 0%, transparent 60%);
    pointer-events: none;
}
.gpc-card--custom {
    border-style: dashed;
    border-color: rgba(var(--game-primary-rgb), .25);
    background: rgba(var(--game-primary-rgb), .02);
}

/* ─── Badge ─── */
.gpc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 14px;
    width: fit-content;
}
.gpc-badge--popular {
    background: rgba(var(--game-primary-rgb), .12);
    border: 1px solid rgba(var(--game-primary-rgb), .28);
    color: var(--game-primary);
}
.gpc-badge--custom {
    background: rgba(var(--game-primary-rgb), .1);
    border: 1px solid rgba(var(--game-primary-rgb), .22);
    color: var(--game-primary);
}
.gpc-badge-spacer { height: 26px; margin-bottom: 14px; }

/* ─── Nom du plan ─── */
.gpc-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 12px;
    letter-spacing: -.2px;
}

/* ─── Prix ─── */
.gpc-plan-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 16px;
}
.gpc-price-cur {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,.4);
}
.gpc-price-val {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
}
.gpc-card--featured .gpc-price-val {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gpc-price-per {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    align-self: flex-end;
    margin-bottom: 5px;
}

/* Prix custom */
.gpc-plan-price--custom {
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.gpc-custom-icon {
    width: 44px;
    height: 44px;
    background: rgba(var(--game-primary-rgb), .1);
    border: 1px solid rgba(var(--game-primary-rgb), .22);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--game-primary);
    flex-shrink: 0;
}
.gpc-price-per--custom {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
}

/* ─── Specs row ─── */
.gpc-specs-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    padding: 10px 0;
    margin-bottom: 16px;
}
.gpc-spec-chip {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.gpc-spec-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,.07);
    flex-shrink: 0;
}
.gpc-spec-lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.28);
}
.gpc-spec-val {
    font-size: 12.5px;
    font-weight: 800;
    color: #f1f5f9;
}

/* ─── Divider ─── */
.gpc-divider { height: 1px; background: rgba(255,255,255,.07); margin: 0 0 18px; }

/* ─── Feature list ─── */
.gpc-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gpc-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.45;
}
.gpc-feat-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--game-primary); }
.gpc-feat-list li b { color: #f1f5f9; }
.gpc-feat--delivery svg { color: #4ade80; }
.gpc-delivery { color: #4ade80; }

/* ─── Boutons ─── */
.gpc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    width: 100%;
    font-family: inherit;
}
.gpc-btn--active {
    background: rgba(var(--game-primary-rgb), .1);
    border: 1px solid rgba(var(--game-primary-rgb), .2) !important;
    color: var(--game-primary);
}
.gpc-btn--active:hover {
    background: rgba(var(--game-primary-rgb), .18);
    transform: translateX(3px);
    text-decoration: none;
    color: var(--game-primary);
}
.gpc-btn--featured {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--game-primary-rgb), .4);
}
.gpc-btn--featured:hover {
    opacity: .9;
    transform: translateX(3px);
    text-decoration: none;
    color: #fff;
}
.gpc-btn--custom {
    background: rgba(var(--game-primary-rgb), .08);
    border: 1px solid rgba(var(--game-primary-rgb), .25) !important;
    color: var(--game-primary);
}
.gpc-btn--custom:hover {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: #fff;
    transform: translateX(3px);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(var(--game-primary-rgb), .35);
}

/* ================================
   LEGACY V2 — conservé pour compat
   ================================ */

.pricing-card-v2 {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.pricing-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--game-primary-rgb), 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(var(--game-primary-rgb), 0.08);
}

/* Glow blob interne */
.pcv2-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(var(--game-primary-rgb), 0.22) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pricing-card-v2:hover .pcv2-glow,
.pricing-card-v2--featured .pcv2-glow {
    opacity: 1;
}

/* Tous les enfants par-dessus le glow */
.pricing-card-v2 > *:not(.pcv2-glow) {
    position: relative;
    z-index: 1;
}

/* --- Featured card --- */
.pricing-card-v2--featured {
    border-color: rgba(var(--game-primary-rgb), 0.55) !important;
    background: rgba(var(--game-primary-rgb), 0.08) !important;
    box-shadow: 0 0 60px rgba(var(--game-primary-rgb), 0.15),
                0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1200px) {
    .pricing-card-v2--featured {
        transform: translateY(-14px);
    }
    .pricing-card-v2--featured:hover {
        transform: translateY(-22px);
    }
}

/* --- Custom card --- */
.pricing-card-v2--custom {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

/* ================================
   BADGE (Popular / Custom)
   ================================ */

.pcv2-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    border-radius: 0 0 14px 14px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 3;
}

.pcv2-badge--popular {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--game-primary-rgb), 0.45);
}

.pcv2-badge--custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    color: rgba(255, 255, 255, 0.45);
}

/* ================================
   HEADER DE CARTE
   ================================ */

.pcv2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    text-align: center;
}

.pcv2-name {
    font-size: 10.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* Icône carte custom */
.pcv2-custom-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--game-primary-rgb), 0.12);
    border: 1px solid rgba(var(--game-primary-rgb), 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--game-primary);
}

/* Affichage du prix */
.pcv2-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.pcv2-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pcv2-currency {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-400);
    align-self: flex-start;
    margin-top: 9px;
    line-height: 1;
}

.pcv2-amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-card-v2--featured .pcv2-amount {
    background: linear-gradient(135deg, var(--game-primary) 0%, var(--game-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(var(--game-primary-rgb), 0.5));
}

.pcv2-period {
    font-size: 12px;
    color: var(--primary-500);
    margin-left: 5px;
    align-self: flex-end;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Prix carte custom (texte) */
.pcv2-price-wrap--custom {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 0;
}

.pcv2-custom-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.35;
    text-align: center;
}

.pcv2-custom-label + .pcv2-custom-label {
    color: var(--primary-400);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Séparateur */
.pcv2-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
    margin: 0 -4px;
}

/* ================================
   BARRES DE RESSOURCES
   ================================ */

.pcv2-resources {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pcv2-resource {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pcv2-resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pcv2-resource-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pcv2-resource-label i {
    color: var(--game-primary);
    opacity: 0.85;
}

.pcv2-resource-value {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--white);
}

.pcv2-resource-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    overflow: hidden;
}

.pcv2-resource-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--game-primary), var(--game-secondary));
    border-radius: 99px;
    transform-origin: left center;
    animation: pcv2BarIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes pcv2BarIn {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.pcv2-resource-fill--pulse {
    animation: pcv2BarIn 1s cubic-bezier(0.4, 0, 0.2, 1) both,
               pcv2Pulse 3s 1s ease-in-out infinite;
}

@keyframes pcv2Pulse {
    0%, 100% { opacity: 0.45; }
    50%       { opacity: 1; }
}

/* ================================
   LISTE DE FONCTIONNALITÉS
   ================================ */

.pcv2-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcv2-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pcv2-features li:last-child {
    border-bottom: none;
}

.pcv2-feat-icon {
    width: 24px;
    height: 24px;
    background: rgba(var(--game-primary-rgb), 0.1);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.pricing-card-v2:hover .pcv2-feat-icon {
    background: rgba(var(--game-primary-rgb), 0.18);
}

.pcv2-feat-icon i {
    color: var(--game-primary);
    font-size: 10px;
}

.pcv2-feat-text {
    font-size: 12.5px;
    color: var(--primary-400);
    line-height: 1.3;
    flex: 1;
}

.pcv2-feat-text b {
    color: var(--white);
    font-weight: 600;
}

/* Tag livraison */
.pcv2-delivery-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80 !important;
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 1px 8px;
    border-radius: 99px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ================================
   BOUTON CTA
   ================================ */

.pcv2-cta {
    margin-top: auto;
}

.pcv2-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
    /* Défaut: verre subtil */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pcv2-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(var(--game-primary-rgb), 0.4);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Bouton carte featured */
.pcv2-btn--featured {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(var(--game-primary-rgb), 0.4);
    color: #fff;
}

.pcv2-btn--featured:hover {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    box-shadow: 0 8px 30px rgba(var(--game-primary-rgb), 0.55);
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
}

/* Bouton carte custom */
.pcv2-btn--custom {
    background: linear-gradient(135deg,
        rgba(var(--game-primary-rgb), 0.15),
        rgba(var(--game-primary-rgb), 0.08));
    border-color: rgba(var(--game-primary-rgb), 0.4);
    color: var(--game-primary);
}

.pcv2-btn--custom:hover {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(var(--game-primary-rgb), 0.45);
}

/* Flèche droite dans le bouton */
.pcv2-btn-arrow {
    margin-left: auto;
    opacity: 0.4;
    font-size: 11px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pcv2-btn:hover .pcv2-btn-arrow {
    transform: translateX(4px);
    opacity: 0.9;
}

/* ================================
   SECTION IMMERSIVE - Mobile First
   ================================ */

.game-immersive-section {
    background: transparent;
    padding: 60px 0;
    overflow: hidden;
}

/* Container des images empilées - Mobile First */
.stacked-images-container {
    position: relative;
    height: 280px;
    perspective: 1000px;
    margin-bottom: 40px;
}

/* Cartes d'images empilées - Mobile First */
.stacked-image-card {
    position: absolute;
    width: 160px;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stacked-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stacked-image-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--game-primary-rgb), 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}

/* Positionnement Mobile */
.stacked-card-1 {
    top: 0;
    left: 5%;
    transform: rotate(-6deg);
    z-index: 3;
    animation: float-card-1 6s ease-in-out infinite;
}

.stacked-card-2 {
    top: 70px;
    left: 30%;
    transform: rotate(4deg);
    z-index: 2;
    animation: float-card-2 7s ease-in-out infinite;
}

.stacked-card-3 {
    top: 150px;
    left: 10%;
    transform: rotate(-3deg);
    z-index: 1;
    animation: float-card-3 8s ease-in-out infinite;
}

.stacked-card-4 {
    top: 100px;
    left: 50%;
    transform: rotate(6deg);
    z-index: 0;
    animation: float-card-2 6.5s ease-in-out infinite reverse;
}

/* Hover effects */
.stacked-image-card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.08) translateY(-10px) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.stacked-image-card:hover img {
    transform: scale(1.05);
}

/* Animations de flottement */
@keyframes float-card-1 {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-10px); }
}

@keyframes float-card-2 {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-12px); }
}

@keyframes float-card-3 {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-8px); }
}

/* Contenu textuel - Mobile First */
.immersive-content {
    padding: 0;
    text-align: center;
}

.immersive-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.game-name-highlight {
    display: block;
    color: var(--game-primary);
}

.immersive-description {
    margin-bottom: 24px;
}

.description-primary {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--primary-300);
    margin-bottom: 16px;
}

.description-secondary {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--primary-400);
    padding-top: 16px;
    border-top: 2px solid rgba(var(--game-primary-rgb), 0.3);
}

/* Mini features list - Mobile First */
.immersive-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--primary-300);
    transition: all 0.2s ease;
}

.mini-feature:hover {
    background: rgba(var(--game-primary-rgb), 0.1);
    border-color: rgba(var(--game-primary-rgb), 0.3);
}

.mini-feature i {
    color: var(--game-primary);
    font-size: 0.85rem;
}

/* CTA Button - Mobile First */
.immersive-cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(var(--game-primary-rgb), 0.3);
    transition: all 0.2s ease;
}

.immersive-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--game-primary-rgb), 0.4);
    color: var(--white);
    text-decoration: none;
}

.immersive-cta i {
    transition: transform 0.2s ease;
}

.immersive-cta:hover i {
    transform: translateX(4px);
}

/* Section Immersive - Tablet (768px+) */
@media (min-width: 768px) {
    .game-immersive-section {
        padding: 80px 0;
    }

    .stacked-images-container {
        height: 380px;
        margin-bottom: 50px;
    }

    .stacked-image-card {
        width: 220px;
        height: 150px;
        border-radius: var(--radius-lg);
    }

    .stacked-card-1 { left: 10%; top: 0; }
    .stacked-card-2 { left: 35%; top: 100px; }
    .stacked-card-3 { left: 5%; top: 220px; }
    .stacked-card-4 { left: 45%; top: 160px; }

    .immersive-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }

    .description-primary {
        font-size: 1.05rem;
    }

    .mini-feature {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .immersive-cta {
        width: auto;
        display: inline-flex;
        padding: 16px 28px;
    }
}

/* Section Immersive - Desktop (992px+) */
@media (min-width: 992px) {
    .game-immersive-section {
        padding: 100px 0;
    }

    .stacked-images-container {
        height: 500px;
        margin-bottom: 0;
    }

    .stacked-image-card {
        width: 300px;
        height: 200px;
    }

    .stacked-card-1 { left: 10%; top: 0; transform: rotate(-8deg); }
    .stacked-card-2 { left: 40%; top: 120px; transform: rotate(5deg); }
    .stacked-card-3 { left: 5%; top: 260px; transform: rotate(-3deg); }
    .stacked-card-4 { left: 55%; top: 200px; transform: rotate(8deg); }

    @keyframes float-card-1 {
        0%, 100% { transform: rotate(-8deg) translateY(0); }
        50% { transform: rotate(-6deg) translateY(-15px); }
    }

    @keyframes float-card-2 {
        0%, 100% { transform: rotate(5deg) translateY(0); }
        50% { transform: rotate(7deg) translateY(-20px); }
    }

    @keyframes float-card-3 {
        0%, 100% { transform: rotate(-3deg) translateY(0); }
        50% { transform: rotate(-5deg) translateY(-12px); }
    }

    .immersive-content {
        padding-left: 50px;
        text-align: left;
    }

    .immersive-title {
        font-size: 2.5rem;
        margin-bottom: 32px;
    }

    .description-primary {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .description-secondary {
        border-top: none;
        padding-top: 0;
        padding-left: 20px;
        border-left: 3px solid var(--game-primary);
    }

    .immersive-features {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 36px;
    }

    .mini-feature {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .immersive-cta {
        padding: 18px 32px;
        font-size: 1rem;
    }
}

/* ================================
   INCLUS DANS TOUTES LES OFFRES
   ================================ */
.gp-included-section {
    background: transparent;
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.gp-included-head {
    text-align: center;
    margin-bottom: 52px;
}
.gp-included-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 900; color: #fff;
    letter-spacing: -.04em; line-height: 1.1; margin: 0 0 14px;
}
.gp-included-hl {
    background: linear-gradient(135deg, var(--game-primary, #3b82f6), var(--game-secondary, #60a5fa));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gp-included-head p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(.9rem, 1.2vw, 1rem);
    color: rgba(255,255,255,.40); max-width: 500px; margin: 0 auto; line-height: 1.7;
}
.gp-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gp-included-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px; padding: 24px 22px;
    transition: border-color .2s, background .2s;
}
.gp-included-item:hover {
    border-color: rgba(var(--game-primary-rgb, 59,130,246), .25);
    background: rgba(255,255,255,.05);
}
.gp-included-ico {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(var(--game-primary-rgb, 59,130,246), .10);
    border: 1px solid rgba(var(--game-primary-rgb, 59,130,246), .20);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--game-primary, #3b82f6); font-size: 1.1rem;
    transition: background .2s, box-shadow .2s;
}
.gp-included-item:hover .gp-included-ico {
    background: rgba(var(--game-primary-rgb, 59,130,246), .18);
    box-shadow: 0 0 16px rgba(var(--game-primary-rgb, 59,130,246), .18);
}
.gp-included-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem; font-weight: 700;
    color: #e8e8e8; margin: 0 0 6px; line-height: 1.3;
}
.gp-included-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem; color: rgba(255,255,255,.38);
    line-height: 1.65; margin: 0;
}
@media (max-width: 991px) { .gp-included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .gp-included-grid { grid-template-columns: 1fr; } }

/* ================================
   MINI FAQ
   ================================ */
.gp-minifaq-section {
    background: transparent;
    padding: 72px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.gp-minifaq-head {
    text-align: center;
    margin-bottom: 40px;
}
.gp-minifaq-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 900; color: #fff;
    letter-spacing: -.04em; margin: 0;
}
.gp-minifaq-grid {
    max-width: 760px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 10px;
}
.gp-minifaq-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px; overflow: hidden;
    transition: border-color .2s;
}
.gp-minifaq-item:hover { border-color: rgba(var(--game-primary-rgb, 59,130,246), .22); }
.gp-minifaq-item.open  { border-color: rgba(var(--game-primary-rgb, 59,130,246), .32); background: rgba(var(--game-primary-rgb, 59,130,246), .04); }
.gp-minifaq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 18px 22px;
    background: transparent; border: none; cursor: pointer; text-align: left;
}
.gp-minifaq-q span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(.88rem, 1vw, .97rem);
    font-weight: 700; color: #e2e2e2; line-height: 1.4;
}
.gp-minifaq-q i {
    font-size: 12px; color: var(--game-primary, #3b82f6);
    flex-shrink: 0; transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.gp-minifaq-item.open .gp-minifaq-q i { transform: rotate(180deg); }
.gp-minifaq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 22px;
}
.gp-minifaq-item.open .gp-minifaq-a {
    max-height: 300px;
    padding: 0 22px 20px;
}
.gp-minifaq-a p {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem; color: rgba(255,255,255,.45);
    line-height: 1.75; margin: 0;
}
.gp-minifaq-a p strong { color: rgba(255,255,255,.75); font-weight: 600; }

/* ================================
   SUPPORT CTA SECTION - Mobile First
   ================================ */

.game-support-cta {
    background: transparent;
    padding: 60px 0;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    backdrop-filter: blur(10px);
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.support-text {
    flex: 1;
}

.support-text h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-text p {
    color: var(--primary-400);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn-support-primary {
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(var(--game-primary-rgb), 0.3);
}

.btn-support-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--game-primary-rgb), 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-support-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
}

.btn-support-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* Support CTA - Tablet (768px+) */
@media (min-width: 768px) {
    .game-support-cta {
        padding: 80px 0;
    }

    .support-card {
        padding: 40px 36px;
    }

    .support-content {
        flex-direction: row;
        text-align: left;
        gap: 32px;
    }

    .support-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .support-text h3 {
        font-size: 1.35rem;
    }

    .support-actions {
        flex-direction: row;
        width: auto;
    }

    .btn-support-primary,
    .btn-support-secondary {
        padding: 14px 24px;
        justify-content: flex-start;
    }
}

/* Support CTA - Desktop (992px+) */
@media (min-width: 992px) {
    .support-card {
        padding: 50px;
    }

    .support-content {
        gap: 40px;
    }

    .support-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        border-radius: 50%;
    }

    .support-text h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .support-text p {
        font-size: 1rem;
    }

    .btn-support-primary,
    .btn-support-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ================================
   ANIMATIONS GLOBALES
   ================================ */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}
