/* ===== CSS Variables ===== */
:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --bg-card: #0f0f18;
    --bg-card-hover: #14141f;
    --text-primary: #ffffff;
    --text-secondary: #8888a0;
    --text-muted: #55556a;
    --accent-primary: #a855f7;
    --accent-secondary: #ec4899;
    --accent-tertiary: #6366f1;
    --accent-gold: #f59e0b;
    --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --gradient-secondary: linear-gradient(135deg, var(--accent-tertiary), var(--accent-primary));
    --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.15);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* GPU acceleration hints */
.event-card, .card-img, .hero-visual, .nav-links {
    will-change: transform;
    transform: translateZ(0);
}

/* Content visibility for off-screen elements */
section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-open, body.popup-open {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-stage {
    width: 200px;
    height: 160px;
    position: relative;
    margin: 0 auto 30px;
    perspective: 500px;
}

/* Spotlights */
.spotlight {
    position: absolute;
    width: 60px;
    height: 120px;
    background: conic-gradient(from 180deg, transparent 0deg, rgba(168, 85, 247, 0.3) 30deg, transparent 60deg);
    top: 0;
    transform-origin: top center;
    filter: blur(8px);
    animation: spotlightSwing 2s ease-in-out infinite;
}

.spotlight-1 {
    left: 20px;
    animation-delay: 0s;
}

.spotlight-2 {
    left: 50%;
    transform: translateX(-50%);
    background: conic-gradient(from 180deg, transparent 0deg, rgba(236, 72, 153, 0.4) 30deg, transparent 60deg);
    animation-delay: -0.6s;
}

.spotlight-3 {
    right: 20px;
    animation-delay: -1.2s;
}

@keyframes spotlightSwing {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.spotlight-2 {
    animation-name: spotlightSwing2;
}

@keyframes spotlightSwing2 {
    0%, 100% { transform: translateX(-50%) rotate(-10deg); }
    50% { transform: translateX(-50%) rotate(10deg); }
}

/* Dancer */
.dancer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: dancerBounce 0.5s ease-in-out infinite;
}

@keyframes dancerBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.dancer-body {
    position: relative;
    width: 40px;
    height: 70px;
}

.dancer-head {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.dancer-torso {
    width: 16px;
    height: 25px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 8px 8px 4px 4px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
}

.dancer-arm {
    width: 6px;
    height: 22px;
    background: var(--accent-primary);
    border-radius: 3px;
    position: absolute;
    top: 20px;
    transform-origin: top center;
}

.dancer-arm-left {
    left: 2px;
    animation: armSwingLeft 0.5s ease-in-out infinite;
}

.dancer-arm-right {
    right: 2px;
    animation: armSwingRight 0.5s ease-in-out infinite;
}

@keyframes armSwingLeft {
    0%, 100% { transform: rotate(-45deg); }
    50% { transform: rotate(30deg); }
}

@keyframes armSwingRight {
    0%, 100% { transform: rotate(45deg); }
    50% { transform: rotate(-30deg); }
}

.dancer-leg {
    width: 7px;
    height: 28px;
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
    border-radius: 4px;
    position: absolute;
    top: 40px;
    transform-origin: top center;
}

.dancer-leg-left {
    left: 8px;
    animation: legSwingLeft 0.5s ease-in-out infinite;
}

.dancer-leg-right {
    right: 8px;
    animation: legSwingRight 0.5s ease-in-out infinite;
}

@keyframes legSwingLeft {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(-20deg); }
}

@keyframes legSwingRight {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(20deg); }
}

/* Stage Floor */
.stage-floor {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3), transparent);
    border-radius: 50%;
    filter: blur(4px);
    animation: stageGlow 1s ease-in-out infinite alternate;
}

@keyframes stageGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

/* Preloader Text */
.preloader-text {
    margin-bottom: 24px;
}

.preloader-logo {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 1.5s ease-in-out infinite;
}

.preloader-sub {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Progress Bar */
.preloader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: progressLoad 2s ease-in-out forwards;
}

