/* =================================
   MONOPOLYGO FR - STYLES
   ================================= */

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

:root {
    --primary-blue: #0EA5E9;
    --primary-gold: #F59E0B;
    --purple-gaming: #8B5CF6;
    --success-green: #10B981;
    --warning-orange: #F97316;
    
    --bg-dark: #0F172A;
    --bg-mid: #1E293B;
    --bg-card: #334155;
    --bg-light: #475569;
    
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #1E293B;
    
    --glow-blue: rgba(14, 165, 233, 0.4);
    --glow-gold: rgba(245, 158, 11, 0.4);
    --glow-purple: rgba(139, 92, 246, 0.4);
    --shadow-depth: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* Screen Reader Only - Accessible but invisible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {      
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
    animation: diceRoll 4s infinite ease-in-out;
}

@keyframes diceRoll {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-discord {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0284C7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--glow-blue);
}

.btn-nav-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section - FOND SOMBRE UNIFORME */
.futuristic-bg {
    background: #070d1f; /* Fond très sombre uniforme */
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #f59e0b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.glow-text {
    animation: neon-glow 1.5s ease-in-out infinite alternate;
    color: #fff;
}

@keyframes neon-glow {
    from { text-shadow: 0 0 10px #f59e0b, 0 0 20px #8b5cf6; }
    to { text-shadow: 0 0 20px #f59e0b, 0 0 30px #0ea5e9; }
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    min-height: 500px;
}

.neon-border {
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px #0ea5e9, inset 0 0 8px #0ea5e933;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neon-border:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 20px #0ea5e9, 0 0 40px #8b5cf6;
}

.animated-stats .stat-number {
    animation: countUp 2s ease-in-out forwards;
}

@keyframes countUp {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-banner-wrapper {
    max-width: 520px;
    margin: 50px auto 48px;
    position: relative;
    z-index: 1;
    border-radius: 48px;
}

/* Marge réduite sur mobile */
@media (max-width: 768px) {
    .hero-center {
        padding: 100px 20px 30px;  /* Compense navbar mobile */
        min-height: 350px;
    }
    
    .hero-banner-wrapper {
        margin: 20px auto 30px;    /* Très réduit sur mobile */
    }
}

@media (max-width: 480px) {
    .hero-center {
        padding: 90px 16px 20px;
        min-height: 300px;
    }
    
    .hero-banner-wrapper {
        margin: 10px auto 20px;
    }
}

.hero-banner-image {
    animation: none !important;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px var(--glow-blue);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--glow-gold);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0284C7 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--glow-blue);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--glow-blue);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-blue);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dice-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.dice-3d {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--bg-light) 100%);
    border-radius: 12px;
    position: absolute;
    box-shadow: var(--shadow-depth);
    animation: float 6s ease-in-out infinite;
}

.dice-3d::before {
    content: '⚫⚫\A⚫⚫\A⚫⚫';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: pre;
    text-align: center;
    line-height: 1.2;
    font-size: 0.8rem;
    color: var(--bg-dark);
}

.dice-2 {
    top: 60px;
    left: 60px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.7;
    animation: floatUp 8s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Apps Section */
.apps-section {
    padding: var(--section-padding);
    background: var(--bg-mid);
}

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

.app-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-depth);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-blue);
}

.app-card:hover::before {
    transform: scaleX(1);
}

.app-premium {
    border-color: var(--primary-gold);
}

.app-premium:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-gold);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.app-badges {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    z-index: 15 !important;
}

.app-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.app-title {
    color: var(--text-light);
    margin-bottom: 16px;
}

.app-pricing {
    margin-bottom: 16px;
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.price-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.app-description {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.app-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-icon {
    font-size: 1.25rem;
    width: 24px;
}

.app-compatibility {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compat-label {
    font-weight: 600;
    color: var(--text-light);
    margin-right: 8px;
}

.compat-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.app-footer {
    text-align: center;
}

.btn-app {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0284C7 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px var(--glow-blue);
    width: 100%;
}

.btn-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-blue);
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #D97706 100%);
    box-shadow: 0 6px 20px var(--glow-gold);
}

.btn-premium:hover {
    box-shadow: 0 10px 30px var(--glow-gold);
}

.btn-appvert {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    width: 100%;
}

.btn-appvert:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
}

