/* ===============================================
   SCORE - Premium FiveM Scripts Store
   Theme: Dark with Red Accents
   =============================================== */

:root {
    /* Primary Colors - Red Theme */
    --primary: #dc2626;
    --primary-light: #ef4444;
    --primary-dark: #b91c1c;
    --primary-glow: rgba(220, 38, 38, 0.5);

    /* Secondary Colors */
    --secondary: #991b1b;
    --accent: #f87171;

    /* Background Colors */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: rgba(24, 24, 27, 0.8);
    --bg-card-hover: rgba(39, 39, 42, 0.9);

    /* Text Colors */
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Border Colors */
    --border: rgba(63, 63, 70, 0.5);
    --border-hover: rgba(220, 38, 38, 0.5);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --container-width: 1280px;
    --nav-height: 80px;
}

/* ===============================================
   SCROLL ANIMATIONS
   =============================================== */

/* Base animation class */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: none !important;
}

/* Fade Up */
[data-animate="fade-up"] {
    transform: translateY(40px);
}

/* Fade Down */
[data-animate="fade-down"] {
    transform: translateY(-40px);
}

/* Fade Left */
[data-animate="fade-left"] {
    transform: translateX(40px);
}

/* Fade Right */
[data-animate="fade-right"] {
    transform: translateX(-40px);
}

/* Fade In */
[data-animate="fade-in"] {
    transform: scale(0.95);
}

/* Zoom In */
[data-animate="zoom-in"] {
    transform: scale(0.8);
}

/* Slide Up */
[data-animate="slide-up"] {
    transform: translateY(60px);
}

/* Flip */
[data-animate="flip"] {
    transform: perspective(1000px) rotateX(15deg);
}

/* Delay classes */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* Duration classes */
[data-duration="fast"] { transition-duration: 0.3s; }
[data-duration="normal"] { transition-duration: 0.6s; }
[data-duration="slow"] { transition-duration: 1s; }

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===============================================
   BASE STYLES
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===============================================
   PAGE LOADER
   =============================================== */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===============================================
   PARTICLES BACKGROUND
   =============================================== */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particles-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
}

/* ===============================================
   UTILITIES
   =============================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

/* ===============================================
   NAVIGATION
   =============================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: all var(--transition-normal);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transform: scale(1.05);
}

.footer-logo {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.nav-link.active {
    color: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

.cart-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-btn:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
    border-color: var(--primary);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
}

.mobile-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-link:hover,
.mobile-link:active {
    background: rgba(220, 38, 38, 0.1);
    color: var(--text-primary);
}

.mobile-login-btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

/* ===============================================
   LOGIN MODAL
   =============================================== */

.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.login-modal-overlay.active .login-modal {
    transform: translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.login-modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-header i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.login-btn-fivem {
    background: linear-gradient(135deg, #f40552, #d10447);
    color: white;
    border: none;
}

.login-btn-fivem:hover {
    background: linear-gradient(135deg, #ff1a66, #e8054f);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 5, 82, 0.4);
}

.login-btn-steam {
    background: linear-gradient(135deg, #1b2838, #2a475e);
    color: white;
    border: none;
}

.login-btn-steam:hover {
    background: linear-gradient(135deg, #2a3f5f, #3a5a7c);
    transform: translateY(-2px);
}

.login-btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752c4);
    color: white;
    border: none;
}

.login-btn-discord:hover {
    background: linear-gradient(135deg, #6973ff, #5865F2);
    transform: translateY(-2px);
}

.login-btn svg,
.login-btn i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
}

.login-footer p {
    font-size: 12px;
    color: var(--text-muted);
}

/* User Info (logged in state) */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 10px;
}

.user-info i {
    color: var(--primary);
    font-size: 16px;
}

.user-info span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.btn-logout {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--primary-light);
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 60px) 24px 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.glow-orb {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ===============================================
   SECTIONS COMMON
   =============================================== */

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===============================================
   PRODUCTS SECTION
   =============================================== */

.products {
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px;
    color: var(--text-muted);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: var(--primary);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 18px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-light);
}

.price-tax {
    font-size: 11px;
    color: var(--text-muted);
}

.product-btn {
    padding: 10px 18px;
    font-size: 13px;
}

/* ===============================================
   FEATURES SECTION
   =============================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===============================================
   PROMO COUNTDOWN SECTION
   =============================================== */

.promo-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
}

.promo-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: promoShine 3s ease-in-out infinite;
}

@keyframes promoShine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-badge i {
    animation: flamePulse 0.5s ease-in-out infinite alternate;
}

@keyframes flamePulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.promo-card h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
}

.promo-card p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.5;
}

/* ===============================================
   FAQ SECTION
   =============================================== */

.faq {
    background: var(--bg-primary);
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===============================================
   SUPPORT SECTION
   =============================================== */

.support {
    background: var(--bg-secondary);
}

.support-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.support-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.support-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.support-visual {
    font-size: 120px;
    color: var(--primary);
    opacity: 0.3;
}

/* ===============================================
   FOOTER
   =============================================== */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary-light);
}

/* ===============================================
   CART SIDEBAR
   =============================================== */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1001;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-cart {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.close-cart:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
}

.cart-item-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-light);
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-item-remove:hover {
    background: var(--primary);
    color: white;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--primary-light);
    font-size: 24px;
}

.btn-checkout {
    width: 100%;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===============================================
   PRODUCT MODAL
   =============================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1003;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 520px;
    max-width: 95%;
    max-height: 85vh;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1004;
    display: flex;
    flex-direction: column;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.modal-content {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: hidden;
}

/* Modal Gallery */
.modal-gallery {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--bg-tertiary);
}

