/* ========================================
   DESIGN EYESTORE SCRIPTS COMPLET
   ======================================== */

:root {
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-dark-red: #1a0a0a;
    --bg-header: rgba(0, 0, 0, 0.8);
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --text-light-grey: #cccccc;
    --red-primary: #dc2626;
    --red-bright: #ef4444;
    --green-chat: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Masquer la barre de défilement tout en gardant le scroll */
html, body {
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none; /* WebKit */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark-red) 100%);
    color: var(--text-white);
    min-height: 100vh;
    position: relative;
    overflow-y: auto;
}

body.no-scroll {
    overflow: hidden;
}

.callback-page {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 10, 10, 0.9) 100%), url('../img/retourlampa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-page {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 10, 10, 0.9) 100%), url('../img/GTA-6-Cal-Art-Resized.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Particules de fond (étoiles/poussière) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 40%, white, transparent),
        radial-gradient(1px 1px at 33% 60%, white, transparent),
        radial-gradient(1px 1px at 55% 80%, white, transparent),
        radial-gradient(1px 1px at 10% 20%, white, transparent),
        radial-gradient(2px 2px at 70% 50%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%, 25% 25%, 75% 75%, 15% 85%, 85% 15%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: starsMove 25s linear infinite;
}

@keyframes starsMove {
    0% { background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%, 25% 25%, 75% 75%, 15% 85%, 85% 15%; }
    100% { background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%, 50% 50%, 75% 75%, 25% 25%, 85% 15%, 15% 85%; }
}

/* Illustration de fond (visage désaturé) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1600"><defs><filter id="desaturate"><feColorMatrix type="saturate" values="0"/></filter></defs><ellipse cx="600" cy="500" rx="300" ry="400" fill="%23444" opacity="0.15" filter="url(%23desaturate)"/><circle cx="550" cy="480" r="20" fill="%23555" opacity="0.1"/><circle cx="650" cy="480" r="20" fill="%23555" opacity="0.1"/><path d="M 550 550 Q 600 580 650 550" stroke="%23444" stroke-width="4" fill="none" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%) blur(1px);
}

/* ========================================
   HEADER FIXE
   ======================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 12px 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Header gauche - Logo et navigation */
.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.header-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-header {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--red-primary));
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-primary);
}

.nav-link.dropdown i {
    font-size: 12px;
}

/* Header centre - Notification discount */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.discount-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 38, 38, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.notification-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}

.discount-text {
    color: var(--red-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-square {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 2px;
}

/* Header droite - Contrôles */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.currency-selector:hover {
    background: rgba(255, 255, 255, 0.1);
}

.currency-selector i {
    font-size: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-icon {
    color: var(--red-primary);
    font-size: 16px;
}

.cart-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--red-primary);
}

.mobile-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1100;
}

.mobile-nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    max-width: 88vw;
    background: rgba(10, 10, 10, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.45);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1200;
    backdrop-filter: blur(12px);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-title {
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.mobile-nav-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    width: 34px;
    height: 34px;
    border-radius: 9px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 6px;
}

.mobile-nav .nav-link {
    display: flex;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   CONTENU PRINCIPAL
   ======================================== */

.main-content-area {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 40px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Section gauche */
.left-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
}

.welcome-section {
    max-width: 600px;
}

.welcome-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.title-line-1 {
    display: block;
    font-size: 0.7em;
}

.title-line-2 {
    display: block;
}

.welcome-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 550px;
}

/* Liens sociaux */
.social-links-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-white);
    transition: transform 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.social-link-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.social-link-icon {
    font-size: 36px;
    color: var(--text-white);
    flex-shrink: 0;
}

.social-link-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-link-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link-subtitle {
    font-size: 14px;
    color: var(--text-white);
    opacity: 0.8;
    font-weight: 400;
}

/* Section droite - Widget Discord */
.right-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0;
}

.discord-offer-widget {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 16px;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

/* Badge LIMITED OFFER */
.limited-offer-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--red-primary);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.6);
}

/* Header widget */
.widget-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.widget-logo-small {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-widget {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--red-primary));
}

.widget-header-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.widget-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
}

.widget-subtitle {
    font-size: 13px;
    color: var(--text-white);
    opacity: 0.8;
}

/* Timer */
.offer-timer-section {
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.timer-icon {
    font-size: 14px;
}

.timer-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    font-variant-numeric: tabular-nums;
    letter-spacing: 3px;
}

/* Info coupon */
.coupon-info-text {
    font-size: 12px;
    color: var(--text-white);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Bouton JOIN NOW */
.join-now-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--red-primary);
    color: var(--text-white);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.join-now-button:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.7);
}