.apps-cta {
    text-align: center;
}

/* Badges */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-gratuit {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.badge-populaire {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #D97706 100%);
    color: white;
    box-shadow: 0 4px 15px var(--glow-gold);
    position: relative;
    animation: pulse 2s infinite;
}

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

.badge-ios {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0284C7 100%);
    color: white;
    box-shadow: 0 4px 15px var(--glow-blue);
}

.badge-nouveau {
    background: linear-gradient(135deg, var(--warning-orange) 0%, #EA580C 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.badge-gains {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: white;
}

.badge-flash {
    background: linear-gradient(135deg, var(--warning-orange) 0%, #DC2626 100%);
    color: white;
    animation: flashPulse 1s infinite alternate;
}

@keyframes flashPulse {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.badge-update {
    background: linear-gradient(135deg, var(--purple-gaming) 0%, #7C3AED 100%);
    color: white;
}

/* News Section */
.news-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.news-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-depth);
    position: relative;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-blue);
}

.news-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    max-width: 120px;
    opacity: 1;
    visibility: visible;
}

.news-card .news-badges {
    opacity: 1 !important;
    visibility: visible !important;
}

.news-card:not(:hover) .news-badges {
    opacity: 1 !important;
    visibility: visible !important;
}

.news-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-placeholder {
    font-size: 3rem;
    opacity: 0.6;
}

.news-content {
    padding: 24px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    background: var(--bg-card) !important;
    min-height: 120px !important;
}

