/* ========================================
   nitrohebergeur - THÈME MODERNE Nitrohebergeur
   ======================================== */

/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales - Inspiré de Nitrohebergeur */
    --primary-green: #10b981;
    --dark-green: #059669;
    --light-green: #34d399;
    --accent-green: #6ee7b7;
    --emerald: #10b981;
    
    /* Backgrounds */
    --dark-bg: #0a0e13;
    --darker-bg: #050811;
    --card-bg: #111827;
    --card-hover: #1f2937;
    
    /* Textes */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hover: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-green: 0 0 30px rgba(16, 185, 129, 0.3);
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
    background: var(--gradient);
    padding: 14px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 8px;
    transition: opacity 0.3s;
}

.announcement-bar a:hover {
    text-decoration: none;
    opacity: 0.9;
}


/* ========================================
   NAVBAR DROPDOWN MENUS
   ======================================== */

header {
    background: rgba(5, 8, 17, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(5, 8, 17, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 18px 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li > a .arrow {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s;
    display: inline-block;
}

.nav-menu li:hover > a .arrow {
    transform: rotate(180deg);
}

/* Le li couvre le gap entre le lien et le dropdown */
.has-dropdown {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.has-dropdown > a::after {
    display: none !important;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 0px);
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 9999;
    min-width: 700px;
    overflow: hidden;
    padding-top: 0;
}

.dropdown::before { display: none; }

.has-dropdown:hover .dropdown {
    display: flex;
}

/* Panneau gauche coloré */
.dropdown-left {
    width: 220px;
    background: linear-gradient(160deg, #0d1f1a 0%, #0a1a15 100%);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 260px;
}

.dropdown-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(16,185,129,0.25) 0%, transparent 70%);
}

.dropdown-left-icon {
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.dropdown-left h4 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.dropdown-left p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Panneau droit avec les liens */
.dropdown-right {
    flex: 1;
    padding: 24px 28px 12px;
}

.dropdown-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 8px;
}

.dropdown-section-title:first-child {
    margin-top: 0;
}

.dropdown-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 2px;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
}

.dropdown-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dropdown-item-icon img,
.dropdown-left-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.dropdown-left-icon img {
    width: 40px;
    height: 40px;
}

.dropdown-item-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.dropdown-item-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Barre du bas avec infos rapides */
.dropdown-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.dropdown-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 12px;
    white-space: nowrap;
}

.dropdown-footer-item span:first-child {
    font-size: 14px;
}

.dropdown-footer-link {
    margin-left: auto;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    padding: 8px 16px;
    background: rgba(16,185,129,0.1);
    border-radius: 8px;
    border: 1px solid rgba(16,185,129,0.3);
    transition: all 0.2s;
}

.dropdown-footer-link:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

/* Full dropdown wrapper */
.dropdown-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Panneau gauche coloré */
.dropdown-left {
    width: 220px;
    background: linear-gradient(160deg, #0d1f1a 0%, #0a1a15 100%);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.dropdown-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(16,185,129,0.25) 0%, transparent 70%);
}

.dropdown-left-icon {
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.dropdown-left h4 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.dropdown-left p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Panneau droit avec les liens */
.dropdown-right {
    flex: 1;
    padding: 24px 28px;
}

.dropdown-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    margin-top: 8px;
}

.dropdown-section-title:first-child {
    margin-top: 0;
}

.dropdown-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 4px;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
}

.dropdown-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.dropdown-item-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.dropdown-item-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Barre du bas avec infos rapides */
.dropdown-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 28px;
    display: flex;
    gap: 28px;
    align-items: center;
}

.dropdown-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.dropdown-footer-item span:first-child {
    color: var(--primary-green);
}

.dropdown-footer-link {
    margin-left: auto;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-footer-link:hover {
    color: var(--light-green);
}

/* Full dropdown wrapper */
.dropdown-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}
header {
    background-color: var(--darker-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 18px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--light-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient);
    padding: 12px 28px;
    border-radius: 10px;
    color: white !important;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary::after {
    display: none;
}

/* Bouton Espace Client - Style Vert Moderne */
.btn-client {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 12px 32px;
    border-radius: 12px;
    color: white !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-client::before {
    margin-right: 8px;
    font-size: 16px;
}

.btn-client:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-client::after {
    display: none;
}

/* Bouton Ressources - Style Thème Sombre Moderne */
.btn-resources {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 12px 24px;
    border-radius: 12px;
    color: #e2e8f0 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid #334155;
    backdrop-filter: blur(10px);
}

.btn-resources:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.1);
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-color: #065c12;
    color: white !important;
}

.btn-resources::after {
    display: none;
}

/* Dropdown Ressources - Style Spécial */
.resources-dropdown {
    min-width: 750px;
}

.resources-left {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
}

.resources-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(16,185,129,0.3)"/><stop offset="100%" style="stop-color:rgba(5,150,105,0.1)"/></linearGradient></defs><rect width="200" height="200" fill="url(%23grad)"/><circle cx="50" cy="50" r="30" fill="rgba(52,211,153,0.2)"/><circle cx="150" cy="150" r="40" fill="rgba(52,211,153,0.15)"/><path d="M0,100 Q50,80 100,100 T200,100" stroke="rgba(110,231,183,0.3)" stroke-width="2" fill="none"/></svg>');
    background-size: cover;
    opacity: 0.4;
}