/* ========================================
   SECTION FEATURED SCRIPTS
   ======================================== */

.featured-scripts-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    text-align: center;
}

.featured-scripts-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-section {
    background: var(--bg-dark-red);
    padding: 60px 40px 40px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo-column {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.footer-text {
    color: var(--text-grey);
    font-size: 13px;
    line-height: 1.6;
}

.footer-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.footer-title {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-white);
    font-size: 12px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--red-primary);
}

.footer-link-separator {
    color: var(--text-grey);
    opacity: 0.5;
}

/* ========================================
   WIDGET DE CHAT FLOTTANT
   ======================================== */

.chat-widget-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-bubble-text {
    background: var(--text-white);
    color: var(--bg-black);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.hand-icon {
    color: #fbbf24;
    font-size: 18px;
}

.chat-button-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-chat);
    border: 3px solid var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.chat-button-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.6);
}

.chat-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--text-white);
}

.chat-icon-large {
    color: var(--text-white);
    font-size: 28px;
}

.chat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
}

.chat-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

.chat-panel {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 360px;
    max-width: 92vw;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1001;
    backdrop-filter: blur(12px);
}

.chat-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-chat);
    font-size: 22px;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.chat-agent-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-white);
}

.chat-agent-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-grey);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-chat);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    display: inline-block;
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: var(--text-grey);
    cursor: pointer;
    font-size: 20px;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
}

.chat-body {
    max-height: 320px;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    display: flex;
    flex-direction: column;
}

.chat-message-header {
    font-size: 11px;
    font-weight: 600;
    padding: 8px 14px 4px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-message.user .chat-message-header {
    color: rgba(34, 197, 94, 0.9);
    text-align: right;
}

.chat-message.bot .chat-message-header {
    color: rgba(255, 255, 255, 0.7);
}

.chat-message-content {
    padding: 8px 14px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 80%;
}

.chat-message.bot .chat-message-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.user .chat-message-content {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: var(--text-white);
}

.chat-form {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-input-row {
    display: flex;
    gap: 8px;
}

.chat-input-row input {
    flex: 1;
}

.chat-select-row {
    width: 100%;
}

.chat-select-row select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.chat-select-row select:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.chat-select-row select option {
    background: #1a1a1f;
    color: var(--text-white);
}

.chat-textarea-row textarea {
    width: 100%;
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
}

.chat-form input,
.chat-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-form input:focus,
.chat-form textarea:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.chat-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.chat-hint {
    font-size: 12px;
    color: var(--text-grey);
    max-width: 60%;
}

.chat-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-chat);
    color: var(--text-white);
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
}

.chat-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--text-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.chat-status {
    font-size: 12px;
    min-height: 16px;
    color: var(--text-grey);
}

.chat-status[data-state="success"] {
    color: #4ade80;
}

.chat-status[data-state="error"] {
    color: #f87171;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .header-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .main-content-area {
        padding: 100px 20px 60px;
        gap: 40px;
    }
    
    .welcome-title {
        font-size: 64px;
    }
}

