/* ================================================
   FOOTBALL LEGENDS - PREMIUM ANIMATED CSS
   ================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    /* Primary Colors */
    --primary: #ff0844;
    --primary-dark: #cc0636;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --gold: #f7b733;
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    --gradient-fire: linear-gradient(135deg, #ff0844, #ff6b35, #ffd700);
    --gradient-gold: linear-gradient(135deg, #ffd700, #f7b733, #ff6b35);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a0a10 100%);
    
    /* Shadows */
    --shadow-glow: 0 0 60px rgba(255, 8, 68, 0.3);
    --shadow-card: 0 25px 50px rgba(0, 0, 0, 0.5);
    --shadow-text: 0 0 40px rgba(255, 8, 68, 0.5);
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1400px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary), var(--accent));
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-dot.hover {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--accent);
    mix-blend-mode: normal;
}

.cursor-ring.hover {
    width: 80px;
    height: 80px;
    border-color: var(--accent);
    opacity: 0.5;
}

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 99999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-fire);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--secondary);
}

/* ============ BACKGROUND PARTICLES ============ */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-50px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-20px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-80px) translateX(10px) rotate(270deg);
    }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(255, 8, 68, 0.1);
    border-bottom: 1px solid rgba(255, 8, 68, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    position: relative;
}

.logo-icon {
    font-size: 2.5rem;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--primary));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.logo-text {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-text::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary);
    overflow: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    text-shadow: 0 0 20px var(--primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 30px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 8, 68, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at right bottom, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at left bottom, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
                var(--gradient-dark);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 8, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 8, 68, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(80px); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 8, 68, 0.3);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.2);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: floatIcon 15s ease-in-out infinite;
    filter: drop-shadow(0 0 20px currentColor);
}

.float-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.float-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; }
.float-icon:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }
.float-icon:nth-child(5) { top: 40%; left: 85%; animation-delay: 4s; }
.float-icon:nth-child(6) { top: 80%; left: 50%; animation-delay: 5s; }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg) scale(1);
    }
    75% {
        transform: translateY(-40px) rotate(5deg) scale(1.05);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 8, 68, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Title */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
    text-shadow: 0 0 80px rgba(255, 8, 68, 0.5);
}

.title-line:nth-child(2) .word {
    animation-delay: 0.3s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-fire);
    border-radius: 10px;
    animation: underlineGrow 1.5s ease-out 0.8s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Hero Subtitle & Desc */
.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.stat-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 8, 68, 0.2);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 8, 68, 0.2);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-glow {
    opacity: 0.1;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: statIconBounce 2s ease-in-out infinite;
}

@keyframes statIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-fire);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 10px 40px rgba(255, 8, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 8, 68, 0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 10px 40px rgba(255, 8, 68, 0.4);
    transform: translateY(-5px);
}

.btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: borderMove 3s linear infinite;
    z-index: -1;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: scrollFloat 3s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-dim);
    border-radius: 25px;
    margin: 0 auto 15px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-arrows span {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: scrollArrow 1.5s ease-in-out infinite;
    opacity: 0;
}

.scroll-arrows span:nth-child(1) { animation-delay: 0s; }
.scroll-arrows span:nth-child(2) { animation-delay: 0.2s; }
.scroll-arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translateY(10px); }
}

/* Hero Social */
.hero-social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.4);
}

.social-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary), transparent);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-card {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-scale {
    transform: scale(0.8);
}

.reveal-card {
    transform: translateY(80px) rotateX(10deg);
}

.reveal-fade.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed,
.reveal-card.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotateX(0);
}

/* ============ ABOUT SECTION ============ */
.about-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 8, 68, 0.1);
    top: -100px;
    right: -100px;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 53, 0.08);
    bottom: -100px;
    left: -100px;
    animation: shapeFloat 25s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(0, 50px) scale(1); }
    75% { transform: translate(-50px, -25px) scale(0.9); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 8, 68, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 60px rgba(255, 8, 68, 0.3);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 20px;
}

