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

:root {
    /* Charte graphique ESK - Design Sombre */
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #0a0a0a;
    --darker-color: #000000;
    --light-color: #f8fafc;
    --white-color: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white-color);
    background-color: var(--darker-color);
    overflow-x: hidden;
    cursor: none;
}

[data-scroll-container] {
    padding-top: 80px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
    color: var(--white-color);
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

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

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.loading-text {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-300);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 99999 !important;
    height: 100px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
    will-change: transform, background-color, box-shadow !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.header-logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 3rem;
}

.header-link {
    color: var(--gray-300);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 1rem;
    right: 1rem;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.header-link:hover {
    color: var(--accent-color);
}

/* Actions Droites */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
}

.header-btn-primary {
    background: var(--accent-color);
    color: var(--dark-color);
}

.header-btn-primary:hover {
    background: #fbbf24;
}

.header-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
    font-family: var(--font-primary);
}

.header-toggle-line {
    width: 30px;
    height: 4px;
    background: var(--accent-color);
    margin: 4px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--darker-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    display: block;
    filter: brightness(0.8);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 26, 26, 0.3));
    z-index: 2;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    color: var(--white-color);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.title-accent {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--white-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: var(--dark-color);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(245, 158, 11, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.card-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

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

.card-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Match Info */
.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team {
    text-align: center;
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.team-home {
    color: var(--accent-color);
}

.match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.match-vs span:first-child {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.match-date {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Card Stats */
.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.card-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-stats .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.card-stats .stat-label {
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); }
    40% { transform: translateX(-50%) translateY(-15px) rotate(45deg); }
    60% { transform: translateX(-50%) translateY(-7px) rotate(45deg); }
}

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

.section-title {
    font-family: var(--font-display);
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 3.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Section Équipe Moderne */
.team-section {
    background: linear-gradient(135deg, var(--primary-color), var(--darker-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Équipe Principale */
.team-main {
    margin-bottom: 4rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Staff Technique */
.staff-section {
    margin-bottom: 4rem;
}

.staff-title {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-display);
}

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

.staff-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.staff-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--accent-color);
}

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-color);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info h4 {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.staff-role {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.staff-stats {
    margin-top: 1rem;
}

.win-rate, .experience {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Joueurs Principaux */
.players-showcase {
    margin-bottom: 4rem;
}

.showcase-title {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-display);
}

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

.player-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.player-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--accent-color);
}

.player-card.featured {
    border-color: var(--accent-color);
    background: rgba(255, 193, 7, 0.1);
}

.player-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-card:hover .player-photo img {
    transform: scale(1.1);
}

.player-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.player-info {
    padding: 2rem;
    text-align: center;
}

.player-info h4 {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.player-position {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.player-number {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.player-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call to Action */
.team-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.team-cta h3 {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.team-cta p {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.player-stats .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-info h4 {
    color: var(--white-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.player-number {
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

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

.news-swiper {
    position: relative;
    padding: 3rem 0;
}

.swiper-slide {
    height: auto;
}

.news-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.news-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.news-category {
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--gray-400);
}

.news-title {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.news-excerpt {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.news-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: gap var(--transition-normal);
}

.news-link:hover {
    gap: 1.5rem;
}

/* Videos Section */
.videos-section {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.video-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-card.featured {
    grid-column: span 2;
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    transition: transform var(--transition-normal);
}

.play-button:hover {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-content {
    padding: 2rem;
}

.video-content h3 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-content p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.video-meta {
    display: flex;
    gap: 2rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Swiper Navigation */
.swiper-pagination {
    position: relative;
    margin-top: 3rem;
}

.swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/* Calendar Section */
.calendar-section {
    padding: var(--section-padding);
    background: var(--darker-color);
}

.calendar-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    text-align: center;
    min-width: 120px;
    z-index: 2;
}

.day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.month {
    display: block;
    font-size: 1rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-content {
    flex: 1;
    margin: 0 3rem;
}

.match-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: transform var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.match-card:hover {
    transform: translateY(-10px);
}

.match-teams {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.team-name {
    font-weight: 600;
    color: var(--white-color);
    font-size: 1.2rem;
}

.match-info {
    text-align: center;
}

.match-time {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.match-venue {
    display: block;
    font-size: 1rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.match-status {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.match-status.upcoming {
    background: var(--success-color);
    color: var(--white-color);
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: none;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(245, 158, 11, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white-color);
}

.gallery-content h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Subscription Section */
.subscription-section {
    padding: var(--section-padding);
    background: var(--darker-color);
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}

.subscription-card {
    background: var(--secondary-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
}

.subscription-card:hover {
    transform: translateY(-15px);
}

.subscription-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.subscription-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white-color);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.subscription-header {
    margin-bottom: 3rem;
}

.subscription-header h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.price .currency {
    font-size: 1.5rem;
    color: var(--gray-300);
}

.price .period {
    font-size: 1rem;
    color: var(--gray-400);
}

.subscription-features {
    margin-bottom: 3rem;
}

.subscription-features ul {
    list-style: none;
    text-align: left;
}

.subscription-features li {
    margin-bottom: 1rem;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subscription-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
}

.contact-details h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-details p {
    color: var(--gray-300);
    line-height: 1.7;
}

.form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-family: inherit;
    transition: border-color var(--transition-normal);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

/* Footer Moderne */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--darker-color));
    color: var(--white-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Footer Principal - Une Rangée */
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo et Description */
.footer-brand {
    flex: 2;
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.footer-logo-text h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.footer-logo-text p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
    font-family: var(--font-primary);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
}

/* Navigation Rapide */
.footer-nav {
    flex: 1;
    min-width: 200px;
}

.footer-nav h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    position: relative;
}

.footer-nav-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-nav-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.footer-nav-links a:hover::before {
    width: 6px;
}

/* Réseaux Sociaux */
.footer-social {
    flex: 1;
    min-width: 150px;
}

.footer-social h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Newsletter */
.footer-newsletter {
    flex: 1.5;
    min-width: 250px;
}

.footer-newsletter h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.footer-newsletter p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
    font-family: var(--font-primary);
}

.newsletter-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #fbbf24, var(--accent-color));
    transform: scale(1.05);
}

/* Footer Bottom - Une Rangée */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
}

.footer-copyright p {
    color: var(--gray-400);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-back-to-top {
    display: flex;
    justify-content: flex-end;
}

.back-to-top-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    border: none;
    border-radius: 12px;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

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

.back-to-top-btn:hover::before {
    left: 100%;
}

.back-to-top-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    [data-scroll-container] {
        padding-top: 70px;
    }
    
    .header {
        height: 70px;
    }
    
    .header-container {
        gap: 1rem;
    }
    
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
    
    /* Masquer les boutons d'action sur mobile */
    .header-actions .header-btn {
        display: none;
    }
    
    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 9998;
        gap: 0;
        justify-content: flex-start;
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header-toggle {
        display: flex;
    }
    
    .header-link {
        padding: 1rem 0;
        font-size: 1.2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-link:last-child {
        border-bottom: none;
    }
    
    .header-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .header-logo-text {
        font-size: 1.5rem;
    }

    .header-toggle.active .header-toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header-toggle.active .header-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .header-toggle.active .header-toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero {
        min-height: calc(100vh - 70px);
    }

    .title-line {
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        width: 300px;
        height: 300px;
    }

    .floating-logo {
        width: 150px;
        height: 150px;
    }

    .calendar-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 50px;
    }

    .timeline-date {
        position: absolute;
        left: -80px;
        top: 0;
    }

    .timeline-content {
        margin: 0;
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .subscription-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card.featured {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Footer Responsive */
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-nav-links a {
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-nav-links a::before {
        display: none;
    }
    
    .footer-nav-links a:hover {
        transform: none;
        background: rgba(255, 193, 7, 0.1);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-input-group {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }
}

/* GSAP Animations */
.gsap-marker-start,
.gsap-marker-end {
    display: none;
}

/* Locomotive Scroll */
[data-scroll-container] {
    overflow: hidden;
}

[data-scroll-section] {
    position: relative;
}

/* Vanilla Tilt */
.js-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.js-tilt-glare {
    border-radius: inherit;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white-color);
    animation: spin 1s ease-in-out infinite;
}

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