@media (max-width: 1024px) {
    .main-content-area {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .left-content,
    .right-content {
        justify-content: center;
    }
    
    .welcome-section {
        max-width: 100%;
    }
    
    .discord-offer-widget {
        max-width: 100%;
    }
    
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-right {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-center {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }
    
    .discount-notification {
        padding: 5px 10px;
    }
    
    .discount-text {
        font-size: 11px;
    }

    .header-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .welcome-title {
        font-size: 48px;
    }
    
    .welcome-description {
        font-size: 14px;
    }
    
    .social-link-icon {
        font-size: 28px;
    }
    
    .social-link-title {
        font-size: 16px;
    }
    
    .social-link-subtitle {
        font-size: 12px;
    }
    
    .discord-offer-widget {
        padding: 25px;
    }
    
    .timer-value {
        font-size: 28px;
    }
    
    .featured-scripts-title {
        font-size: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chat-widget-float {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .chat-bubble-text {
        order: 2;
    }
    
    .chat-button-circle {
        width: 50px;
        height: 50px;
    }
    
    .chat-icon-large {
        font-size: 24px;
    }

    .chat-panel {
        right: 16px;
        left: 16px;
        width: auto;
        bottom: 90px;
    }

    .chat-body {
        max-height: 260px;
    }

    .chat-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .chat-hint {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 36px;
    }
    
    .timer-value {
        font-size: 24px;
    }
    
    .featured-scripts-title {
        font-size: 36px;
    }
    
    .chat-bubble-text {
        font-size: 11px;
        padding: 8px 12px;
    }
}

/* ========================================
   ANIMATIONS STYLÉES
   ======================================== */

/* Animation fade-in avec scale */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation slide-in depuis le bas */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation slide-in depuis la gauche */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation slide-in depuis la droite */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation de glow pulsant */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.8), 0 0 60px rgba(220, 38, 38, 0.4);
    }
}

/* Animation de rotation lente */
@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animation de float */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animation de shimmer (brillance) */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation de gradient animé */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation de bounce subtil */
@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation de scale au hover */
@keyframes scaleIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation de texte qui apparaît lettre par lettre */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de particules flottantes */
@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Classes d'animation pour les éléments */
.animate-fade-in {
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Animations pour le header */
.main-header {
    animation: slideInUp 0.5s ease-out;
}

.header-logo img {
    animation: fadeInScale 0.6s ease-out 0.2s backwards;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-link:hover {
    transform: translateY(-2px);
}

/* Animations pour le widget Discord */
.discord-offer-widget {
    animation: fadeInScale 0.8s ease-out 0.3s backwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-offer-widget:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.5);
}

.limited-offer-badge {
    animation: bounceSubtle 2s ease-in-out infinite;
}

.timer-value {
    animation: pulseGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.timer-value:hover {
    transform: scale(1.1);
}

.join-now-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.join-now-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.join-now-button:hover::before {
    width: 300px;
    height: 300px;
}

.join-now-button:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Animations pour les liens sociaux */
.social-link-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s;
}

.social-link-item:hover::before {
    left: 100%;
}

.social-link-item:hover {
    transform: translateX(10px) scale(1.05);
    background: rgba(220, 38, 38, 0.1);
}

.social-link-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link-item:hover .social-link-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--red-primary);
}