.news-title {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.news-date {
    color: var(--primary-gold);
    font-weight: 500;
}

.news-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.news-cta {
    text-align: center;
}

.news-tags {
    display: flex;
    gap: 8px !important;
    flex-wrap: wrap;
    margin-top: 12px;
}

.news-tag {
    background: rgba(139, 92, 246, 0.2) !important;
    color: var(--purple-gaming) !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    margin-right: 0 !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

.news-tag + .news-tag {
    margin-left: 8px !important;
}

/* Community Section */
.community-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.community-content {
    margin-bottom: 60px;
}

.community-stats {
    margin-bottom: 40px;
}

.discord-stats {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.discord-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.discord-icon {
    font-size: 3rem;
}

.discord-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.discord-details {
    text-align: left;
}

.discord-members {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.member-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success-green);
    font-size: 0.875rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.discord-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-blue);
    position: absolute;
    left: -16px;
    top: -8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

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

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
}

.community-cta {
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-mid);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-light);
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease !important;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg) !important;
    color: var(--primary-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease !important;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light);
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.social-link:hover {
    color: var(--primary-blue);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apps-grid {
        display: none !important;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .apps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 0 15px;
        margin: 20px 0;
    }
    
    .app-card {
        flex: 0 0 90%;
        max-width: 90%;
        scroll-snap-align: center;
        padding: 20px;
        max-height: 70vh;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .app-pricing {
        display: none !important;
    }
    
    .app-header {
        margin-bottom: 12px;
    }
    
    .app-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .app-features {
        margin-bottom: 12px;
    }
    
    .app-compatibility {
        padding: 10px;
        margin-bottom: 12px;
        font-size: 0.8rem;
    }
    
    .app-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .app-icon {
        font-size: 2.2rem;
    }
    
    .btn-app {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin-top: 6px;
        height: auto;
    }
    
    .feature-item {
        padding: 4px 0;
        margin-bottom: 6px;
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .feature-icon {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .app-features .feature-item:nth-child(n+6) {
        display: none;
    }
    
    .compat-label {
        font-size: 0.7rem;
    }
    
    .compat-text {
        font-size: 0.65rem;
    }
    
    .badge {
        padding: 2px 6px;
        font-size: 0.6rem;
    }
    
    .app-footer {
        margin-top: 8px;
    }
    
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
        padding: 20px 0;
    }
    
    .carousel-dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .carousel-dot.active {
        transform: scale(1.3);
        border-color: currentColor;
    }
    
    .app-card.active {
        transform: scale(1);
        opacity: 1;
        z-index: 10;
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 30px var(--glow-blue);
    }
    
    .app-card:not(.active) {
        transform: scale(0.9);
        opacity: 0.6;
        z-index: 5;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .app-card:nth-child(1).active {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 40px var(--glow-gold),
            0 0 60px rgba(245, 158, 11, 0.4);
    }
    
    .app-card:nth-child(2).active {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(16, 185, 129, 0.8);
    }
    
    .app-card:nth-child(3).active {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 40px var(--glow-blue);
    }
    
    .carousel-dot:nth-child(1).active {
        background: var(--primary-gold);
        box-shadow: 0 0 20px var(--glow-gold);
    }
    
    .carousel-dot:nth-child(2).active {
        background: var(--success-green);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
    
    .carousel-dot:nth-child(3).active {
        background: var(--primary-blue);
        box-shadow: 0 0 20px var(--glow-blue);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .discord-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .news-badges {
        top: 12px;
        right: 12px;
        max-width: 100px;
        gap: 6px;
    }
    
    .badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    .app-card:nth-child(2) .app-pricing {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .price-main {
        display: none !important;
    }
}

@media (max-width: 1201px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 8px;
        border: none;
        background: none;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-light);
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 30px;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex !important;
        animation: slideInFromTop 0.3s ease-out;
    }
    
    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--text-light) !important;
        padding: 15px 30px !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        min-width: 200px !important;
    }
    
    .nav-link:hover {
        background: rgba(14, 165, 233, 0.2) !important;
        color: var(--primary-blue) !important;
        transform: translateY(-2px) !important;
    }
    
    .nav-link.active {
        background: var(--primary-blue) !important;
        color: white !important;
    }
    
    .btn-nav-discord {
        font-size: 1.1rem !important;
        padding: 12px 24px !important;
        margin-top: 20px !important;
        box-shadow: 0 8px 25px var(--glow-blue) !important;
    }
    
    .btn-nav-discord:hover {
        transform: translateY(-3px) scale(1.05) !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .app-card, .news-card, .testimonial-card {
        padding: 16px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .app-card {
        padding: 16px;
        max-height: 68vh;
    }
    
    .app-title {
        font-size: 1.2rem;
    }
    
    .app-icon {
        font-size: 2rem;
    }
    
    .btn-app {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .app-features .feature-item:nth-child(n+5) {
        display: none;
    }
    
    .app-description {
        -webkit-line-clamp: 1;
    }
    
    .nav-menu.active {
        padding-top: 30px;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.1rem !important;
        min-width: 180px !important;
        padding: 12px 25px !important;
    }
}

/* Animations & Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll behavior */
html {
    scroll-padding-top: 70px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284C7;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-light) 50%, var(--bg-card) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

.odometer {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: all 0.5s ease;
}

/* Modal Article */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.article-modal.active {
    opacity: 1;
    visibility: visible;
}

.article-modal-content {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    width: 90vw;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
}

.article-modal-header {
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
}

.article-modal-body {
    padding: 24px;
}

.article-full-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-full-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-full-date {
    color: var(--primary-gold);
    font-weight: 600;
}

.article-full-author {
    color: var(--text-muted);
}

.article-full-category {
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-full-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    max-height: 400px;
    object-fit: cover;
}

.article-full-content {
    color: var(--text-light);
    line-height: 1.8;
}

.article-full-content h1,
.article-full-content h2,
.article-full-content h3 {
    color: var(--text-light);
    margin: 30px 0 15px 0;
}

.article-full-content h1 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 10px;
}

.article-full-content h2 {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.article-full-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-full-content ul,
.article-full-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-full-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.article-full-content blockquote {
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
}

.article-full-content pre {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-full-content code {
    background: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.article-full-content img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.article-full-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-gaming);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-modal-content {
        width: 95vw;
        max-height: 95vh;
    }

    .article-modal-header {
        padding: 12px 16px;
    }

    .article-modal-body {
        padding: 16px;
    }

    .article-full-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        margin-left: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
        max-height: 400px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Logos Discord */
.discord-logo-btn {
    width: auto;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.discord-logo-nav {
    height: 16px;
    margin-right: 6px;
}

.discord-logo-btn-standard {
    height: 18px;
    margin-right: 8px;
}

.discord-logo-btn-large {
    height: 20px;
    margin-right: 10px;
}

.discord-logo-social {
    height: 14px;
    margin-right: 6px;
}

.btn-primary:hover .discord-logo-btn,
.btn-secondary:hover .discord-logo-btn,
.btn-nav-discord:hover .discord-logo-btn {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.btn-nav-discord,
.btn-primary,
.btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Pages légales */
.legal-section {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-depth);
}

.legal-content h1 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 20px;
}

.legal-block {
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block h2 {
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-block h3 {
    color: var(--text-light);
    margin: 20px 0 12px 0;
    font-size: 1.25rem;
}

.legal-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-block ul {
    color: var(--text-muted);
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-block strong {
    color: var(--text-light);
}

.legal-block a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

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

.rgpd-right {
    background: rgba(14, 165, 233, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.contact-method {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.rgpd-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.rgpd-table th,
.rgpd-table td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    text-align: left;
}

.rgpd-table th {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.rgpd-table td {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
}

.legal-update {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-block {
        padding: 16px;
    }
    
    .rgpd-table {
        font-size: 0.8rem;
    }
    
    .rgpd-table th,
    .rgpd-table td {
        padding: 8px;
    }
}

/* Modales Applications */
.media-section {
    margin: 30px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.media-section h3 {
    color: var(--primary-gold);
    margin: 30px 0 20px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    padding-bottom: 10px;
}

.app-videos {
    margin-bottom: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.video-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-link-item {
    margin-bottom: 0;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    min-height: 80px;
    box-sizing: border-box;
    height: 100%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.video-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateX(4px);
}

.video-link-icon {
    font-size: 1.3rem;
}

.video-link-text {
    flex: 1;
}

.video-link-arrow {
    font-size: 1.2rem;
    opacity: 0.7;
}

.video-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.app-screenshots {
    margin-bottom: 30px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.screenshot-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.screenshot-item:hover img {
    filter: brightness(1.1);
}

.screenshot-caption {
    padding: 12px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-mid) 100%);
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.image-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.image-modal-caption {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 16px;
    padding: 0 20px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-blue);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .screenshot-item img {
        height: 150px;
    }
    
    .image-modal-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
    
    .media-section {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .video-info h4 {
        font-size: 0.9rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
}

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

.app-upgrade-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
}

.upgrade-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.upgrade-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upgrade-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-light);
}

.upgrade-icon {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* ==========================================
   SECTION APPS - AURORA GLASS 2026
   ========================================== */

.apps-section-2026 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(180deg,
        var(--bg-dark) 0%,
        rgba(15, 23, 42, 1) 100%
    );
}

/* Aurora Orbs Background */
.apps-aurora-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 15s ease-in-out infinite;
}

.aurora-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.aurora-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -7s;
}

@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

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

/* Section Header Glass */
.section-header-glass {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 30px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-glass {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.section-subtitle-glass {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Bento Grid - 2 Cards */
.apps-bento-grid {
    display: grid;
    /* 10 colonnes : conserve exactement le ratio 1.5fr/1fr (soit 6/4) de la
       premiere ligne, et permet une seconde ligne 50/50 (5/5). */
    grid-template-columns: repeat(10, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.app-featured { grid-column: span 6; }
.app-secondary { grid-column: span 4; }
.app-service { grid-column: span 5; }

/* Glass Card Base */
.app-card-glass {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.app-card-glass::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg,
        rgba(245, 158, 11, 0.3) 0%,
        rgba(14, 165, 233, 0.2) 50%,
        rgba(139, 92, 246, 0.3) 100%
    );
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.app-card-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.app-card-glass:hover::before {
    opacity: 1;
}

/* Featured Card - Mogo Mys */
.app-featured {
    border-color: rgba(245, 158, 11, 0.3);
}

.app-featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #EF4444, #F59E0B);
    background-size: 200% 100%;
    animation: shimmerGold 3s linear infinite;
}

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

/* Badges */
.app-badge-featured {
    display: block;
    width: fit-content;
    margin: 0 0 1rem auto;
    padding: 8px 16px;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
    animation: pulseGlowBadge 2s ease-in-out infinite;
}

.app-badge-ios {
    display: block;
    width: fit-content;
    margin: 0 0 1rem auto;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

@keyframes pulseGlowBadge {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.8); }
}

/* Header */
.app-glass-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.app-icon-glow {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
    overflow: hidden;
}

.app-icon-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.app-icon-fallback {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.app-icon-blue {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.2);
}

.app-icon-blue .app-icon-fallback {
    color: var(--primary-blue);
}

.app-pricing-glass {
    text-align: right;
}

.price-tag {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.price-tag.free {
    font-size: 1.2rem;
    color: var(--success-green);
}

.app-pricing-glass .price-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    margin-left: 0;
}

/* Content */
.app-glass-content {
    flex: 1;
}

.app-title-glass {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.app-desc-glass {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-features-glass {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-features-glass li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.app-features-glass li span:first-child {
    font-size: 1.2rem;
}

/* Footer */
.app-glass-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-mys-details {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #F59E0B;
    text-decoration: none;
}

.btn-mys-details:hover {
    background: rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.btn-app-glass {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.btn-app-glass:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

.btn-premium-glow {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-premium-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.6);
}

.btn-ios-glow {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.btn-ios-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.6);
}


/* ============================================
   SERVICES COMMUNAUTE - Barre d'amis & Ingredients
   Variantes de couleur alignees sur les cartes apps.
   ============================================ */

/* --- Badges --- */
/* Badge dans le flux (et non en absolu comme .app-badge-featured) : en
   absolu il se superposait au bloc prix, qui occupe le meme coin haut
   droit. Place ici au-dessus de l'en-tete, le prix reste toujours lisible. */
.app-badge-deal,
.app-badge-food {
    display: block;
    width: fit-content;
    margin: 0 0 1rem auto;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-badge-deal {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.45);
}

.app-badge-food {
    background: linear-gradient(135deg, #10B981, #047857);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
}

/* --- Icones --- */
.app-icon-purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}
.app-icon-purple .app-icon-fallback { color: #A78BFA; }

.app-icon-green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}
.app-icon-green .app-icon-fallback { color: #34D399; }

/* --- Boutons --- */
.btn-deal-glow {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}
.btn-deal-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
}

.btn-food-glow {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}
.btn-food-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
}

/* --- Encart d'avertissement (pre-requis commande) --- */
.app-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.28);
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}
.app-notice strong { color: #FBBF24; }

/* Responsive Apps 2026 */
@media (max-width: 900px) {
    .apps-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .app-featured,
    .app-secondary,
    .app-service {
        grid-column: 1 / -1;
    }

    .app-card-glass {
        padding: 1.5rem;
    }

    .app-icon-glow {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .app-badge-featured,
    .app-badge-ios {
        margin-bottom: 0.75rem;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .apps-section-2026 {
        padding: 60px 0;
    }

    .section-header-glass {
        margin-bottom: 30px;
    }

    .app-features-glass {
        gap: 10px;
    }

    .app-title-glass {
        font-size: 1.3rem;
    }

    .btn-app-glass {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Hero Aurora Enhancement */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(100px);
    animation: auroraFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    filter: blur(100px);
    animation: auroraFloat 20s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   NEWS SECTION - AURORA GLASS 2026
   ========================================== */

.news-section-2026 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, var(--bg-dark) 100%);
}

.news-aurora-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb-purple {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    filter: blur(80px);
    opacity: 0.6;
    animation: auroraFloat 18s ease-in-out infinite;
}

.aurora-orb-cyan {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    bottom: -50px;
    left: 5%;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 18s ease-in-out infinite reverse;
}

.section-badge-purple {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #A78BFA;
}

.news-cta-glass {
    text-align: center;
    margin-top: 3rem;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--text-light);
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-glass:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    color: var(--text-light);
}

.btn-glass svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==========================================
   EVENTS SECTION - AURORA GLASS 2026
   ========================================== */

.events-section-2026 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.events-aurora-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb-pink {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: -80px;
    left: 15%;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 16s ease-in-out infinite;
}

.aurora-orb-orange {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    bottom: -60px;
    right: 10%;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 16s ease-in-out infinite reverse;
}

.section-badge-pink {
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #F472B6;
}

.events-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ==========================================
   COMMUNITY SECTION - AURORA GLASS 2026
   ========================================== */

.community-section-2026 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 23, 42, 1) 100%);
}

.community-aurora-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb-blue {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    top: -120px;
    left: -100px;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 20s ease-in-out infinite;
}

.aurora-orb-indigo {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    bottom: -80px;
    right: -50px;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 20s ease-in-out infinite reverse;
}

.section-badge-blue {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60A5FA;
}

.community-bento-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Discord Widget Glass */
.discord-widget-glass {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.discord-widget-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5865F2, #EB459E, #5865F2);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Testimonials Glass Grid - Scrollable avec chevauchement */
.testimonials-glass-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 8px;
    padding-top: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(88, 101, 242, 0.5) rgba(255, 255, 255, 0.05);
}

/* Custom scrollbar */
.testimonials-glass-grid::-webkit-scrollbar {
    width: 6px;
}

.testimonials-glass-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.testimonials-glass-grid::-webkit-scrollbar-thumb {
    background: rgba(88, 101, 242, 0.5);
    border-radius: 3px;
}

.testimonials-glass-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(88, 101, 242, 0.7);
}

.testimonial-card-glass {
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: -16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Effet de profondeur - z-index décroissant */
.testimonial-card-glass:nth-child(1) { z-index: 6; }
.testimonial-card-glass:nth-child(2) { z-index: 5; }
.testimonial-card-glass:nth-child(3) { z-index: 4; }
.testimonial-card-glass:nth-child(4) { z-index: 3; }
.testimonial-card-glass:nth-child(5) { z-index: 2; }
.testimonial-card-glass:nth-child(6) { z-index: 1; margin-bottom: 0; }

.testimonial-card-glass:hover {
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.25);
    z-index: 10 !important;
}

.testimonial-card-glass .testimonial-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card-glass .testimonial-content p {
    margin: 0;
}

.testimonial-card-glass .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card-glass .author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-card-glass .author-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.testimonial-card-glass .author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card-glass .author-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card-glass .author-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================
   FAQ SECTION - AURORA GLASS 2026
   ========================================== */

.faq-section-2026 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: rgba(15, 23, 42, 1);
}

.faq-aurora-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb-emerald {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -80px;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 17s ease-in-out infinite;
}

.aurora-orb-teal {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, transparent 70%);
    bottom: -60px;
    left: 10%;
    filter: blur(80px);
    opacity: 0.5;
    animation: auroraFloat 17s ease-in-out infinite reverse;
}

.section-badge-emerald {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34D399;
}

.faq-container-glass {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item Glass */
.faq-item-glass {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq-item-glass:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item-glass.active {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.faq-question-glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question-glass:hover {
    color: #34D399;
}

.faq-question-glass span:first-child {
    flex: 1;
}

.faq-icon-glass {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34D399;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item-glass.active .faq-icon-glass {
    transform: rotate(45deg);
}

.faq-answer-glass {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item-glass.active .faq-answer-glass {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer-glass p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   RESPONSIVE - SECTIONS AURORA GLASS 2026
   ========================================== */

@media (max-width: 900px) {
    .community-bento-layout {
        grid-template-columns: 1fr;
    }

    .events-bento-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-glass-grid {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 350px;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card-glass {
        min-width: auto;
        flex-shrink: 0;
        margin-bottom: -12px;
    }

    .testimonial-card-glass:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .apps-section-2026,
    .news-section-2026,
    .events-section-2026,
    .community-section-2026,
    .faq-section-2026 {
        padding: 40px 0;
    }

    .discord-widget-glass {
        padding: 1.5rem;
    }

    .faq-question-glass {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ==========================================
   FOCUS VISIBLE - ACCESSIBILITÉ
   ========================================== */

.btn-glass:focus-visible,
.faq-question-glass:focus-visible,
.discord-join-btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

/* ============================================
   AVIS DISCORD - badge de service & etat vide
   ============================================ */

.testimonial-card-glass { position: relative; }

.testimonial-service {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.testimonial-service[data-service="mys"] {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.35);
    color: #FCD34D;
}

.testimonial-service[data-service="barre-amis"] {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.35);
    color: #C4B5FD;
}

.testimonial-service[data-service="ingredients"] {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.35);
    color: #6EE7B7;
}

.testimonials-empty {
    grid-column: 1 / -1;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.18);
}

.testimonials-empty-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-empty-text {
    margin: 0 auto 1.1rem;
    max-width: 42ch;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

.testimonials-empty-link {
    display: inline-block;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-empty-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(88, 101, 242, 0.5);
}