.gallery-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.modal-gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-secondary), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 3;
    opacity: 0;
}

.modal-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 12px;
}

.gallery-nav.next {
    right: 12px;
}

/* Gallery Thumbnails */
.gallery-thumbs {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.gallery-thumb {
    width: 50px;
    height: 35px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Dots (for single images or few images) */
.gallery-dots {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.gallery-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Video indicator */
.gallery-video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 3;
}

.gallery-video-indicator:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-light);
}

/* Image counter */
.gallery-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    z-index: 3;
}

/* Legacy support */
.modal-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-secondary), transparent);
}

.modal-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
}

/* Custom scrollbar pour le modal */
.modal-details::-webkit-scrollbar {
    width: 6px;
}

.modal-details::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.modal-details::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.modal-details::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
}

.modal-price-tax {
    font-size: 13px;
    color: var(--text-muted);
}

.modal-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(9, 9, 11, 0.9));
    border: 1px solid rgba(63, 63, 70, 0.4);
    border-radius: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.modal-description::-webkit-scrollbar {
    width: 6px;
}

.modal-description::-webkit-scrollbar-track {
    background: rgba(24, 24, 27, 0.5);
    border-radius: 3px;
}

.modal-description::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.modal-description p {
    margin-bottom: 12px;
}

.modal-description p:last-child {
    margin-bottom: 0;
}

.modal-description ul,
.modal-description ol {
    margin: 12px 0;
    padding-left: 20px;
}

.modal-description li {
    margin-bottom: 6px;
}

.modal-description ul li::marker {
    color: var(--primary);
}

.modal-description strong,
.modal-description b {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-description em {
    color: var(--primary-light);
    font-style: italic;
}

.modal-description h1,
.modal-description h2,
.modal-description h3,
.modal-description h4 {
    color: var(--text-primary);
    margin: 16px 0 8px 0;
    font-weight: 700;
}

.modal-description h1:first-child,
.modal-description h2:first-child,
.modal-description h3:first-child,
.modal-description h4:first-child {
    margin-top: 0;
}

.modal-description h1 { font-size: 18px; }
.modal-description h2 { font-size: 16px; }
.modal-description h3 { font-size: 15px; }
.modal-description h4 { font-size: 14px; }

.modal-description code {
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
}

.modal-description pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(63, 63, 70, 0.3);
    border-radius: 8px;
    padding: 12px;
    overflow-x: auto;
    margin: 12px 0;
}

.modal-description pre code {
    background: none;
    padding: 0;
}

.modal-description hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
    margin: 16px 0;
}

.modal-description blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    margin: 12px 0;
    color: var(--text-muted);
    font-style: italic;
}

.modal-description a,
.modal-description .desc-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 4px 8px 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    cursor: pointer;
}

.modal-description a:hover,
.modal-description .desc-link:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.modal-description a::before,
.modal-description .desc-link::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.modal-description a::after,
.modal-description .desc-link::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    opacity: 0.7;
}

.modal-features {
    margin-bottom: 24px;
}

.modal-features h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.modal-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.modal-features li i {
    color: var(--primary-light);
    font-size: 14px;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        height: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* Mobile Landscape / Small Tablet - 768px */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .lang-switcher {
        gap: 4px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .nav-auth {
        display: none;
    }

    .cart-btn {
        width: 44px;
        height: 44px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 28px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        padding: 16px;
    }

    .product-image {
        height: 180px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-description {
        font-size: 13px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 17px;
    }

    .feature-card p {
        font-size: 14px;
    }

    /* Promo Countdown */
    .promo-card {
        padding: 32px 20px;
        flex-direction: column;
        text-align: center;
    }

    .promo-content h2 {
        font-size: 28px;
    }

    .countdown {
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }

    .countdown-value {
        font-size: 28px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-separator {
        font-size: 24px;
    }

    /* FAQ */
    .faq-grid {
        gap: 12px;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    /* Support */
    .support-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .support-content h2 {
        font-size: 24px;
    }

    .support-content p {
        font-size: 15px;
    }

    .support-visual {
        font-size: 60px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .cart-header {
        padding: 16px 20px;
    }

    .cart-body {
        padding: 16px 20px;
    }

    .cart-footer {
        padding: 16px 20px;
    }

    /* Product Modal */
    .product-modal {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
        margin: 20px auto;
    }

    .modal-gallery {
        height: 180px;
    }

    .gallery-nav {
        width: 32px;
        height: 32px;
    }

    .gallery-counter {
        font-size: 11px;
        padding: 3px 8px;
    }

    .gallery-dots {
        bottom: 65px;
    }

    .modal-details {
        padding: 20px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-price-value {
        font-size: 26px;
    }

    .modal-description {
        max-height: 140px;
        padding: 14px;
        font-size: 13px;
    }

    .modal-features ul {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modal-actions .btn {
        width: 100%;
    }

    /* Login Modal */
    .login-modal {
        width: 95%;
        max-width: 95%;
        padding: 24px;
    }

    .login-header h2 {
        font-size: 20px;
    }

    .login-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Mobile Portrait - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat {
        min-width: 80px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 20px;
    }

    .countdown-item {
        min-width: 50px;
        padding: 10px 6px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-separator {
        font-size: 20px;
        margin: 0 4px;
    }

    .product-modal {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        margin: 0;
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }

    .modal-gallery {
        height: 160px;
    }
}

/* Very Small Screens - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .countdown {
        gap: 4px;
    }

    .countdown-item {
        min-width: 45px;
        padding: 8px 4px;
    }

    .countdown-value {
        font-size: 20px;
    }

    .countdown-separator {
        font-size: 16px;
    }
}