/* Animations pour le titre de bienvenue */
.welcome-title {
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.title-line-1 {
    animation: fadeInScale 0.8s ease-out 0.4s backwards;
}

.title-line-2 {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-bright) 50%, var(--red-primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, fadeInScale 0.8s ease-out 0.6s backwards;
}

.welcome-description {
    animation: slideInUp 0.8s ease-out 0.8s backwards;
}

/* Animations pour le widget de chat */
.chat-widget-float {
    animation: slideInRight 0.8s ease-out 1s backwards, float 3s ease-in-out infinite 2s;
}

.chat-button-circle {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-button-circle:hover {
    transform: scale(1.15) rotate(5deg);
    animation: pulseGlow 1s ease-in-out infinite;
}

.chat-notification-badge {
    animation: bounceSubtle 1.5s ease-in-out infinite;
}

/* Animations pour les éléments du footer */
.footer-section {
    animation: slideInUp 0.8s ease-out;
}

.footer-link {
    position: relative;
    transition: all 0.3s ease;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

/* Animation pour les icônes */
.user-icon,
.cart-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.user-info:hover .user-icon,
.cart-icon:hover i {
    transform: scale(1.2) rotate(10deg);
}

.currency-selector {
    transition: all 0.3s ease;
}

.currency-selector:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

/* Animation pour la notification de réduction */
.discount-notification {
    animation: pulseGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.discount-notification:hover {
    transform: scale(1.05);
}

.notification-square {
    animation: bounceSubtle 1s ease-in-out infinite;
}

/* Animation de chargement améliorée */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/* Délais d'animation pour effet stagger */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

/* Animation pour les cartes produits (si utilisées) */
.product-card,
.glassmorphism-strong {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.6s ease-out backwards;
}

.product-card:hover,
.glassmorphism-strong:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

/* Animation de particules de fond améliorée */
@keyframes particleMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Animation pour les images */
img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Animation de texte qui apparaît progressivement */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    animation: textReveal 0.6s ease-out backwards;
}

/* Animation pour les boutons */
button,
a.button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button::after,
a.button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::after,
a.button:hover::after {
    width: 300px;
    height: 300px;
}

/* Animation de scroll reveal (pour les éléments qui apparaissent au scroll) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animation de gradient animé pour les titres */
.animated-gradient {
    background: linear-gradient(
        135deg,
        var(--red-primary) 0%,
        var(--red-bright) 25%,
        #ff6b6b 50%,
        var(--red-bright) 75%,
        var(--red-primary) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

/* Animation de shake subtil */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.shake-on-hover:hover {
    animation: shake 0.5s ease;
}

/* Animation de zoom au hover */
.zoom-on-hover {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-on-hover:hover {
    transform: scale(1.1);
}

/* Animation de rotation au hover */
.rotate-on-hover {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-on-hover:hover {
    transform: rotate(5deg) scale(1.05);
}

/* Animation de glow au hover */
.glow-on-hover {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
    transform: translateY(-5px);
}

/* Animation de fade-in progressif pour les listes */
.fade-in-list > * {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.fade-in-list > *:nth-child(1) { animation-delay: 0.1s; }
.fade-in-list > *:nth-child(2) { animation-delay: 0.2s; }
.fade-in-list > *:nth-child(3) { animation-delay: 0.3s; }
.fade-in-list > *:nth-child(4) { animation-delay: 0.4s; }
.fade-in-list > *:nth-child(5) { animation-delay: 0.5s; }
.fade-in-list > *:nth-child(6) { animation-delay: 0.6s; }
.fade-in-list > *:nth-child(7) { animation-delay: 0.7s; }
.fade-in-list > *:nth-child(8) { animation-delay: 0.8s; }

/* Animation de parallaxe subtile */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Animation de loading spinner améliorée */
@keyframes spinSmooth {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(220, 38, 38, 0.3);
    border-top: 3px solid var(--red-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spinSmooth 1s linear infinite;
}

/* Animation de typewriter pour le texte */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--red-primary);
    animation: typewriter 3s steps(40) forwards, blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--red-primary);
    }
}

/* Animation de morphing pour les formes */
@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.morph-shape {
    animation: morph 8s ease-in-out infinite;
}

/* Animation de wave */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.wave-animation {
    animation: wave 2s ease-in-out infinite;
}

/* Animation de heartbeat */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Animation de slide-in avec bounce */
@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    60% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-bounce {
    animation: slideInBounce 0.8s ease-out;
}

/* Animation de flip */
@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
    }
    40% {
        transform: perspective(400px) rotateY(-90deg);
    }
    60% {
        transform: perspective(400px) rotateY(-90deg);
    }
    100% {
        transform: perspective(400px) rotateY(0);
    }
}

.flip-on-hover:hover {
    animation: flip 0.6s ease;
}

/* Animation de glow pulsant pour les éléments importants */
.glow-pulse {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Animation de scale au clic */
@keyframes clickScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.click-scale:active {
    animation: clickScale 0.2s ease;
}

/* Amélioration des transitions globales */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation de particules pour le fond */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle-bg::before,
.particle-bg::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(220, 38, 38, 0.5);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle-bg::before {
    left: 10%;
    animation-delay: 0s;
}

.particle-bg::after {
    left: 80%;
    animation-delay: 10s;
}

/* ========================================
   PARTNERS PAGE
   ======================================== */
.partners-page {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(26, 10, 10, 0.92) 100%), url("../img/trailer%201%20-%202_026.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
}

.partners-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 140px 32px 96px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--red-primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-light-grey);
    line-height: 1.6;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button {
    background: linear-gradient(135deg, var(--red-primary), var(--red-bright));
    color: #fff;
    border: 1px solid rgba(220, 38, 38, 0.5);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.35);
}

.primary-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 36px rgba(220, 38, 38, 0.45);
}

.ghost-button {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.partners-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 72px;
}

.partners-hero-text h1 {
    font-size: 52px;
    margin-bottom: 16px;
    line-height: 1.05;
}

.hero-description {
    color: var(--text-light-grey);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.partners-hero-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.12);
    color: var(--red-bright);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.card-logo {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partners-hero-card h2 {
    font-size: 26px;
    margin-bottom: 4px;
}

.card-subtitle {
    color: var(--text-light-grey);
    margin-bottom: 14px;
    font-size: 14px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: grid;
    gap: 8px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light-grey);
    font-size: 14px;
}

.card-list i {
    color: var(--red-primary);
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.partner-grid-section {
    margin-bottom: 72px;
}

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

.partner-card {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.partner-badge {
    background: rgba(220, 38, 38, 0.14);
    color: var(--red-bright);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.partner-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.partner-card h3 {
    font-size: 22px;
}

.partner-card-desc {
    color: var(--text-light-grey);
    line-height: 1.6;
}

.partner-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--text-light-grey);
}

.partner-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.partner-highlights i {
    color: var(--red-primary);
}

.partner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.partner-card-placeholder {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.2);
}

.placeholder-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.4);
}

.advantages-section {
    margin-bottom: 72px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.advantage-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.12);
    color: var(--red-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 22px;
}

.advantage-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.advantage-card p {
    color: var(--text-light-grey);
    line-height: 1.6;
    font-size: 14px;
}

.cta-section {
    margin-bottom: 40px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.18));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 18px 46px rgba(220, 38, 38, 0.18);
}

.cta-card h2 {
    margin: 6px 0 10px 0;
    font-size: 26px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* Modale partenaire */
.partner-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1200;
}