.resources-text {
    position: relative;
    z-index: 1;
}

.resources-text h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resources-text p {
    color: #a7f3d0;
    font-size: 1rem;
    line-height: 1.5;
}

.mobile-menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--primary-green);
    user-select: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: floatSlow 25s ease-in-out infinite;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: floatSlow 20s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(30px, 30px) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #10b981 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto 52px;
    line-height: 1.75;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 20px 52px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5), var(--shadow-green);
}

.trust-badge {
    margin-top: 56px;
    padding: 28px 42px;
    background: var(--card-bg);
    border-radius: 16px;
    display: inline-block;
    border: 2px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.trust-badge:hover {
    border-color: var(--primary-green);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.badge-text {
    color: var(--text-secondary);
    font-size: 18px;
}

.badge-text strong {
    color: var(--primary-green);
    font-size: 34px;
    font-weight: 900;
}


/* ========================================
   OFFERS SECTION
   ======================================== */
.offers {
    padding: 110px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.offers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 400;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.offer-card:hover::after {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--shadow-green);
    border-color: rgba(16, 185, 129, 0.3);
    background: var(--card-hover);
}

.offer-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-card h3 {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.offer-card > p {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.offer-features {
    list-style: none;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.offer-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.offer-card:hover .offer-features li {
    color: var(--text-primary);
}

.offer-features li:before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.offer-price {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 16px;
    color: var(--text-muted);
}

.price strong {
    font-size: 36px;
    color: var(--primary-green);
    font-weight: 900;
    letter-spacing: -1px;
}

.btn-offer {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    color: var(--primary-green);
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.btn-offer:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}


/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
    padding: 110px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover::before {
    transform: scaleY(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.2);
    background: var(--card-hover);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 24px;
    filter: grayscale(0.2);
    transition: transform 0.3s;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(-5deg);
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.advantage-card:hover h3 {
    color: var(--primary-green);
}

.advantage-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    transition: color 0.3s;
}

.advantage-card:hover p {
    color: var(--text-secondary);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 110px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
}

.reviews-header {
    text-align: center;
    margin-bottom: 64px;
}

.rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    padding: 36px 56px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.rating-badge:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: var(--shadow-lg), var(--shadow-green);
}

.rating-text {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.stars {
    font-size: 32px;
    margin: 10px 0;
    letter-spacing: 6px;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.rating-label {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.rating-score {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.2);
    background: var(--card-hover);
}

.review-content h3 {
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 700;
    transition: color 0.3s;
}

.review-card:hover .review-content h3 {
    color: var(--primary-green);
}

.review-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    transition: color 0.3s;
}

.review-card:hover .review-content p {
    color: var(--text-secondary);
}

.review-rating {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-author {
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ========================================
   INFRASTRUCTURE SECTION
   ======================================== */
.infrastructure {
    padding: 110px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.infrastructure::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.infra-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    cursor: default;
}

.infra-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.infra-item:hover {
    padding-left: 12px;
}

.infra-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.infra-item:hover h3 {
    color: var(--primary-green);
}

.infra-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    transition: color 0.3s;
}

.infra-item:hover p {
    color: var(--text-secondary);
}

.infrastructure-image {
    background: var(--card-bg);
    height: 520px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.2);
    overflow: hidden;
    transition: all 0.4s;
}

.infrastructure-image:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: var(--shadow-xl), var(--shadow-green);
}

.infrastructure-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(16, 185, 129, 0.03) 50px,
            rgba(16, 185, 129, 0.03) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(16, 185, 129, 0.03) 50px,
            rgba(16, 185, 129, 0.03) 51px
        );
}

.location-badge {
    text-align: center;
    z-index: 1;
    padding: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(20px);
}

.location-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.location-text {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.location-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners {
    padding: 80px 0;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.partners .section-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.partners .section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.partners-scroll {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    overflow-x: auto;
    padding: 20px 0;
}

.partners-scroll::-webkit-scrollbar {
    height: 6px;
}

.partners-scroll::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 10px;
}

.partners-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.partner-item {
    flex-shrink: 0;
    padding: 24px 40px;
    background: var(--card-bg);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-secondary);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.partner-item:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
    padding: 110px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover::after {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.15);
    background: var(--card-hover);
}

.blog-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.blog-date {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: var(--primary-green);
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
    transition: color 0.3s;
}

.blog-card:hover p {
    color: var(--text-secondary);
}

.blog-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    color: var(--light-green);
    gap: 10px;
}


/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 110px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 44px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--dark-green);
    padding: 20px 52px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background-color: var(--darker-bg);
    padding: 90px 0 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 70px;
}

.footer-section h3 {
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 28px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-green);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 18px;
    background: var(--card-bg);
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.social-link svg {
    flex-shrink: 0;
    transition: color 0.3s;
}

.social-link:hover {
    border-color: var(--primary-green);
    color: var(--primary-green) !important;
    background: rgba(16, 185, 129, 0.1);
}

