/* ================================
   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: #0f172a;
    --primary-800: #1e293b;
    --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;
}

/* ================================
   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%, #0c1929 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(15, 23, 42, 0.3) 30%,
        rgba(15, 23, 42, 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(15, 23, 42, 0.15) 0%,
        rgba(15, 23, 42, 0.35) 30%,
        rgba(15, 23, 42, 0.6) 60%,
        rgba(15, 23, 42, 0.85) 80%,
        rgba(15, 23, 42, 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: 2rem;
    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 {
        font-size: 2.8rem;
        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;
    }

    .game-title {
        font-size: 3.5rem;
    }

    .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: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
    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: 1.75rem;
    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 Grid - Mobile First: 1 colonne */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-grid .col-lg-3,
.pricing-grid .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Pricing Grid - Tablet (768px+): 2 colonnes */
@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 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section-subtitle-ultra {
        font-size: 1.05rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .deco-line {
        width: 50px;
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .pricing-grid .col-lg-3,
    .pricing-grid .col-md-6 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

/* Pricing Grid - Desktop (992px+): 4 colonnes */
@media (min-width: 992px) {
    .game-pricing {
        padding: 100px 0;
    }

    .game-pricing-header {
        margin-bottom: 60px;
    }

    .section-title-ultra {
        font-size: 2.5rem;
    }

    .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;
    }

    .pricing-grid .col-lg-3,
    .pricing-grid .col-md-6 {
        flex: 0 0 calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}

/* Pricing Cards - Mobile First */
.pricing-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card-ultra:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--game-primary-rgb), 0.3);
    transform: translateY(-4px);
}

/* Featured Card */
.featured-card {
    border-color: rgba(var(--game-primary-rgb), 0.5) !important;
    background: rgba(var(--game-primary-rgb), 0.08) !important;
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Custom Card */
.custom-card {
    background: rgba(var(--game-primary-rgb), 0.05) !important;
    border-color: rgba(var(--game-primary-rgb), 0.3) !important;
}

.custom-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(45deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    padding: 4px 36px;
    transform: rotate(45deg);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.custom-icon {
    background: rgba(var(--game-primary-rgb), 0.1);
    border: 1px solid rgba(var(--game-primary-rgb), 0.2);
    border-radius: var(--radius-md);
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon i {
    font-size: 1.25em;
    color: var(--game-primary);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.plan-name {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 16px;
    color: var(--game-primary);
    font-weight: 700;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--game-primary);
    line-height: 1;
}

.subscription {
    color: var(--primary-400);
    font-size: 13px;
    margin-left: 4px;
}

/* Pricing Content */
.pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--primary-300);
    font-size: 13px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--game-primary);
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

.pricing-features li b {
    color: var(--white);
}

.dispo__span.high {
    background: var(--green-500);
    color: var(--white);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
}

/* Pricing Button */
.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(var(--game-primary-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--game-primary-rgb), 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Pricing Cards - Tablet (768px+) */
@media (min-width: 768px) {
    .pricing-card-ultra {
        padding: 28px 24px;
    }

    .plan-name {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .price {
        font-size: 40px;
    }

    .pricing-btn {
        padding: 14px 24px;
    }
}

/* Pricing Cards - Desktop (992px+) */
@media (min-width: 992px) {
    .pricing-card-ultra {
        padding: 30px;
    }

    .pricing-card-ultra:hover {
        transform: translateY(-8px);
    }

    .plan-name {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .price {
        font-size: 44px;
    }

    .custom-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .custom-icon i {
        font-size: 1.5em;
    }
}

/* ================================
   SECTION IMMERSIVE - Mobile First
   ================================ */

.game-immersive-section {
    background: linear-gradient(180deg, var(--primary-800) 0%, var(--primary-900) 100%);
    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;
    }
}

/* ================================
   SUPPORT CTA SECTION - Mobile First
   ================================ */

.game-support-cta {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--primary-800) 100%);
    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; }
}