@keyframes progressLoad {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== Utility Classes ===== */
.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: inline-flex;
    }
}

/* ===== Language Popup ===== */
.language-popup {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.98) 0%, rgba(20, 10, 30, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    visibility: visible;
    transition: var(--transition-normal);
}

.language-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.language-popup.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.language-popup-content {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 35, 0.98) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: popupIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(168, 85, 247, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.8) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.language-popup-header {
    margin-bottom: 36px;
}

.language-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 
        0 10px 40px rgba(168, 85, 247, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 10px 60px rgba(168, 85, 247, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.2); }
}

.language-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.language-popup-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.language-popup-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    color: #ffffff;
    cursor: pointer;
}

.language-option:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.25);
}

.language-option:active {
    transform: translateY(-2px) scale(1);
}

.lang-flag {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.lang-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== Cursor Glow Effect ===== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
    body:hover .cursor-glow {
        opacity: 1;
    }
}

/* ===== Particles ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
    50% { transform: translateY(-200px) translateX(-30px); opacity: 0.3; }
    75% { transform: translateY(-100px) translateX(80px); opacity: 0.5; }
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-normal);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    opacity: 0;
    transition: var(--transition-normal);
}

.header.scrolled::before {
    opacity: 1;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.logo-k {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-secondary);
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-lang svg {
    width: 18px;
    height: 18px;
}

.btn-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-header {
    display: none;
    padding: 10px 24px;
    font-size: 0.85rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
    transform-origin: center;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.nav.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav.active .nav-link {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Mobile Language Switcher in Nav */
.nav-lang-mobile {
    display: none;
}

.nav.active .nav-lang-mobile {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    justify-content: center;
}

.lang-btn-mobile {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-normal);
    min-width: 60px;
    text-align: center;
}

.lang-btn-mobile:hover,
.lang-btn-mobile.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Mobile Language Button in Header */
.mobile-lang-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition-normal);
    margin-right: 8px;
}

.mobile-lang-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    color: white;
}

@media (max-width: 1023px) {
    .mobile-lang-btn {
        display: flex;
    }
}

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 60%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.2);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.15);
    bottom: 10%;
    left: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(99, 102, 241, 0.15);
    top: 40%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: slideDown 0.8s ease backwards;
}

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

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    margin-bottom: 24px;
    width: 100%;
}

.title-line {
    display: block;
    text-align: center;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease backwards;
    margin-right: 16px;
}

.title-line:nth-child(1) .title-word { animation-delay: 0.2s; }
.title-line:nth-child(2) .title-word:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) .title-word:nth-child(2) { animation-delay: 0.4s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-buttons .btn {
    width: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-glow {
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.hero-stat {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 1s ease 1s backwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 4px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ===== Clients Section ===== */
.clients {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-slider {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.client-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    transition: var(--transition-normal);
}

.client-logo:hover {
    opacity: 1;
    color: var(--text-secondary);
}

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

/* ===== Section Styles ===== */
.section-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.bg-blur-1 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.08);
    top: 10%;
    right: -10%;
}

.bg-blur-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.06);
    bottom: 10%;
    left: -10%;
}

.bg-blur-3 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.06);
    top: 50%;
    left: 30%;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    display: inline-block;
    margin-right: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Events Section ===== */
.events {
    padding: 100px 0;
    position: relative;
    background: var(--bg-secondary);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-tab {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: var(--transition-normal);
}

.filter-tab:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Event Card */
.event-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--glass-border);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.event-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: transparent;
    z-index: -1;
    transition: var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(168, 85, 247, 0.15);
}

.event-card.featured {
    border-color: rgba(168, 85, 247, 0.3);
}

.card-link {
    display: block;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
}

.event-card:hover .card-glow {
    opacity: 1;
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Card with real image */
.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-slow);
}

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

/* When image exists, gradient becomes overlay */
.card-image:has(.card-img) .card-gradient {
    opacity: 0.3;
    z-index: 2;
    mix-blend-mode: overlay;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 50%, var(--c3) 100%);
    transition: var(--transition-slow);
}

