/**
 * NEON CYBERPUNK THEME
 * Modern Neon Tema - Mor, Pembe, Cyan
 * @version 1.0
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Neon Colors */
    --neon-purple: #b026ff;
    --neon-pink: #ff0080;
    --neon-cyan: #00f3ff;
    --neon-blue: #4d4dff;
    --neon-magenta: #ff00ff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #b026ff 0%, #ff0080 100%);
    --gradient-secondary: linear-gradient(135deg, #00f3ff 0%, #4d4dff 100%);
    --gradient-cyber: linear-gradient(90deg, #b026ff, #ff0080, #00f3ff, #4d4dff);
    --gradient-glow: radial-gradient(circle, rgba(176,38,255,0.4) 0%, transparent 70%);
    --gradient-card: linear-gradient(145deg, rgba(176,38,255,0.1) 0%, rgba(0,243,255,0.05) 100%);
    
    /* Backgrounds */
    --bg-dark: #0a0015;
    --bg-darker: #05000a;
    --bg-card: rgba(20, 0, 40, 0.7);
    --bg-card-hover: rgba(40, 0, 60, 0.8);
    --bg-glass: rgba(10, 0, 20, 0.85);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-neon: #00f3ff;
    
    /* Borders */
    --border-color: rgba(176, 38, 255, 0.3);
    --border-glow: rgba(176, 38, 255, 0.6);
    
    /* Shadows */
    --shadow-neon: 0 0 20px rgba(176, 38, 255, 0.5);
    --shadow-neon-strong: 0 0 40px rgba(176, 38, 255, 0.7);
    --shadow-cyan: 0 0 20px rgba(0, 243, 255, 0.5);
    --shadow-pink: 0 0 20px rgba(255, 0, 128, 0.5);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-accent: 'Exo 2', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1300px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Code Protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Cursor */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(176,38,255,0.03) 100%),
        linear-gradient(0deg, transparent 98%, rgba(176,38,255,0.03) 100%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    cursor: none;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
}

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

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Preloader Background Pattern */
#preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(176, 38, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 40%);
    animation: preloaderGlow 4s ease-in-out infinite alternate;
}

@keyframes preloaderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Grid Pattern Overlay */
#preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(176, 38, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 38, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.neon-loader {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 60px;
}

/* ===== ANIMATED CIRCLES ===== */
.loader-circles {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
}

.loader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
}

.loader-circle-1 {
    width: 100%;
    height: 100%;
    border-top-color: var(--neon-purple);
    border-right-color: var(--neon-purple);
    animation: circleRotate 3s linear infinite;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.loader-circle-2 {
    width: 80%;
    height: 80%;
    border-top-color: var(--neon-cyan);
    border-left-color: var(--neon-cyan);
    animation: circleRotate 2s linear infinite reverse;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.loader-circle-3 {
    width: 60%;
    height: 60%;
    border-bottom-color: var(--neon-pink);
    border-right-color: var(--neon-pink);
    animation: circleRotate 1.5s linear infinite;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.loader-circle-4 {
    width: 40%;
    height: 40%;
    border: 2px solid var(--neon-purple);
    animation: circlePulse 2s ease-in-out infinite, circleRotate 4s linear infinite;
    box-shadow: 0 0 30px var(--neon-purple), inset 0 0 20px rgba(176, 38, 255, 0.3);
}

@keyframes circleRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes circlePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ===== LOGO WITH GLITCH EFFECT ===== */
.neon-loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    position: relative;
}

.logo-letter {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: letterGlow 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(176, 38, 255, 0.8));
}

.logo-letter:nth-child(odd) {
    animation-delay: 0.1s;
}

.logo-letter:nth-child(even) {
    animation-delay: 0.2s;
}

.logo-letter:nth-child(3),
.logo-letter:nth-child(7) {
    animation-delay: 0.3s;
}

@keyframes letterGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--neon-purple));
        transform: translateY(0);
    }
    50% {
        filter: drop-shadow(0 0 25px var(--neon-cyan));
        transform: translateY(-3px);
    }
}

.logo-letter::before {
    content: attr(data-letter);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--neon-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: glitchEffect 3s ease-in-out infinite;
}

@keyframes glitchEffect {
    0%, 90%, 100% { opacity: 0; transform: translate(0); }
    91% { opacity: 0.8; transform: translate(-2px, 2px); }
    92% { opacity: 0.8; transform: translate(2px, -2px); }
    93% { opacity: 0; transform: translate(0); }
}

.logo-space {
    width: 15px;
}

/* ===== LOADING TEXT ===== */
.loader-text {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 25px;
    animation: textFlicker 3s ease-in-out infinite;
}

@keyframes textFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.3; }
    94% { opacity: 1; }
    96% { opacity: 0.5; }
    97% { opacity: 1; }
}

/* ===== PROGRESS BAR ===== */
.neon-loader-bar-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.neon-loader-bar {
    width: 250px;
    height: 6px;
    background: rgba(176, 38, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.neon-loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
    box-shadow: 0 0 20px var(--neon-purple);
}

.neon-loader-bar.loading::before {
    width: 100%;
    animation: progressFill 4s ease-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    10% { width: 8%; }
    20% { width: 18%; }
    30% { width: 28%; }
    40% { width: 40%; }
    50% { width: 52%; }
    60% { width: 64%; }
    70% { width: 76%; }
    80% { width: 86%; }
    90% { width: 94%; }
    100% { width: 100%; }
}

.bar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: barShine 2s ease-in-out infinite;
}

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

.loader-percentage {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 50px;
    text-align: right;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ===== LOADING DOTS ===== */
.loader-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 20px var(--neon-cyan);
    }
}