.partner-modal.is-open {
    display: flex;
}

.partner-modal-dialog {
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

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

.modal-logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-subtitle {
    color: var(--text-light-grey);
    font-size: 14px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-text {
    color: var(--text-light-grey);
    line-height: 1.7;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--text-light-grey);
}

.modal-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.modal-list i {
    color: var(--red-primary);
}

.modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.modal-open {
    overflow: hidden;
}

/* Réactivité */
@media (max-width: 1100px) {
    .partners-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partners-main {
        padding: 120px 18px 72px;
    }

    .partners-hero-text h1 {
        font-size: 38px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-card {
        padding: 18px;
    }
}

/* ========================================
   LANDING PAGE (Choix univers)
   ======================================== */
.landing-page {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, rgba(18, 9, 9, 0.94) 100%),
                url("../img/seykoo-Znk.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.gaming-page {
    /* Hérite du visuel GTA via .home-page */
}

.events-page {
    background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(12,12,16,0.92) 100%), url("../img/p1033452_3_333262-170749703019800.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.landing-main {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.landing-hero {
    max-width: 860px;
}

.landing-title {
    font-size: clamp(32px, 6vw, 46px);
    line-height: 1.05;
    margin: 12px 0 16px;
}

.landing-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    color: var(--text-light-grey);
    line-height: 1.7;
    max-width: 760px;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-light-grey);
}

.landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.landing-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.16), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
}

.landing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.landing-card-meta {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red-bright);
    font-weight: 700;
}

.landing-card h2 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.landing-card p {
    color: var(--text-light-grey);
    line-height: 1.6;
}

.landing-card-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 10px;
    display: grid;
    gap: 8px;
    color: var(--text-light-grey);
}

.landing-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.landing-card-list i {
    color: var(--red-primary);
}

.landing-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.landing-card-cta::after {
    content: '→';
    font-size: 14px;
}

.landing-shortcuts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.shortcut {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.shortcut-label {
    font-weight: 700;
    margin: 0;
}

.shortcut-link {
    color: var(--red-bright);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.shortcut-link:hover {
    text-decoration: underline;
}

/* Bloc avis */
.reviews-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
    gap: 20px;
    padding: 22px;
    margin-top: 6px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0,0,0,0.45);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--red-bright);
    font-weight: 800;
}

.reviews-title {
    font-size: 32px;
    margin: 8px 0 10px;
    line-height: 1.2;
}

.reviews-subtitle {
    color: var(--text-light-grey);
    line-height: 1.6;
    margin-bottom: 14px;
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews-score {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 14px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-score-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-stars i {
    color: #facc15;
    font-size: 16px;
}

.reviews-count {
    grid-column: span 2;
    color: var(--text-light-grey);
    font-size: 13px;
}

.reviews-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-light-grey);
}

.reviews-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews-band {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    height: 40px;
}

.reviews-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 15%, transparent 85%, rgba(0,0,0,0.7));
    pointer-events: none;
}

.reviews-band-track {
    display: inline-flex;
    gap: 24px;
    white-space: nowrap;
    align-items: center;
    padding: 0 16px;
    animation: reviewsMarquee 28s linear infinite;
}

.reviews-band-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light-grey);
    font-size: 13px;
}

.reviews-band-item i {
    color: var(--red-bright);
}

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

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}

.review-card {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 8px;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.review-author {
    font-weight: 700;
}

.review-tag {
    font-size: 12px;
    color: var(--text-light-grey);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.review-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #facc15;
    font-weight: 700;
}

.review-delete-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light-grey);
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-delete-btn:hover {
    color: var(--red-bright);
    border-color: rgba(220, 38, 38, 0.5);
    background: rgba(220, 38, 38, 0.08);
}

.review-text {
    color: var(--text-light-grey);
    line-height: 1.6;
}

.review-meta {
    font-size: 12px;
    color: var(--text-grey);
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-form {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.form-field {
    display: grid;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    color: var(--text-light-grey);
    font-weight: 700;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-white);
    font-size: 14px;
}

.review-form textarea {
    resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: 1px solid rgba(220, 38, 38, 0.5);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.form-hint {
    font-size: 13px;
    color: var(--text-light-grey);
}

@media (max-width: 900px) {
    .landing-title {
        font-size: 36px;
    }

    .reviews-section {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-main {
        padding: 110px 16px 64px;
    }

    .landing-card {
        padding: 18px;
    }

    .currency-selector {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .primary-button,
    .hero-actions .ghost-button {
        width: 100%;
        justify-content: center;
    }
}