.event-card:hover .card-gradient {
    transform: scale(1.1);
}

.card-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 30%);
    opacity: 0.5;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-badge {
    background: var(--gradient-gold);
    color: #000;
    border: none;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.view-text {
    padding: 12px 24px;
    background: white;
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.event-card:hover .view-text {
    transform: translateY(0);
}

.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Events CTA */
.events-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.events-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.about-intro-content {
    max-width: 700px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-intro-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.visual-card.large {
    width: 320px;
    height: 320px;
}

.visual-gradient {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 50%, var(--accent-tertiary) 0deg, var(--accent-primary) 120deg, var(--accent-secondary) 240deg, var(--accent-tertiary) 360deg);
    opacity: 0.15;
    animation: rotate 20s linear infinite;
}

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

.visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(40px);
}

.visual-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.visual-number span {
    font-size: 3rem;
}

.visual-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Why Us */
.why-us {
    margin-bottom: 80px;
}

.why-us-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.why-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

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

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===== Process Section ===== */
.process {
    padding: 100px 0;
    position: relative;
    background: var(--bg-secondary);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    position: relative;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-info-section > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(8px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.method-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.method-icon.phone { background: var(--gradient-primary); }
.method-icon.email { background: var(--gradient-secondary); }
.method-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.method-icon.address { background: linear-gradient(135deg, #4285F4, #34A853); }

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.method-value {
    font-weight: 600;
}

/* Contact Form */
.contact-form-section {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-links-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col li,
.footer-links-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-lang {
    display: flex;
    gap: 8px;
}

.lang-switch {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: var(--transition-normal);
}

.lang-switch:hover,
.lang-switch.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Show Detail Page ===== */
.show-hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 120px 20px 60px;
}

.show-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.show-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 50%, var(--c3) 100%);
}

.show-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.show-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.show-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.show-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.show-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.show-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.show-meta-item svg {
    width: 20px;
    height: 20px;
}

/* Show Content */
.show-content {
    padding: 80px 0;
}

.show-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.show-main {
    max-width: 800px;
}

.show-section {
    margin-bottom: 48px;
}

.show-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.show-section h2 svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.show-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.show-description p {
    margin-bottom: 20px;
}

.show-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Show Gallery */
.show-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

/* Show Sidebar */
.show-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 32px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-stat span:first-child {
    color: var(--text-secondary);
}

.sidebar-stat span:last-child {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-normal);
    margin-bottom: 32px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.back-btn svg {
    width: 18px;
    height: 18px;
}

/* Related Shows */
.related-shows {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .show-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .show-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item:first-child {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .about-intro {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
    
    .process-timeline::before {
        left: 24px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }
    
    .btn-header {
        display: inline-flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-main {
        grid-template-columns: 1.5fr 2fr;
    }
    
    .show-grid {
        grid-template-columns: 1fr 350px;
    }
    
    .show-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1;
    }
}

@media (min-width: 1280px) {
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: white;
}

/* ===== Intro Video Section ===== */
.intro-video-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.intro-video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.intro-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.intro-video-content .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.intro-video-content .section-tag svg {
    width: 18px;
    height: 18px;
}

.intro-video-content .section-title {
    margin-bottom: 20px;
}

.intro-video-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.intro-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(168, 85, 247, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(168, 85, 247, 0.25);
}

.intro-video-poster {
    position: relative;
    aspect-ratio: 16/9;
}

.intro-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.intro-video-card:hover .intro-video-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.intro-play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-video-card:hover .intro-play-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.intro-play-btn svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    margin-left: 5px;
}

.intro-play-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 968px) {
    .intro-video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-video-content {
        text-align: center;
    }
    
    .intro-play-btn {
        width: 80px;
        height: 80px;
    }
    
    .intro-play-btn svg {
        width: 32px;
        height: 32px;
    }
}

/* ===== Video Modal ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content video {
    width: 100%;
    display: block;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Focus */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cursor-glow, .particles {
        display: none;
    }
}