/* ===== CORNER DECORATIONS ===== */
.loader-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--neon-purple);
    opacity: 0.5;
}

.loader-corner-tl {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
    box-shadow: -5px -5px 20px rgba(176, 38, 255, 0.3);
}

.loader-corner-tr {
    top: 30px;
    right: 30px;
    border-left: none;
    border-bottom: none;
    box-shadow: 5px -5px 20px rgba(176, 38, 255, 0.3);
}

.loader-corner-bl {
    bottom: 30px;
    left: 30px;
    border-right: none;
    border-top: none;
    box-shadow: -5px 5px 20px rgba(176, 38, 255, 0.3);
}

.loader-corner-br {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
    box-shadow: 5px 5px 20px rgba(176, 38, 255, 0.3);
}

/* ===== SCAN LINE EFFECT ===== */
.loader-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--neon-cyan) 50%,
        transparent 100%);
    opacity: 0.5;
    animation: scanlineMove 3s linear infinite;
    box-shadow: 0 0 20px var(--neon-cyan);
}

@keyframes scanlineMove {
    0% { top: 0; }
    100% { top: 100%; }
}

/* ===== PARTICLES ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        linear-gradient(90deg, rgba(176,38,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(176,38,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* ===== SNOW EFFECT ===== */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #fff, 0 0 10px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    opacity: 0.8;
}

.snowflake::before {
    content: '❄';
}

/* Different snowflake sizes */
.snowflake.small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.snowflake.medium {
    font-size: 1.2rem;
    opacity: 0.85;
}

.snowflake.large {
    font-size: 1.6rem;
    opacity: 0.95;
}

/* Snowfall animation - will be set dynamically via JS */
@keyframes snowfall {
    0% {
        transform: translateY(-10px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* Snowflake glowing effect */
.snowflake.glow {
    text-shadow:
        0 0 5px #fff,
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-purple);
}

/* Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 15px 40px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-purple);
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--neon-purple)); }
    50% { filter: drop-shadow(0 0 20px var(--neon-pink)); }
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-link {
    position: relative;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px var(--neon-purple);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.music-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.music-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--neon-purple);
    color: var(--text-primary);
    box-shadow: var(--shadow-neon);
}

.music-btn.muted i::before {
    content: '\f6a9';
}

/* Notification Count Badge */
.info-btn-new {
    position: relative;
}

.notification-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--neon-pink);
    color: var(--text-primary);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
    pointer-events: none;
    border: 1px solid var(--bg-dark);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 5px var(--neon-pink);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 15px var(--neon-pink), 0 0 20px var(--neon-pink);
    }
}

/* Info Tooltip */
.info-tooltip {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-neon);
}

.info-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.info-tooltip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-tooltip-header i {
    font-size: 1.2rem;
    animation: notificationPulse 2s ease-in-out infinite;
}

.info-tooltip-content {
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    box-shadow: 0 0 5px var(--neon-purple);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 30px 80px;
    z-index: 10;
    overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 10s ease-out;
    transform: scale(1.15);
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark overlay on each slide */
.hero-bg-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 0, 10, 0.6) 0%, rgba(10, 0, 21, 0.4) 50%, rgba(5, 0, 10, 0.6) 100%);
    pointer-events: none;
}

/* Neon glow overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(176, 38, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 243, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 128, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-neon);
}

.hero-badge i {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow:
        0 0 3px var(--neon-purple),
        0 0 7px var(--neon-purple),
        0 0 15px var(--neon-purple),
        2px 2px 0 var(--neon-pink);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-btn i {
    font-size: 1.3rem;
    color: var(--neon-cyan);
}

.hero-btn:hover {
    border-color: var(--neon-purple);
    background: var(--gradient-card);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.hero-btn:hover i {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    position: relative;
    padding: var(--section-padding) 0;
    z-index: 10;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(176,38,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: var(--shadow-neon);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.feature-card {
    position: relative;
    padding: 50px 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

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

.feature-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-neon), inset 0 0 20px rgba(176, 38, 255, 0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}

.feature-title {
    position: relative;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    position: relative;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== SOCIAL SIDEBAR ===== */
.social-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.social-sidebar-item {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--social-color);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

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

.social-sidebar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--social-color);
    border-radius: var(--radius-full);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-sidebar-item:hover::before {
    transform: scale(1);
}

.social-sidebar-item:hover {
    color: var(--text-primary);
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--social-color);
}

.social-tooltip {
    position: absolute;
    right: 70px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-tooltip::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid transparent;
    border-left-color: var(--neon-purple);
}

.social-sidebar-item:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    padding: 60px 30px 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--neon-purple);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

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

.footer-social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--neon-purple);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--neon-cyan);
    transition: var(--transition-normal);
}

.footer-copyright a:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ===== CURSOR FOLLOWER ===== */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.cursor-circle {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
    box-shadow: 0 0 10px var(--neon-purple);
}

.cursor-dot.hover {
    width: 15px;
    height: 15px;
    background: var(--gradient-primary);
}

.cursor-circle.hover {
    width: 60px;
    height: 60px;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
    box-shadow: var(--shadow-neon);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon-strong);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--neon-purple);
    color: var(--text-primary);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    margin-right: 15px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

.lang-toggle .lang-icon {
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.lang-toggle .lang-code {
    font-weight: 600;
    font-size: 0.8rem;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neon);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.lang-option:hover {
    background: rgba(176, 38, 255, 0.2);
    color: var(--neon-cyan);
}

.lang-option.active {
    background: rgba(176, 38, 255, 0.3);
    color: var(--neon-cyan);
}