.footer-payment {
    text-align: center;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 36px;
}

.footer-payment p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icons span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.payment-icons span svg {
    flex-shrink: 0;
}

.payment-icons span:hover {
    color: var(--primary-green);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-green);
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .infrastructure-grid {
        gap: 48px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid,
    .advantages-grid,
    .reviews-container,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .offers,
    .advantages,
    .reviews,
    .infrastructure,
    .blog,
    .cta-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .offers-grid,
    .advantages-grid,
    .reviews-container,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .offers,
    .advantages,
    .reviews,
    .infrastructure,
    .blog,
    .cta-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .offer-card,
    .advantage-card,
    .blog-card {
        padding: 28px;
    }
    
    .offer-card h3 {
        font-size: 26px;
    }
    
    .logo {
        font-size: 26px;
    }
    
    .announcement-bar {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.offer-card,
.advantage-card,
.blog-card,
.review-card {
    animation: fadeInUp 0.7s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--primary-green);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-green);
    color: white;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

/* Focus states pour accessibilité */
a:focus,
button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Transitions globales */
a, button, .offer-card, .advantage-card, .blog-card {
    transition: all 0.3s ease;
}

/* ==========================================
   RIPPLE EFFECT
   ======================================== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ==========================================
   LOADING STATE
   ======================================== */
body:not(.loaded) .hero-content {
    opacity: 0;
    transform: translateY(30px);
}

body.loaded .hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ==========================================
   GLOW EFFECTS
   ======================================== */
.btn-hero::before,
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s;
}

.btn-hero:hover::before,
.btn-primary:hover::before {
    opacity: 0.7;
}

/* ==========================================
   CARD GLOW ON HOVER
   ======================================== */
.offer-card,
.advantage-card,
.blog-card,
.review-card {
    position: relative;
}

.offer-card::before,
.advantage-card::before,
.blog-card::before,
.review-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(16, 185, 129, 0.4) 0%,
        transparent 50%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.offer-card:hover::before,
.advantage-card:hover::before,
.blog-card:hover::before,
.review-card:hover::before {
    opacity: 1;
}


/* ==========================================
   GAME CARDS - Style Nitrohebergeur Moderne
   ========================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.game-badge {
    background: var(--gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.game-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.game-card:hover h3 {
    color: var(--primary-green);
}

.game-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s;
}

.game-card:hover p {
    color: var(--text-secondary);
}

.game-price {
    margin-bottom: 18px;
    font-size: 14px;
}

.game-price strong {
    color: var(--primary-green);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.game-card a {
    display: block;
    text-align: center;
    background: transparent;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    color: var(--primary-green);
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

.game-card a:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* ==========================================
   COMPARISON TABLE - Style Moderne
   ========================================== */
.comparison-section {
    padding: 110px 0;
    background: var(--dark-bg);
    position: relative;
}

.comparison-table {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table thead tr {
    background: var(--gradient);
}

.comparison-table th {
    padding: 24px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.comparison-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.comparison-table td {
    padding: 18px 24px;
    color: var(--text-secondary);
    font-size: 15px;
}

.comparison-table td:not(:first-child) {
    text-align: center;
    color: var(--text-primary);
}

.comparison-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================
   FAQ SECTION - Style Moderne
   ========================================== */
.faq-section {
    padding: 110px 0;
    background: var(--darker-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* ==========================================
   PRICING CARDS - Style Moderne
   ========================================== */
.pricing-details {
    padding: 110px 0;
    background: var(--darker-bg);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-green);
    border-color: var(--primary-green);
}

.pricing-card h4 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.pricing-card ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.pricing-card ul li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    transition: color 0.3s, padding-left 0.3s;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card:hover ul li {
    color: var(--text-primary);
    padding-left: 8px;
}

/* ==========================================
   HERO ENHANCEMENTS
   ========================================== */
.hero {
    position: relative;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   SMOOTH TRANSITIONS
   ========================================== */
* {
    scroll-behavior: smooth;
}

/* ==========================================
   MOBILE ENHANCEMENTS
   ========================================== */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .game-card {
        padding: 24px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 28px;
    }
}

/* ==========================================
   LOADING ANIMATIONS
   ========================================== */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card,
.faq-item,
.pricing-card {
    animation: slideInFromBottom 0.6s ease-out;
    animation-fill-mode: both;
}

.game-card:nth-child(1) { animation-delay: 0.05s; }
.game-card:nth-child(2) { animation-delay: 0.1s; }
.game-card:nth-child(3) { animation-delay: 0.15s; }
.game-card:nth-child(4) { animation-delay: 0.2s; }
.game-card:nth-child(5) { animation-delay: 0.25s; }
.game-card:nth-child(6) { animation-delay: 0.3s; }
.game-card:nth-child(7) { animation-delay: 0.35s; }
.game-card:nth-child(8) { animation-delay: 0.4s; }
.game-card:nth-child(9) { animation-delay: 0.45s; }
.game-card:nth-child(10) { animation-delay: 0.5s; }
.game-card:nth-child(11) { animation-delay: 0.55s; }
.game-card:nth-child(12) { animation-delay: 0.6s; }