.title-line-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line-deco .line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.title-line-deco .line:last-child {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.title-line-deco .diamond {
    color: var(--primary);
    font-size: 1.2rem;
    animation: diamondSpin 3s ease-in-out infinite;
}

@keyframes diamondSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Text */
.about-text {
    position: relative;
}

.big-letter {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    float: left;
    margin-right: 15px;
    margin-top: -20px;
    line-height: 1;
    filter: drop-shadow(0 0 30px var(--primary));
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.body-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.player-name {
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.player-name.messi {
    color: #87CEEB;
    background: rgba(135, 206, 235, 0.1);
}

.player-name.ronaldo {
    color: #00ff87;
    background: rgba(0, 255, 135, 0.1);
}

.player-name.neymar {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.player-name.mbappe {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
}

.player-name.salah {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.player-name:hover {
    transform: scale(1.05);
}

.shimmer-text {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s linear infinite;
    font-weight: 800;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 18px 35px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.about-btn:hover {
    background: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 8, 68, 0.4);
    transform: translateY(-5px);
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(8px);
}

/* Feature Cards */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 8, 68, 0.2);
    transform: translateX(20px);
}

.feature-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-shine {
    left: 100%;
}

.feature-icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    font-size: 2.2rem;
    z-index: 1;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.feature-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.feature-number {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 8, 68, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    color: rgba(255, 8, 68, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* ============ QUOTE SECTION ============ */
.quote-section {
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 8, 68, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
    z-index: -1;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 8, 68, 0.2);
    border-radius: 30px;
    position: relative;
}

.quote-mark {
    font-family: 'Georgia', serif;
    font-size: 10rem;
    line-height: 1;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    left: 50px;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.quote-text .highlight {
    color: var(--accent);
    font-weight: 600;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-line {
    width: 50px;
    height: 2px;
    background: var(--gradient-fire);
}

.author-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ============ LEGENDS SECTION ============ */
.legends-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark), #0d0d15, var(--bg-dark));
    overflow: hidden;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 8, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Legends Grid */
.legends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Legend Card */
.legend-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
}

.legend-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.legend-card:hover .card-image img {
    transform: scale(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    z-index: 10;
}

.legend-card:hover .card-shine {
    left: 150%;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 5;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.legend-card:hover .card-content {
    transform: translateY(0);
}

.player-number {
    position: absolute;
    top: -80px;
    right: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.legend-card:hover .player-number {
    color: rgba(255, 8, 68, 0.3);
    transform: scale(1.1);
}

.player-flag {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-content .player-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: unset;
}

.player-nickname {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.player-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-pill {
    background: rgba(255, 8, 68, 0.2);
    border: 1px solid var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.legend-card:hover .stat-pill {
    background: var(--primary);
    color: var(--bg-dark);
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.legend-card:hover .card-cta {
    opacity: 1;
    transform: translateY(0);
}

.card-cta i {
    transition: transform 0.3s ease;
}

.legend-card:hover .card-cta i {
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)) border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.legend-card:hover .card-border {
    opacity: 1;
}

.card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.legend-card:hover .card-glow {
    opacity: 0.3;
}

/* Player-specific colors */
.legend-card[data-player="messi"]:hover .card-glow { background: #87CEEB; }
.legend-card[data-player="ronaldo"]:hover .card-glow { background: #00ff87; }
.legend-card[data-player="neymar"]:hover .card-glow { background: #FFD700; }
.legend-card[data-player="mbappe"]:hover .card-glow { background: #ff6b9d; }
.legend-card[data-player="salah"]:hover .card-glow { background: #ff4444; }

/* ============ STATS SECTION ============ */
.stats-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff0844' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stats-card {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 8, 68, 0.2);
}

.stats-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: statsIconFloat 3s ease-in-out infinite;
}

@keyframes statsIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.stats-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stats-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-fire);
    border-radius: 10px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--primary);
}

.stats-card.revealed .bar-fill {
    width: var(--width, 80%);
}

/* ============ FACTS SECTION ============ */
.facts-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark), #0d0812);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fact-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-fire);
    transition: height 0.4s ease;
}

.fact-card:hover::before {
    height: 100%;
}

.fact-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 8, 68, 0.2);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: factIconSpin 5s linear infinite;
}

@keyframes factIconSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.fact-card:hover .fact-icon {
    animation: factIconBounce 0.5s ease;
}

@keyframes factIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.fact-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.fact-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.fact-stat {
    display: inline-block;
    background: var(--gradient-fire);
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    transition: all 0.3s ease;
}

.fact-card:hover .fact-stat {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.4);
}

/* ============ CTA SECTION ============ */
.cta-section {
    position: relative;
    padding: 120px 30px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 8, 68, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
}

.cta-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: ctaParticle 15s linear infinite;
    opacity: 0.5;
}

.cta-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { left: 30%; animation-delay: 2s; }
.cta-particles span:nth-child(3) { left: 50%; animation-delay: 4s; }
.cta-particles span:nth-child(4) { left: 70%; animation-delay: 6s; }
.cta-particles span:nth-child(5) { left: 90%; animation-delay: 8s; }
.cta-particles span:nth-child(6) { left: 20%; animation-delay: 10s; }

@keyframes ctaParticle {
    0% { top: 100%; opacity: 0; transform: scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: -10%; opacity: 0; transform: scale(1.5); }
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 8, 68, 0.3);
    border-radius: 40px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.cta-emoji {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    animation: ctaEmoji 3s ease-in-out infinite;
}

@keyframes ctaEmoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-10deg); }
    75% { transform: translateY(-10px) rotate(10deg); }
}

.cta-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-dark);
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-btn .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-fire);
    z-index: -1;
    transition: transform 0.4s ease;
}

.cta-btn:hover .btn-bg {
    transform: scale(1.1);
}

.cta-btn:hover {
    box-shadow: 0 20px 60px rgba(255, 8, 68, 0.5);
    transform: translateY(-5px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark), #050508);
    padding-top: 100px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.footer-wave svg {
    width: 100%;
    height: 100px;
    fill: var(--bg-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
}

.footer-logo .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.link-group a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
    padding-left: 25px;
}

.link-group a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.social-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 15px 30px rgba(255, 8, 68, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.heart {
    display: inline-block;
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

.copyright {
    font-size: 0.85rem;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-fire);
    border: none;
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(255, 8, 68, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 8, 68, 0.6);
}

.back-to-top:hover i {
    animation: rocketLaunch 0.5s ease;
}

@keyframes rocketLaunch {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.back-to-top .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.back-to-top:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
    .about-grid {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-social {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-card {
        padding: 20px 25px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .legends-grid {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 350px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
    
    .back-to-top .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-badge {
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-number {
        position: static;
        transform: none;
        font-size: 2rem;
        margin-top: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* ============ CURSOR HIDE ON TOUCH DEVICES ============ */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ SELECTION STYLE ============ */
::selection {
    background: var(--primary);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary);
    color: var(--text-light);
}