/**
 * Nikol Kutnjak - Ultra Professional One Page Website
 * The Voice Kids Hrvatska Winner
 */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-lila: #9b59b6;
    --primary-pink: #e91e63;
    --primary-rose: #ff6b9d;
    --primary-red: #e74c3c;
    /* Dark accents */
    --dark-purple: #2d1b4e;
    --dark-magenta: #4a1942;
    --dark-plum: #3d1a3d;
    --dark-navy: #1a1a2e;
    --dark-wine: #5c1a3d;
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-hero: linear-gradient(135deg, #2d1b4e 0%, #4a1942 30%, #9b59b6 60%, #e91e63 100%);
    --gradient-hero-dark: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 25%, #4a1942 50%, #5c1a3d 75%, #3d1a3d 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    --shadow-soft: 0 10px 40px rgba(155, 89, 182, 0.2);
    --shadow-strong: 0 20px 60px rgba(155, 89, 182, 0.3);
    --shadow-dark: 0 20px 60px rgba(26, 26, 46, 0.5);
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a2e;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* High-DPI / High refresh rate device optimizations */
@media (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) {
    *, *::before, *::after {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .page-loader,
    .hero,
    section {
        transform: translateZ(0);
        will-change: auto;
    }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .page-loader {
        transition: none;
    }
}

/* Global Overflow Fix - Prevent section scrollbars */
main,
section,
.section-container,
.hero,
.about,
.victory,
.journey,
.gallery,
.videos,
.comments,
.comments-section,
.footer,
.footer-modern,
.memory-game-section,
.dressup-section {
    max-width: 100vw;
    overflow: clip;
    overflow-x: clip;
    overflow-y: clip;
}

/* ============================================
   Animated Background
   ============================================ */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-animated .bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite;
}

.bg-animated .bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    background: var(--primary-pink);
    left: 10%;
    animation-delay: 0s;
}

.bg-animated .bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    background: var(--primary-lila);
    left: 30%;
    animation-delay: 2s;
}

.bg-animated .bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    background: var(--primary-rose);
    left: 50%;
    animation-delay: 4s;
}

.bg-animated .bubble:nth-child(4) {
    width: 150px;
    height: 150px;
    background: var(--primary-red);
    left: 70%;
    animation-delay: 6s;
}

.bg-animated .bubble:nth-child(5) {
    width: 100px;
    height: 100px;
    background: var(--primary-pink);
    left: 90%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    padding: 10px 50px;
}

.navbar .logo {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.logo-crown {
    font-size: 32px;
    animation: logoCrownFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
}

@keyframes logoCrownFloat {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(10deg) translateY(-5px); }
}

.navbar.scrolled .logo-crown {
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.8));
}

.logo-text {
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 107, 157, 0.5);
    letter-spacing: 0.5px;
}

.logo-sparkle {
    font-size: 18px;
    animation: logoSparkle 2s ease-in-out infinite;
    position: absolute;
    top: -5px;
    right: -15px;
}

@keyframes logoSparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle .nav-icon {
    font-size: 1rem;
}

.nav-dropdown .dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(155, 89, 182, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown .dropdown-menu li {
    margin: 0;
}

.nav-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-dropdown .dropdown-menu a::after {
    display: none;
}

.nav-dropdown .dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(233, 30, 99, 0.1));
}

.nav-dropdown .dropdown-menu a.active {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(233, 30, 99, 0.15));
    color: var(--primary-lila) !important;
}

.nav-dropdown .dropdown-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.nav-dropdown .dropdown-text {
    font-size: 0.95rem;
}

/* Navbar scrolled state dropdown */
.navbar.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

.lang-switch {
    display: flex;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 5px;
}

.navbar.scrolled .lang-switch {
    background: rgba(155, 89, 182, 0.1);
}

.lang-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition-smooth);
    background: transparent;
    color: inherit;
}

.lang-btn.active {
    background: var(--gradient-hero);
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-dark);
}

/* ============================================
   Hero Section - Dark Modern
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
}

/* Dark mesh overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(155, 89, 182, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(233, 30, 99, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(74, 25, 66, 0.3) 0%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 100% 100%, 100% 100%, 100% 100%, 30px 30px;
    animation: moveStars 100s linear infinite;
}

/* Dark gradient overlay for depth */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0%, transparent 30%, transparent 70%, rgba(26, 26, 46, 0.5) 100%),
        linear-gradient(90deg, rgba(45, 27, 78, 0.3) 0%, transparent 20%, transparent 80%, rgba(45, 27, 78, 0.3) 100%);
    pointer-events: none;
}

@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -500px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 1200px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255,255,255,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: float-image 6s ease-in-out infinite;
    margin-bottom: 40px;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Facebook Like Button in Hero */
.hero-facebook-cta {
    margin-top: 25px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.facebook-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #1877f2, #0d5bbd);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facebook-like-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.5);
    background: linear-gradient(135deg, #0d5bbd, #1877f2);
}

.facebook-like-btn i {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

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

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-hero);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   About Section - Ultra Modern Glassmorphism
   ============================================ */
.about.about-ultra {
    background: linear-gradient(135deg, #fef6ff 0%, #fff5f8 30%, #f8f0ff 60%, #fff 100%);
    position: relative;
    overflow: clip;
    padding: 140px 0;
}

/* Animated Mesh Gradient Background */
.about-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: aboutBlobFloat 20s ease-in-out infinite;
}

.about-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.about-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.35) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    animation-delay: -7s;
}

.about-blob.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes aboutBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.9); }
    75% { transform: translate(-40px, -20px) scale(1.05); }
}

/* Floating 3D Elements */
.about-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-3d-star, .about-3d-heart, .about-3d-crown {
    position: absolute;
    font-size: 30px;
    opacity: 0.25;
    animation: element3DFloat 12s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.about-3d-star.star-1 { top: 10%; left: 8%; animation-delay: 0s; }
.about-3d-star.star-2 { top: 25%; right: 12%; animation-delay: -4s; font-size: 25px; }
.about-3d-star.star-3 { bottom: 20%; left: 5%; animation-delay: -8s; font-size: 20px; }
.about-3d-heart.heart-1 { top: 60%; right: 8%; animation-delay: -2s; }
.about-3d-heart.heart-2 { bottom: 30%; right: 20%; animation-delay: -6s; font-size: 22px; }
.about-3d-crown { top: 15%; right: 25%; animation-delay: -10s; font-size: 35px; }

@keyframes element3DFloat {
    0%, 100% { transform: translateY(0) rotate(-10deg) scale(1); }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(-10px) rotate(-5deg) scale(0.95); }
    75% { transform: translateY(-30px) rotate(10deg) scale(1.05); }
}

/* Neon Glow Lines */
.about-neon-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.neon-line-about {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.5), rgba(155, 89, 182, 0.5), transparent);
    animation: neonLineSweep 10s ease-in-out infinite;
}

.neon-line-about.line-1 { top: 25%; width: 60%; left: -60%; animation-delay: 0s; }
.neon-line-about.line-2 { top: 55%; width: 50%; right: -50%; animation-delay: -5s; animation-direction: reverse; }
.neon-line-about.line-3 { bottom: 25%; width: 70%; left: -70%; animation-delay: -2.5s; }

@keyframes neonLineSweep {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateX(calc(100vw + 100%)); opacity: 0; }
}

/* Sparkle Rain */
.about-sparkle-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-sparkle-rain span {
    position: absolute;
    font-size: 14px;
    opacity: 0;
    animation: aboutSparkleRain 6s linear infinite;
}

.about-sparkle-rain span:nth-child(1) { left: 10%; animation-delay: 0s; }
.about-sparkle-rain span:nth-child(2) { left: 25%; animation-delay: 0.8s; }
.about-sparkle-rain span:nth-child(3) { left: 40%; animation-delay: 1.6s; }
.about-sparkle-rain span:nth-child(4) { left: 55%; animation-delay: 2.4s; }
.about-sparkle-rain span:nth-child(5) { left: 70%; animation-delay: 3.2s; }
.about-sparkle-rain span:nth-child(6) { left: 82%; animation-delay: 4s; }
.about-sparkle-rain span:nth-child(7) { left: 90%; animation-delay: 4.8s; }
.about-sparkle-rain span:nth-child(8) { left: 5%; animation-delay: 5.5s; }

@keyframes aboutSparkleRain {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Floating Music Notes */
.about-music-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.music-note-float {
    position: absolute;
    font-size: 24px;
    opacity: 0.2;
    animation: musicNoteFloat 15s ease-in-out infinite;
}

.music-note-float.note-1 { top: 20%; left: 3%; animation-delay: 0s; }
.music-note-float.note-2 { bottom: 35%; right: 5%; animation-delay: -5s; }
.music-note-float.note-3 { top: 45%; left: 95%; animation-delay: -10s; }
.music-note-float.note-4 { bottom: 15%; left: 12%; animation-delay: -2s; }

@keyframes musicNoteFloat {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* About content z-index fix */
.about.about-ultra .section-container {
    position: relative;
    z-index: 1;
}

/* Header Decoration */
.about-header-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.about-header-deco .deco-star {
    font-size: 28px;
    animation: decoStarPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.about-header-deco .deco-heart {
    font-size: 35px;
    animation: decoHeartBeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
}

@keyframes decoStarPulse {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

@keyframes decoHeartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

/* Ultra Badge */
.about-badge-ultra {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(155, 89, 182, 0.15));
    border: 2px solid rgba(255, 107, 157, 0.3);
    overflow: hidden;
}

.about-badge-ultra .badge-glow-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: badgeGlowSweep 3s ease-in-out infinite;
}

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

.about-badge-ultra .badge-text-shine {
    position: relative;
    z-index: 1;
}

.about-badge-ultra .badge-sparkle {
    margin-left: 8px;
    animation: sparkleRotate 2s linear infinite;
}

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

/* Ultra Title */
.about-title-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.about-title-ultra .title-word-about {
    display: inline-block;
    animation: wordBounceIn 0.8s ease-out backwards;
}

.about-title-ultra .title-word-about:nth-child(1) { animation-delay: 0.1s; }
.about-title-ultra .title-word-about:nth-child(2) { animation-delay: 0.2s; }
.about-title-ultra .title-word-about:nth-child(3) { animation-delay: 0.3s; }
.about-title-ultra .title-word-about:nth-child(4) { animation-delay: 0.4s; }

.about-title-ultra .highlight-star {
    background: linear-gradient(135deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-title-ultra .highlight-gold {
    background: linear-gradient(135deg, #ff6b9d, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Subtitle with Hearts */
.about-subtitle-hearts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 1.3rem;
}

.about-subtitle-hearts .heart-icon {
    font-size: 1.8em;
    animation: heartFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
}

.about-subtitle-hearts .heart-icon.delay {
    animation-delay: 0.5s;
}

.about-subtitle-hearts .subtitle-text-glow {
    color: var(--primary-lila);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes heartFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(155, 89, 182, 0.3); }
    50% { text-shadow: 0 0 35px rgba(255, 107, 157, 0.5); }
}

/* Ultra Grid */
.about-grid-ultra {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Image Card */
.about-image-card {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    padding: 15px;
}

.about-image-card .image-card-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-image-card .image-frame-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.4), rgba(155, 89, 182, 0.3), rgba(255, 215, 0, 0.3));
    border-radius: 33px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image-card:hover .image-frame-glow {
    opacity: 1;
}

.about-image-card .image-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 10;
}

.about-image-card .corner-tl { top: 25px; left: 25px; border-top: 3px solid #ffd700; border-left: 3px solid #ffd700; }
.about-image-card .corner-tr { top: 25px; right: 25px; border-top: 3px solid #ff6b9d; border-right: 3px solid #ff6b9d; }
.about-image-card .corner-bl { bottom: 25px; left: 25px; border-bottom: 3px solid #9b59b6; border-left: 3px solid #9b59b6; }
.about-image-card .corner-br { bottom: 25px; right: 25px; border-bottom: 3px solid #ffd700; border-right: 3px solid #ffd700; }

.about-image-card .image-crown-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.about-image-card .image-crown-badge > span {
    font-size: 45px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: crownBobAbout 2s ease-in-out infinite;
}

.about-image-card .crown-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
}

.about-image-card .crown-sparkles span {
    font-size: 14px;
    animation: crownSparkle 1.5s ease-in-out infinite;
}

.about-image-card .crown-sparkles span:nth-child(2) { animation-delay: 0.5s; }

@keyframes crownBobAbout {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

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

.about-image-ultra {
    width: 100%;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image-card:hover .about-image-ultra {
    transform: scale(1.02);
}

.about-image-card .image-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(155, 89, 182, 0.9));
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-card .overlay-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.about-image-card .overlay-icon {
    font-size: 1.2em;
}

/* Image Floats */
.about-image-card .image-floats {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.about-image-card .img-float {
    position: absolute;
    font-size: 20px;
    opacity: 0.6;
    animation: imgFloatAnim 4s ease-in-out infinite;
}

.about-image-card .float-1 { top: 10%; left: -15px; animation-delay: 0s; }
.about-image-card .float-2 { top: 30%; right: -20px; animation-delay: -1s; }
.about-image-card .float-3 { bottom: 30%; left: -10px; animation-delay: -2s; }
.about-image-card .float-4 { bottom: 10%; right: -15px; animation-delay: -3s; }

@keyframes imgFloatAnim {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-15px); opacity: 0.8; }
}

/* Content Card */
.about-content-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-content-card .content-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    border-radius: 30px;
    pointer-events: none;
}

.about-content-card .content-border-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(155, 89, 182, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-content-card:hover .content-border-glow {
    opacity: 1;
}

.about-content-card .content-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.about-content-card .content-icon {
    font-size: 35px;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.about-content-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-lila), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about-content-card .header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(155, 89, 182, 0.5), transparent);
    border-radius: 1px;
}

.about-content-card .content-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.85;
    position: relative;
}

.about-content-card .intro-paragraph .text-accent {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.about-content-card .highlight-quote {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(155, 89, 182, 0.08));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-content-card .quote-icon {
    font-size: 1.5em;
    animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Ultra Stats */
.about-stats-ultra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.stat-card-about {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card-about:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.2);
}

.stat-card-about .stat-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 107, 157, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card-about:hover .stat-glow {
    opacity: 1;
}

.stat-card-about .stat-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.stat-card-about .stat-emoji-about {
    font-size: 30px;
    display: block;
    position: relative;
    z-index: 1;
}

.stat-card-about .stat-ring-about {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 50%;
    animation: statRingRotate 6s linear infinite;
}

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

.stat-card-about .stat-number-about {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-card-about .stat-label-about {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Achievement Tags */
.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.achievement-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(155, 89, 182, 0.1));
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--primary-lila);
    font-weight: 500;
    border: 1px solid rgba(155, 89, 182, 0.2);
    transition: all 0.3s ease;
}

.achievement-tag:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(155, 89, 182, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.15);
}

.achievement-tag .tag-icon {
    font-size: 1.1em;
}

/* About Section Mobile Responsive */
@media (max-width: 968px) {
    .about-grid-ultra {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-ultra {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about.about-ultra {
        padding: 80px 0;
    }

    .about-title-ultra {
        font-size: 1.5rem;
    }

    .about-subtitle-hearts {
        font-size: 1.1rem;
        gap: 10px;
    }

    .about-content-card {
        padding: 25px;
    }

    .about-stats-ultra {
        gap: 10px;
    }

    .stat-card-about {
        padding: 15px 8px;
    }

    .stat-card-about .stat-number-about {
        font-size: 1.5rem;
    }

    .achievement-tags {
        justify-content: center;
    }

    .about-blob { filter: blur(60px); }
    .about-blob.blob-1 { width: 300px; height: 300px; }
    .about-blob.blob-2 { width: 250px; height: 250px; }
    .about-blob.blob-3 { width: 200px; height: 200px; }
}

/* ============================================
   Victory Section - Ultra Modern Glassmorphism
   ============================================ */
.victory {
    background: linear-gradient(135deg, #0f0515 0%, #1a0a2e 30%, #2d1b4e 60%, #1a0a2e 100%);
    color: white;
    position: relative;
    overflow: clip;
    padding: 140px 0;
}

/* Animated Mesh Gradient Background */
.victory-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: meshFloat 20s ease-in-out infinite;
}

.mesh-blob.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.mesh-blob.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.mesh-blob.blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    bottom: -150px;
    left: 30%;
    animation-delay: -10s;
}

.mesh-blob.blob-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #e91e63 0%, transparent 70%);
    top: 30%;
    left: 50%;
    animation-delay: -15s;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -20px) scale(1.05); }
}

/* Floating 3D Shapes */
.victory-3d-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape-3d {
    position: absolute;
    opacity: 0.15;
    animation: shape3DFloat 15s ease-in-out infinite;
}

.shape-cube {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b9d 100%);
    top: 15%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-sphere {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #fff 0%, #9b59b6 50%, #4a1a6b 100%);
    border-radius: 50%;
    top: 25%;
    right: 15%;
    animation-delay: -3s;
}

.shape-pyramid {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 215, 0, 0.3);
    bottom: 30%;
    left: 5%;
    animation-delay: -6s;
}

.shape-ring {
    width: 100px;
    height: 100px;
    border: 8px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    top: 60%;
    right: 8%;
    animation-delay: -9s;
}

.shape-torus {
    width: 70px;
    height: 70px;
    border: 15px solid rgba(155, 89, 182, 0.25);
    border-radius: 50%;
    bottom: 15%;
    right: 25%;
    animation-delay: -12s;
}

@keyframes shape3DFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-40px) rotate(90deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    75% { transform: translateY(-50px) rotate(270deg); }
}

.shape-cube { animation-name: shape3DFloat; }

/* Neon Grid Lines */
.victory-neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.neon-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.3), transparent);
    animation: neonPulse 4s ease-in-out infinite;
}

.neon-line.horizontal {
    width: 100%;
    height: 1px;
}

.neon-line.vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(155, 89, 182, 0.3), transparent);
}

.neon-line.h1 { top: 20%; animation-delay: 0s; }
.neon-line.h2 { top: 50%; animation-delay: 1s; }
.neon-line.h3 { top: 80%; animation-delay: 2s; }
.neon-line.v1 { left: 20%; animation-delay: 0.5s; }
.neon-line.v2 { left: 50%; animation-delay: 1.5s; }
.neon-line.v3 { left: 80%; animation-delay: 2.5s; }

@keyframes neonPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* Glowing Orbs */
.victory-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

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

.orb-pink {
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 157, 0.4);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.orb-gold {
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.35);
    top: 60%;
    right: 20%;
    animation-delay: -3s;
}

.orb-purple {
    width: 180px;
    height: 180px;
    background: rgba(155, 89, 182, 0.35);
    bottom: 20%;
    left: 10%;
    animation-delay: -6s;
}

.orb-rose {
    width: 120px;
    height: 120px;
    background: rgba(233, 30, 99, 0.3);
    top: 30%;
    right: 30%;
    animation-delay: -9s;
}

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

/* Particle Rain */
.victory-particle-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.v-particle {
    position: absolute;
    font-size: 16px;
    opacity: 0;
    animation: particleRain 8s linear infinite;
}

.v-particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.v-particle:nth-child(2) { left: 15%; animation-delay: 0.7s; }
.v-particle:nth-child(3) { left: 25%; animation-delay: 1.4s; }
.v-particle:nth-child(4) { left: 35%; animation-delay: 2.1s; }
.v-particle:nth-child(5) { left: 45%; animation-delay: 2.8s; }
.v-particle:nth-child(6) { left: 55%; animation-delay: 3.5s; }
.v-particle:nth-child(7) { left: 65%; animation-delay: 4.2s; }
.v-particle:nth-child(8) { left: 75%; animation-delay: 4.9s; }
.v-particle:nth-child(9) { left: 85%; animation-delay: 5.6s; }
.v-particle:nth-child(10) { left: 92%; animation-delay: 6.3s; }
.v-particle:nth-child(11) { left: 10%; animation-delay: 7s; }
.v-particle:nth-child(12) { left: 70%; animation-delay: 7.5s; }

@keyframes particleRain {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Floating Icons */
.victory-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: 35px;
    opacity: 0.25;
    animation: iconFloat 18s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.float-icon.icon-1 { top: 8%; left: 8%; animation-delay: 0s; }
.float-icon.icon-2 { top: 15%; right: 12%; animation-delay: -3s; font-size: 45px; }
.float-icon.icon-3 { bottom: 25%; left: 5%; animation-delay: -6s; }
.float-icon.icon-4 { top: 45%; right: 5%; animation-delay: -9s; }
.float-icon.icon-5 { bottom: 10%; right: 20%; animation-delay: -12s; }
.float-icon.icon-6 { bottom: 35%; left: 15%; animation-delay: -15s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
    25% { transform: translateY(-25px) rotate(5deg) scale(1.15); }
    50% { transform: translateY(-10px) rotate(-3deg) scale(0.95); }
    75% { transform: translateY(-35px) rotate(8deg) scale(1.1); }
}

/* Aurora Effect */
.victory-aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-wave {
    position: absolute;
    width: 200%;
    height: 300px;
    left: -50%;
    opacity: 0.15;
    animation: auroraMove 15s ease-in-out infinite;
}

.aurora-wave.wave-1 {
    top: 10%;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 157, 0.4), transparent);
    animation-delay: 0s;
}

.aurora-wave.wave-2 {
    top: 40%;
    background: linear-gradient(180deg, transparent, rgba(155, 89, 182, 0.3), transparent);
    animation-delay: -5s;
}

.aurora-wave.wave-3 {
    top: 70%;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.25), transparent);
    animation-delay: -10s;
}

@keyframes auroraMove {
    0%, 100% { transform: translateX(0) skewX(-5deg); }
    50% { transform: translateX(100px) skewX(5deg); }
}

/* Trophy Badge */
.victory-trophy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.victory-trophy-badge .trophy-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: trophyGlowPulse 2s ease-in-out infinite;
}

.victory-trophy-badge .trophy-icon-main {
    font-size: 80px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: trophyBounce 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.victory-trophy-badge .trophy-sparkles {
    position: absolute;
    display: flex;
    gap: 30px;
}

.victory-trophy-badge .trophy-sparkles span {
    font-size: 20px;
    animation: sparkleOrbit 4s linear infinite;
}

.victory-trophy-badge .trophy-sparkles span:nth-child(1) { animation-delay: 0s; }
.victory-trophy-badge .trophy-sparkles span:nth-child(2) { animation-delay: -1.33s; }
.victory-trophy-badge .trophy-sparkles span:nth-child(3) { animation-delay: -2.66s; }

@keyframes trophyGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes trophyBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes sparkleOrbit {
    0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

/* Ultra Badge */
.victory-badge-ultra {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(233, 30, 99, 0.2));
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    padding: 12px 30px !important;
}

.victory-badge-ultra::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ffd700, #ff6b9d, #9b59b6, #ffd700);
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.victory-badge-ultra .badge-bg-animate {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: badgeBgSlide 3s ease-in-out infinite;
}

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

.victory-badge-ultra .badge-text-glow {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.victory-badge-ultra .badge-stars-animated {
    display: inline-flex;
    margin-left: 10px;
}

.victory-badge-ultra .badge-stars-animated span {
    animation: starPop 1.5s ease-in-out infinite;
}

.victory-badge-ultra .badge-stars-animated span:nth-child(1) { animation-delay: 0s; }
.victory-badge-ultra .badge-stars-animated span:nth-child(2) { animation-delay: 0.2s; }
.victory-badge-ultra .badge-stars-animated span:nth-child(3) { animation-delay: 0.4s; }

@keyframes starPop {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Ultra Title */
.victory-title-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.victory-title-ultra .title-word {
    display: inline-block;
    animation: wordReveal 0.8s ease-out backwards;
}

.victory-title-ultra .title-word:nth-child(1) { animation-delay: 0.1s; }
.victory-title-ultra .title-word:nth-child(2) { animation-delay: 0.2s; }
.victory-title-ultra .title-word:nth-child(3) { animation-delay: 0.3s; }
.victory-title-ultra .title-word:nth-child(4) { animation-delay: 0.4s; }
.victory-title-ultra .title-word:nth-child(5) { animation-delay: 0.5s; }

.victory-title-ultra .highlight-word {
    background: linear-gradient(135deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.victory-title-ultra .highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b9d);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 157, 0.8); }
}

/* Ultra Subtitle */
.victory-subtitle-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
}

.victory-subtitle-ultra .subtitle-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
}

.victory-subtitle-ultra .subtitle-line.left {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6));
}

.victory-subtitle-ultra .subtitle-line.right {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.6), transparent);
}

.victory-subtitle-ultra .crown-icon {
    font-size: 1.8em;
    animation: crownFloat 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.victory-subtitle-ultra .crown-icon:last-of-type {
    animation-delay: 0.5s;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.victory .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.victory .section-container {
    position: relative;
    z-index: 1;
}

/* Ultra Content Grid */
.victory-content-ultra {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Glass Card for Text */
.victory-text-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.victory-text-card .card-glass-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 30px;
    pointer-events: none;
}

.victory-text-card .card-border-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(233, 30, 99, 0.2), rgba(155, 89, 182, 0.3));
    border-radius: 31px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.victory-text-card:hover .card-border-glow {
    opacity: 1;
}

.victory-text-card .card-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 2;
}

.victory-text-card .corner-tl {
    top: 15px;
    left: 15px;
    border-top: 2px solid rgba(255, 215, 0, 0.6);
    border-left: 2px solid rgba(255, 215, 0, 0.6);
}

.victory-text-card .corner-tr {
    top: 15px;
    right: 15px;
    border-top: 2px solid rgba(233, 30, 99, 0.6);
    border-right: 2px solid rgba(233, 30, 99, 0.6);
}

.victory-text-card .corner-bl {
    bottom: 15px;
    left: 15px;
    border-bottom: 2px solid rgba(155, 89, 182, 0.6);
    border-left: 2px solid rgba(155, 89, 182, 0.6);
}

.victory-text-card .corner-br {
    bottom: 15px;
    right: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.6);
    border-right: 2px solid rgba(255, 215, 0, 0.6);
}

.victory-text-card .text-content {
    position: relative;
    z-index: 1;
}

.victory-text-card .text-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.92;
}

.victory-text-card .intro-text .text-highlight {
    background: linear-gradient(135deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Highlight Card */
.victory-highlight-card {
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(155, 89, 182, 0.1));
    backdrop-filter: blur(15px);
    padding: 30px;
    padding-left: 90px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    margin-top: 25px;
    overflow: hidden;
}

.victory-highlight-card .highlight-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    border-radius: 20px;
}

.victory-highlight-card .highlight-icon-wrapper {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.victory-highlight-card .highlight-icon {
    font-size: 40px;
    display: block;
    animation: heartPulse 1.2s ease-in-out infinite;
}

.victory-highlight-card .icon-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(233, 30, 99, 0.4);
    border-radius: 50%;
    animation: iconPulseRing 1.5s ease-out infinite;
}

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

@keyframes iconPulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.victory-highlight-card .highlight-content {
    position: relative;
    z-index: 1;
}

.victory-highlight-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.victory-highlight-card h4 i {
    color: #ff6b9d;
}

.victory-highlight-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

.victory-highlight-card .highlight-sparkle-trail {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.victory-highlight-card .highlight-sparkle-trail span {
    font-size: 14px;
    animation: sparkleTrail 2s ease-in-out infinite;
}

.victory-highlight-card .highlight-sparkle-trail span:nth-child(2) { animation-delay: 0.3s; }
.victory-highlight-card .highlight-sparkle-trail span:nth-child(3) { animation-delay: 0.6s; }

@keyframes sparkleTrail {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-8px); }
}

/* Ultra Stats */
.victory-stats-ultra {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.victory-stats-ultra .stat-card {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.victory-stats-ultra .stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
}

.victory-stats-ultra .stat-card .stat-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 20px;
}

.victory-stats-ultra .stat-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.victory-stats-ultra .stat-emoji {
    font-size: 35px;
    display: block;
    position: relative;
    z-index: 1;
}

.victory-stats-ultra .stat-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: statRingSpin 8s linear infinite;
}

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

.victory-stats-ultra .stat-number-ultra {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.victory-stats-ultra .stat-label-ultra {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ultra Video Frame */
.victory-video-wrapper {
    position: relative;
}

.video-frame-ultra {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.video-frame-ultra .video-glass-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(233, 30, 99, 0.1));
    z-index: -1;
}

.video-frame-ultra .video-neon-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ffd700, #ff6b9d, #9b59b6, #ffd700);
    border-radius: 27px;
    z-index: -2;
    opacity: 0.6;
    animation: videoBorderGlow 4s linear infinite;
}

@keyframes videoBorderGlow {
    0%, 100% { opacity: 0.4; filter: hue-rotate(0deg); }
    50% { opacity: 0.8; filter: hue-rotate(30deg); }
}

.video-frame-ultra .video-corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 10;
}

.video-corner-accent.tl {
    top: 12px;
    left: 12px;
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
}

.video-corner-accent.tr {
    top: 12px;
    right: 12px;
    border-top: 3px solid #ff6b9d;
    border-right: 3px solid #ff6b9d;
}

.video-corner-accent.bl {
    bottom: 12px;
    left: 12px;
    border-bottom: 3px solid #9b59b6;
    border-left: 3px solid #9b59b6;
}

.video-corner-accent.br {
    bottom: 12px;
    right: 12px;
    border-bottom: 3px solid #ffd700;
    border-right: 3px solid #ffd700;
}

.video-frame-ultra .video-glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 157, 0.2), transparent 70%);
    z-index: -1;
    animation: videoGlowBreath 4s ease-in-out infinite;
}

@keyframes videoGlowBreath {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.video-frame-ultra .video-crown-top {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.video-frame-ultra .video-crown-top > span {
    font-size: 50px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: crownBob 2s ease-in-out infinite;
}

@keyframes crownBob {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

.video-frame-ultra .crown-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-frame-ultra .crown-rays span {
    position: absolute;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.6), transparent);
    transform-origin: bottom center;
}

.video-frame-ultra .crown-rays span:nth-child(1) { transform: rotate(-30deg) translateY(-20px); }
.video-frame-ultra .crown-rays span:nth-child(2) { transform: rotate(0deg) translateY(-25px); }
.video-frame-ultra .crown-rays span:nth-child(3) { transform: rotate(30deg) translateY(-20px); }

.video-frame-ultra iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
}

.video-frame-ultra .video-badge-bottom {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(233, 30, 99, 0.9));
    padding: 10px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-frame-ultra .video-badge-bottom .badge-text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1a0a1f;
}

.video-frame-ultra .video-badge-bottom .badge-star {
    font-size: 1.1em;
    animation: starSpin 3s ease-in-out infinite;
}

@keyframes starSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Video Decorations */
.video-decorations {
    position: absolute;
    inset: -30px;
    pointer-events: none;
}

.video-deco {
    position: absolute;
    font-size: 24px;
    opacity: 0.5;
    animation: decoFloat 5s ease-in-out infinite;
}

.video-deco.deco-1 { top: 10%; left: -20px; animation-delay: 0s; }
.video-deco.deco-2 { top: 30%; right: -25px; animation-delay: -1s; }
.video-deco.deco-3 { bottom: 30%; left: -15px; animation-delay: -2s; }
.video-deco.deco-4 { bottom: 10%; right: -20px; animation-delay: -3s; }

@keyframes decoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-15px) rotate(15deg); opacity: 0.7; }
}

/* Victory Section Mobile Responsive */
@media (max-width: 968px) {
    .victory-content-ultra {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .victory-stats-ultra {
        flex-wrap: wrap;
    }

    .victory-stats-ultra .stat-card {
        min-width: calc(50% - 10px);
    }

    .shape-3d { display: none; }
}

@media (max-width: 768px) {
    .victory {
        padding: 80px 0;
    }

    .victory-trophy-badge .trophy-icon-main {
        font-size: 60px;
    }

    .victory-title-ultra {
        font-size: 1.3rem;
    }

    .victory-subtitle-ultra {
        font-size: 1rem;
        gap: 10px;
    }

    .victory-subtitle-ultra .subtitle-line {
        width: 40px;
    }

    .victory-text-card {
        padding: 25px;
    }

    .victory-highlight-card {
        padding: 20px;
        padding-left: 70px;
    }

    .victory-highlight-card .highlight-icon {
        font-size: 30px;
    }

    .video-frame-ultra .video-crown-top > span {
        font-size: 35px;
    }

    .video-frame-ultra .video-crown-top {
        top: -18px;
    }

    .float-icon { font-size: 25px; }

    .mesh-blob { filter: blur(60px); }
    .mesh-blob.blob-1 { width: 300px; height: 300px; }
    .mesh-blob.blob-2 { width: 250px; height: 250px; }
    .mesh-blob.blob-3 { width: 200px; height: 200px; }
    .mesh-blob.blob-4 { width: 180px; height: 180px; }

    .victory-stats-ultra .stat-number-ultra {
        font-size: 1.6rem;
    }
}

/* ============================================
   Journey Section
   ============================================ */
.journey {
    background: #fff;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-hero);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 400px;
    position: relative;
    margin-right: 40px;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 40px;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary-lila);
    margin-bottom: 10px;
}

.timeline-content .song-title {
    font-size: 1.1rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: linear-gradient(180deg, #fef6ff 0%, #fff 100%);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(155, 89, 182, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-overlay i {
    color: white;
    font-size: 24px;
}

/* ============================================
   Videos Section - Dynamic Masonry Style
   ============================================ */
.videos {
    background: linear-gradient(180deg, #fff 0%, #fef6ff 50%, #fff 100%);
    position: relative;
    overflow: clip;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.videos-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Video Card New Styles */
.video-card-new {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.video-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila), var(--primary-rose));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.video-card-new:hover::before {
    opacity: 1;
}

.video-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(155, 89, 182, 0.25);
}

/* Large Card */
.video-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-card-large .video-thumbnail {
    aspect-ratio: auto;
    height: 100%;
    min-height: 300px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
}

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

/* Play Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s;
}

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

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.5);
    transition: all 0.4s;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(233, 30, 99, 0.5);
    }
    50% {
        box-shadow: 0 10px 60px rgba(233, 30, 99, 0.8), 0 0 0 15px rgba(233, 30, 99, 0.2);
    }
}

.video-card-new:hover .play-button {
    transform: scale(1.15);
}

.play-button i {
    margin-left: 5px;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Video Glare Effect */
.video-glare {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s;
}

.video-card-new:hover .video-glare {
    left: 150%;
}

/* Video Card Content */
.video-card-content {
    padding: 20px;
    position: relative;
}

.video-card-large .video-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px;
}

.video-card-large .video-card-content h4,
.video-card-large .video-card-content p {
    color: white;
}

.video-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-lila), var(--primary-pink));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.video-badge-pink {
    background: linear-gradient(135deg, var(--primary-pink), #ff8a80);
}

.video-badge-rose {
    background: linear-gradient(135deg, var(--primary-rose), #ffab91);
}

.video-badge-lila {
    background: linear-gradient(135deg, #7c4dff, var(--primary-lila));
}

.video-badge-red {
    background: linear-gradient(135deg, var(--primary-red), #ff5252);
}

.video-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease-out;
}

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

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    z-index: 2;
}

.video-modal-close:hover {
    transform: rotate(90deg);
    color: var(--primary-pink);
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Videos */
@media (max-width: 1024px) {
    .videos-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .videos-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .video-card-large .video-thumbnail {
        min-height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* ============================================
   Comments Section - Ultra Modern
   ============================================ */
.comments-section {
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1540 50%, #1a0a1f 100%);
    color: white;
    position: relative;
    overflow: clip;
    padding: 120px 0;
}

/* Comments Background Effects */
.comments-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Floating Hearts */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-heart {
    position: absolute;
    font-size: 30px;
    opacity: 0.15;
    animation: floatHeart 15s ease-in-out infinite;
}

.float-heart:nth-child(1) { left: 5%; animation-delay: 0s; top: 10%; }
.float-heart:nth-child(2) { left: 15%; animation-delay: -2s; top: 30%; }
.float-heart:nth-child(3) { left: 25%; animation-delay: -4s; top: 50%; }
.float-heart:nth-child(4) { left: 75%; animation-delay: -6s; top: 20%; }
.float-heart:nth-child(5) { left: 85%; animation-delay: -8s; top: 40%; }
.float-heart:nth-child(6) { left: 95%; animation-delay: -10s; top: 60%; }
.float-heart:nth-child(7) { left: 50%; animation-delay: -12s; top: 80%; }
.float-heart:nth-child(8) { left: 35%; animation-delay: -14s; top: 70%; }

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) rotate(15deg) scale(1.2);
    }
    50% {
        transform: translateY(-20px) rotate(-10deg) scale(0.9);
    }
    75% {
        transform: translateY(-60px) rotate(20deg) scale(1.1);
    }
}

/* Comments Orbs */
.comments-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.comment-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent);
    top: -100px;
    left: -100px;
}

.comment-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.4), transparent);
    bottom: -50px;
    right: -50px;
    animation-delay: -10s;
}

.comment-orb.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

/* Comments Sparkles */
.comments-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.comments-sparkles span {
    font-size: 20px;
    opacity: 0;
    animation: commentsSparkle 4s ease-in-out infinite;
}

.comments-sparkles span:nth-child(1) { animation-delay: 0s; }
.comments-sparkles span:nth-child(2) { animation-delay: 0.5s; }
.comments-sparkles span:nth-child(3) { animation-delay: 1s; }
.comments-sparkles span:nth-child(4) { animation-delay: 1.5s; }
.comments-sparkles span:nth-child(5) { animation-delay: 2s; }
.comments-sparkles span:nth-child(6) { animation-delay: 2.5s; }
.comments-sparkles span:nth-child(7) { animation-delay: 3s; }
.comments-sparkles span:nth-child(8) { animation-delay: 3.5s; }

@keyframes commentsSparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.3) rotate(180deg); }
}

/* Comments Glow Lines */
.comments-glow-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comments-glow-line {
    position: absolute;
    height: 2px;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.5), rgba(255, 215, 0, 0.5), transparent);
    animation: commentsGlowLine 10s ease-in-out infinite;
}

.comments-glow-line:nth-child(1) {
    top: 30%;
    left: -50%;
}

.comments-glow-line:nth-child(2) {
    bottom: 40%;
    right: -50%;
    animation-delay: -5s;
    animation-direction: reverse;
}

@keyframes commentsGlowLine {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateX(200%);
        opacity: 1;
    }
}

/* Header Decoration */
.comments-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.comments-header-decoration .deco-heart {
    font-size: 35px;
    animation: decoHeartPulse 2s ease-in-out infinite;
}

.comments-header-decoration .deco-crown {
    font-size: 50px;
    animation: decoCrownBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

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

@keyframes decoCrownBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Modern Badge */
.comments-badge-modern {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(155, 89, 182, 0.3));
    border: 2px solid rgba(255, 107, 157, 0.5);
    overflow: hidden;
}

.comments-badge-modern .badge-pulse {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    animation: badgePulseAnim 2s ease-in-out infinite;
}

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

.comments-badge-modern .badge-hearts {
    margin-left: 10px;
    animation: heartsFloat 2s ease-in-out infinite;
}

@keyframes heartsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Modern Title */
.comments-title-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.comments-title-modern .title-emoji {
    font-size: 1.3em;
    animation: titleEmojiFloat 3s ease-in-out infinite;
}

.comments-title-modern .title-emoji:last-child {
    animation-delay: -1.5s;
}

@keyframes titleEmojiFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Modern Subtitle */
.comments-subtitle-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.comments-subtitle-modern .subtitle-star {
    animation: subtitleStarSpin 4s linear infinite;
}

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

.comments-section .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.comments-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.comments-section .section-container {
    position: relative;
    z-index: 1;
}

/* Modern Form Wrapper */
.comment-form-modern {
    max-width: 750px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(25px);
    padding: 50px;
    border-radius: 35px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.comment-form-modern .form-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1), transparent 70%);
    animation: formGlowRotate 15s linear infinite;
    pointer-events: none;
}

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

/* Form Corners */
.comment-form-modern .form-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border-color: rgba(255, 215, 0, 0.6);
    border-style: solid;
    border-width: 0;
}

.form-corner.corner-tl { top: 15px; left: 15px; border-top-width: 3px; border-left-width: 3px; }
.form-corner.corner-tr { top: 15px; right: 15px; border-top-width: 3px; border-right-width: 3px; }
.form-corner.corner-bl { bottom: 15px; left: 15px; border-bottom-width: 3px; border-left-width: 3px; }
.form-corner.corner-br { bottom: 15px; right: 15px; border-bottom-width: 3px; border-right-width: 3px; }

/* Modern Emotion Selector */
.emotion-selector-modern {
    text-align: center;
    margin-bottom: 35px;
}

.emotion-selector-modern .emotion-label {
    display: block;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.emotion-selector-modern .emotion-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.emotion-btn-modern {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emotion-btn-modern .emotion-icon {
    font-size: 32px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.emotion-btn-modern .emotion-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.emotion-btn-modern:hover {
    transform: scale(1.15) translateY(-5px);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.emotion-btn-modern:hover .emotion-icon {
    transform: scale(1.1);
}

.emotion-btn-modern:hover .emotion-glow {
    opacity: 1;
}

.emotion-btn-modern.active {
    transform: scale(1.2);
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Modern Form Groups */
.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group-modern label i {
    color: var(--primary-pink);
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 18px 50px 18px 22px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s ease;
}

.input-wrapper .input-glow,
.textarea-wrapper .textarea-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila), var(--gold));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.input-wrapper .input-icon,
.textarea-wrapper .textarea-sparkle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.textarea-wrapper .textarea-sparkle {
    top: 20px;
    transform: none;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3);
}

.form-group-modern input:focus ~ .input-glow,
.form-group-modern textarea:focus ~ .textarea-glow {
    opacity: 0.3;
}

.form-group-modern input:focus ~ .input-icon,
.form-group-modern textarea:focus ~ .textarea-sparkle {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.form-group-modern textarea:focus ~ .textarea-sparkle {
    transform: scale(1.2);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

/* Modern Submit Button */
.submit-btn-modern {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.submit-btn-modern .btn-bg-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--primary-rose));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn-modern .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-modern .btn-sparkles {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn-modern .btn-sparkles span {
    animation: btnSparkle 1s ease-in-out infinite;
}

.submit-btn-modern .btn-sparkles span:nth-child(2) { animation-delay: 0.3s; }
.submit-btn-modern .btn-sparkles span:nth-child(3) { animation-delay: 0.6s; }

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

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.submit-btn-modern:hover .btn-bg-effect {
    opacity: 1;
}

.submit-btn-modern:hover .btn-sparkles {
    opacity: 1;
}

.submit-btn-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Modern Comments List */
.comments-list-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.comments-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.comments-loading .loading-heart {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
    animation: loadingHeartBeat 1s ease-in-out infinite;
}

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

.comments-loading .loading-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.comment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.5s ease-out both;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-lila), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.3);
}

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

.comment-card:nth-child(1) { animation-delay: 0.1s; }
.comment-card:nth-child(2) { animation-delay: 0.2s; }
.comment-card:nth-child(3) { animation-delay: 0.3s; }

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
}

.comment-emotion {
    font-size: 36px;
    filter: drop-shadow(0 0 10px currentColor);
}

.comment-text {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 1rem;
}

.comment-date {
    margin-top: 18px;
    font-size: 0.85rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   Footer - Ultra Modern
   ============================================ */
.footer-modern {
    background: linear-gradient(180deg, #0d0510 0%, #1a0a1f 50%, #0d0510 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: clip;
}

/* Footer Background Effects */
.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Gradient Mesh */
.footer-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 30% at 10% 90%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 25% at 90% 80%, rgba(155, 89, 182, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 30% 20% at 50% 100%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

/* Floating Elements */
.footer-floating {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-float-item {
    position: absolute;
    font-size: 25px;
    opacity: 0.1;
    animation: footerFloat 20s ease-in-out infinite;
}

.footer-float-item:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.footer-float-item:nth-child(2) { left: 20%; top: 60%; animation-delay: -3s; }
.footer-float-item:nth-child(3) { left: 40%; top: 30%; animation-delay: -6s; }
.footer-float-item:nth-child(4) { left: 60%; top: 70%; animation-delay: -9s; }
.footer-float-item:nth-child(5) { left: 80%; top: 40%; animation-delay: -12s; }
.footer-float-item:nth-child(6) { left: 95%; top: 80%; animation-delay: -15s; }

@keyframes footerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* Wave Effect */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 107, 157, 0.1);
}

/* Sparkle Grid */
.footer-sparkle-grid {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.footer-sparkle-grid span {
    font-size: 16px;
    opacity: 0;
    animation: footerSparkle 5s ease-in-out infinite;
}

.footer-sparkle-grid span:nth-child(1) { animation-delay: 0s; }
.footer-sparkle-grid span:nth-child(2) { animation-delay: 1s; }
.footer-sparkle-grid span:nth-child(3) { animation-delay: 2s; }
.footer-sparkle-grid span:nth-child(4) { animation-delay: 3s; }
.footer-sparkle-grid span:nth-child(5) { animation-delay: 4s; }

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

.footer-modern .section-container {
    position: relative;
    z-index: 1;
    padding: 100px 0 40px;
}

/* Modern Footer Content */
.footer-content-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Section */
.footer-brand-modern {
    position: relative;
}

.footer-brand-modern .brand-logo {
    margin-bottom: 25px;
    text-align: left;
}

.footer-brand-modern .logo-crown {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: logoCrownFloat 3s ease-in-out infinite;
}

@keyframes logoCrownFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.footer-brand-modern h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ff6b9d, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-modern .logo-star {
    font-size: 0.8em;
    animation: logoStarPulse 2s ease-in-out infinite;
}

.footer-brand-modern .logo-star:last-child {
    animation-delay: -1s;
}

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

.footer-brand-modern .logo-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(155, 89, 182, 0.3));
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-brand-modern p {
    opacity: 0.8;
    line-height: 1.9;
    margin-bottom: 20px;
}

.footer-brand-modern .desc-icon {
    margin-right: 8px;
}

.footer-brand-modern .brand-flags {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.footer-brand-modern .brand-flags span:first-child,
.footer-brand-modern .brand-flags span:last-child {
    font-size: 1.5em;
    animation: brandFlagWave 2s ease-in-out infinite;
}

.footer-brand-modern .brand-flags span:last-child {
    animation-delay: -1s;
}

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

.footer-brand-modern .flag-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Links Section */
.footer-links-modern h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-modern .link-icon {
    font-size: 1.2em;
}

.footer-links-modern ul {
    list-style: none;
}

.footer-links-modern li {
    margin-bottom: 5px;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-links-modern a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 157, 0.2), transparent);
    transition: width 0.3s ease;
}

.footer-links-modern a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.footer-links-modern a:hover::before {
    width: 100%;
}

.footer-links-modern .link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-pink);
}

.footer-links-modern a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.footer-links-modern .link-hover-icon {
    margin-left: auto;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.footer-links-modern a:hover .link-hover-icon {
    opacity: 1;
    transform: scale(1);
}

/* Social Section */
.footer-social-modern h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons-modern .social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons-modern .social-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons-modern .social-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.social-icons-modern .social-link i {
    position: relative;
    z-index: 1;
}

.social-icons-modern .youtube .social-glow { background: #ff0000; }
.social-icons-modern .instagram .social-glow { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icons-modern .facebook .social-glow { background: #1877f2; }
.social-icons-modern .tiktok .social-glow { background: linear-gradient(45deg, #00f2ea, #ff0050); }

.social-icons-modern .social-link:hover {
    transform: translateY(-8px) scale(1.1);
}

.social-icons-modern .social-link:hover .social-bg {
    background: rgba(255, 255, 255, 0.2);
}

.social-icons-modern .social-link:hover .social-glow {
    opacity: 0.5;
}

.social-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.social-cta .cta-emoji {
    animation: ctaEmojiBounce 2s ease-in-out infinite;
}

@keyframes ctaEmojiBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Footer Bottom */
.footer-bottom-modern {
    padding-top: 40px;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-divider .divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.5), transparent);
}

.footer-divider .divider-star {
    font-size: 20px;
    animation: dividerStarPulse 3s ease-in-out infinite;
}

.footer-divider .divider-crown {
    font-size: 30px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: dividerCrownFloat 3s ease-in-out infinite;
}

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

@keyframes dividerCrownFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer-info {
    text-align: center;
    margin-bottom: 25px;
}

.footer-info .copyright {
    opacity: 0.6;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-info .copyright .copy-icon {
    margin-right: 5px;
}

.footer-info .credit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info .beating-heart {
    animation: beatingHeart 1s ease-in-out infinite;
    display: inline-block;
}

@keyframes beatingHeart {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.3); }
}

.footer-info .credit-name {
    color: var(--primary-pink);
}

.footer-info .credit-divider {
    opacity: 0.4;
}

.footer-info .credit-link {
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.footer-info .credit-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    border-radius: 50px;
    max-width: 400px;
    margin: 0 auto;
}

.footer-tagline .tagline-icon {
    font-size: 1.3em;
    animation: taglineIconBounce 2s ease-in-out infinite;
}

.footer-tagline .tagline-icon:last-child {
    animation-delay: -1s;
}

@keyframes taglineIconBounce {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.footer-tagline .tagline-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Mobile Responsive */
@media (max-width: 968px) {
    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand-modern .brand-logo {
        text-align: center;
    }

    .footer-brand-modern h3 {
        justify-content: center;
    }

    .footer-brand-modern .brand-flags {
        justify-content: center;
    }

    .footer-links-modern h4,
    .footer-social-modern h4 {
        justify-content: center;
    }

    .social-icons-modern {
        justify-content: center;
    }

    .social-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .comment-form-modern {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .emotion-btn-modern {
        width: 55px;
        height: 55px;
    }

    .emotion-btn-modern .emotion-icon {
        font-size: 26px;
    }

    .comments-header-decoration .deco-crown {
        font-size: 40px;
    }

    .footer-info .credit {
        flex-direction: column;
        gap: 5px;
    }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    color: var(--primary-pink);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .victory-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    /* Hide desktop nav-links on mobile */
    .nav-links {
        display: none !important;
    }

    /* Mobile Toggle Button - Large touch target for kids */
    .mobile-toggle {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 54px;
        height: 54px;
        min-width: 54px;
        min-height: 54px;
        background: rgba(255, 107, 157, 0.35);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        color: white;
    }

    .mobile-toggle svg,
    .mobile-toggle i {
        pointer-events: none;
    }

    .navbar.scrolled .mobile-toggle {
        background: rgba(155, 89, 182, 0.25);
        border-color: rgba(155, 89, 182, 0.5);
        color: #333;
    }

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

    .hero-image {
        width: 200px;
        height: 200px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .journey-timeline::before {
        left: 30px;
    }

    .timeline-icon {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .comment-form-wrapper {
        padding: 25px;
    }

    .emotion-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .comments-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Princess Loading Animation
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: #1a1a2e;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-out, visibility 0.3s;
    overflow: hidden;
}

.page-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,157,0.3) 0%, rgba(155,89,182,0.2) 50%, rgba(102,126,234,0.3) 100%);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.loader-princess {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.loader-crown {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: crownPulse 1.5s ease-in-out infinite;
}

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

.loader-sparkles {
    position: absolute;
    inset: 0;
}

.loader-sparkles .sparkle {
    position: absolute;
    font-size: 16px;
    opacity: 0.7;
}

.loader-sparkles .sparkle:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.loader-sparkles .sparkle:nth-child(2) { top: 25%; right: 10%; }
.loader-sparkles .sparkle:nth-child(3) { bottom: 25%; right: 10%; }
.loader-sparkles .sparkle:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.loader-sparkles .sparkle:nth-child(5) { bottom: 25%; left: 10%; }
.loader-sparkles .sparkle:nth-child(6) { top: 25%; left: 10%; }

.loader-stars {
    position: absolute;
    inset: -20px;
}

.loader-stars .star {
    position: absolute;
    font-size: 20px;
    opacity: 0.6;
}

.loader-stars .star:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.loader-stars .star:nth-child(2) { bottom: 15%; right: 5%; }
.loader-stars .star:nth-child(3) { bottom: 15%; left: 5%; }

.loader-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.loader-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
}

.loader-subtitle {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.loader-progress {
    width: 180px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin: 25px auto 0;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd700, #ff6b9d);
    border-radius: 10px;
    animation: progressFill 1.5s ease-out forwards;
}

@keyframes progressFill {
    to { width: 100%; }
}

/* ============================================
   Princess Hero Styles
   ============================================ */

/* Floating Background Crowns */
.floating-crown {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: floatingCrownBg 20s linear infinite;
}

.floating-crown:nth-child(6) { left: 10%; animation-delay: 0s; }
.floating-crown:nth-child(7) { left: 50%; animation-delay: 7s; }
.floating-crown:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes floatingCrownBg {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Floating Crowns - Dark Accent */
.hero-crowns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.hero-crown {
    position: absolute;
    font-size: 45px;
    filter: drop-shadow(0 5px 25px rgba(255, 215, 0, 0.35)) drop-shadow(0 0 40px rgba(45, 27, 78, 0.5));
    animation: heroCrownFloat 8s ease-in-out infinite;
    opacity: 0.85;
}

.crown-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.crown-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.crown-3 {
    bottom: 25%;
    left: 8%;
    font-size: 32px;
    animation-delay: 4s;
    opacity: 0.7;
}

.crown-4 {
    bottom: 30%;
    right: 12%;
    font-size: 38px;
    animation-delay: 6s;
    opacity: 0.75;
}

@keyframes heroCrownFloat {
    0%, 100% {
        transform: translateY(0) rotate(-12deg) scale(1);
        filter: drop-shadow(0 5px 25px rgba(255, 215, 0, 0.35)) drop-shadow(0 0 40px rgba(45, 27, 78, 0.5));
    }
    25% {
        transform: translateY(-15px) rotate(12deg) scale(1.08);
        filter: drop-shadow(0 10px 35px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 50px rgba(92, 26, 61, 0.4));
    }
    50% {
        transform: translateY(-8px) rotate(-8deg) scale(1.04);
        filter: drop-shadow(0 8px 30px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 45px rgba(74, 25, 66, 0.45));
    }
    75% {
        transform: translateY(-20px) rotate(8deg) scale(1.1);
        filter: drop-shadow(0 12px 40px rgba(255, 215, 0, 0.55)) drop-shadow(0 0 55px rgba(61, 26, 61, 0.35));
    }
}

/* Sparkle Rain - Dark Accent */
.sparkle-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 4;
}

.sparkle-rain span {
    position: absolute;
    font-size: 16px;
    animation: sparkleRain 10s linear infinite;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.sparkle-rain span:nth-child(1) { left: 5%; animation-delay: 0s; }
.sparkle-rain span:nth-child(2) { left: 15%; animation-delay: 0.7s; }
.sparkle-rain span:nth-child(3) { left: 25%; animation-delay: 1.4s; }
.sparkle-rain span:nth-child(4) { left: 35%; animation-delay: 2.1s; }
.sparkle-rain span:nth-child(5) { left: 45%; animation-delay: 2.8s; }
.sparkle-rain span:nth-child(6) { left: 55%; animation-delay: 3.5s; }
.sparkle-rain span:nth-child(7) { left: 65%; animation-delay: 4.2s; }
.sparkle-rain span:nth-child(8) { left: 75%; animation-delay: 4.9s; }
.sparkle-rain span:nth-child(9) { left: 85%; animation-delay: 5.6s; }
.sparkle-rain span:nth-child(10) { left: 95%; animation-delay: 6.3s; }
.sparkle-rain span:nth-child(11) { left: 10%; animation-delay: 7s; font-size: 20px; }
.sparkle-rain span:nth-child(12) { left: 30%; animation-delay: 7.7s; font-size: 20px; }
.sparkle-rain span:nth-child(13) { left: 50%; animation-delay: 8.4s; font-size: 20px; }
.sparkle-rain span:nth-child(14) { left: 70%; animation-delay: 9.1s; font-size: 20px; }
.sparkle-rain span:nth-child(15) { left: 90%; animation-delay: 9.8s; font-size: 20px; }

@keyframes sparkleRain {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(100vh) rotate(540deg);
        opacity: 0;
    }
}

/* Princess Badge */
.princess-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 157, 0.3), rgba(155, 89, 182, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.princess-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.badge-crown {
    font-size: 24px;
    animation: badgeCrownBounce 2s ease-in-out infinite;
}

@keyframes badgeCrownBounce {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.badge-sparkle {
    font-size: 20px;
    animation: badgeSparkle 1.5s ease-in-out infinite;
}

@keyframes badgeSparkle {
    0%, 100% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Hero Image Wrapper with Crown - Dark Accent Modern */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.image-crown {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 85px;
    z-index: 10;
    animation: imageCrownFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 35px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 50px rgba(45, 27, 78, 0.5));
}

@keyframes imageCrownFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(-6deg);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(6deg);
    }
}

.hero-image-wrapper .hero-image {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 6px solid rgba(255, 215, 0, 0.5);
    box-shadow:
        0 0 0 10px rgba(74, 25, 66, 0.5),
        0 0 0 20px rgba(45, 27, 78, 0.4),
        0 0 0 32px rgba(92, 26, 61, 0.25),
        0 40px 100px rgba(0,0,0,0.6),
        0 0 80px rgba(155, 89, 182, 0.2);
    animation: heroImagePulse 5s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

@keyframes heroImagePulse {
    0%, 100% {
        box-shadow:
            0 0 0 10px rgba(74, 25, 66, 0.5),
            0 0 0 20px rgba(45, 27, 78, 0.4),
            0 0 0 32px rgba(92, 26, 61, 0.25),
            0 40px 100px rgba(0,0,0,0.6),
            0 0 80px rgba(155, 89, 182, 0.2);
    }
    50% {
        box-shadow:
            0 0 0 12px rgba(92, 26, 61, 0.6),
            0 0 0 26px rgba(74, 25, 66, 0.5),
            0 0 0 42px rgba(45, 27, 78, 0.35),
            0 50px 120px rgba(0,0,0,0.7),
            0 0 120px rgba(233, 30, 99, 0.25);
    }
}

.image-glow {
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.2), rgba(74, 25, 66, 0.3) 40%, rgba(45, 27, 78, 0.2) 60%, transparent 75%);
    animation: imageGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes imageGlow {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.25); opacity: 0.8; }
}

.image-sparkles {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

/* Mobile responsive for large image */
@media (max-width: 768px) {
    .hero-image-wrapper .hero-image {
        width: 350px;
        height: 350px;
    }

    .image-crown {
        font-size: 60px;
        top: -40px;
    }

    .ring-1 { inset: -18px; }
    .ring-2 { inset: -36px; }
    .ring-3 { inset: -55px; }

    .ring-1::before, .ring-2::before, .ring-3::before { font-size: 12px; }
    .ring-1::after, .ring-2::after, .ring-3::after { font-size: 10px; }
}

@media (max-width: 480px) {
    .hero-image-wrapper .hero-image {
        width: 280px;
        height: 280px;
    }

    .image-crown {
        font-size: 50px;
        top: -35px;
    }

    .ring-1 { inset: -12px; }
    .ring-2 { inset: -25px; }
    .ring-3 { inset: -40px; }

    .ring-1::before, .ring-2::before, .ring-3::before { font-size: 10px; }
    .ring-1::after, .ring-2::after, .ring-3::after { font-size: 8px; }
}

.image-sparkles span {
    position: absolute;
    font-size: 24px;
    animation: imageSparkle 2s ease-in-out infinite;
}

.image-sparkles span:nth-child(1) { top: 10%; left: 0; animation-delay: 0s; }
.image-sparkles span:nth-child(2) { top: 10%; right: 0; animation-delay: 0.5s; }
.image-sparkles span:nth-child(3) { bottom: 10%; left: 0; animation-delay: 1s; }
.image-sparkles span:nth-child(4) { bottom: 10%; right: 0; animation-delay: 1.5s; }

@keyframes imageSparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

/* Princess Title */
.princess-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.title-crown {
    font-size: 50px;
    animation: titleCrownSpin 4s ease-in-out infinite;
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.6));
}

.title-crown:first-child {
    animation-direction: normal;
}

.title-crown:last-child {
    animation-direction: reverse;
}

@keyframes titleCrownSpin {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    25% { transform: rotate(15deg) scale(1.1); }
    50% { transform: rotate(-10deg) scale(1.05); }
    75% { transform: rotate(10deg) scale(1.15); }
}

/* Princess Subtitle */
.princess-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.subtitle-star {
    animation: subtitleStarPulse 2s ease-in-out infinite;
}

.subtitle-star:last-child {
    animation-delay: 1s;
}

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

/* Princess Buttons */
.btn-princess {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, white, #fff5f8);
}

.btn-princess::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: btnShine 2s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-sparkle {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 14px;
    animation: btnSparkle 1.5s ease-in-out infinite;
}

@keyframes btnSparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.btn-princess-outline {
    border-color: rgba(255, 215, 0, 0.6);
}

.btn-princess-outline:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 1);
}

/* Princess Scroll Indicator */
.princess-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-crown {
    font-size: 30px;
    animation: scrollCrownBounce 2s ease-in-out infinite;
}

@keyframes scrollCrownBounce {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ============================================
   Success/Error Messages
   ============================================ */
.message {
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeInUp 0.3s ease-out;
}

.message-success {
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.message-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ============================================
   Extra WAU Effects & Animations
   ============================================ */

/* Glowing text effect */
.glow-text {
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--primary-pink), 0 0 30px var(--primary-pink);
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-lila), 0 0 30px var(--primary-lila), 0 0 40px var(--primary-lila);
    }
}

/* Sparkle effect on hero badge */
.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.3) 50%,
        transparent 70%
    );
    animation: sparkle 3s infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-badge {
    position: relative;
    overflow: hidden;
}

/* Floating music notes */
.music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.music-note {
    position: absolute;
    font-size: 24px;
    animation: musicFloat 8s infinite;
    opacity: 0.3;
}

@keyframes musicFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* 3D Card tilt effect on hover */
.video-card,
.stat-item,
.timeline-content {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.video-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
}

/* Ribbon effect for winner badge */
.winner-ribbon {
    position: relative;
}

.winner-ribbon::after {
    content: '1st';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: ribbonPulse 2s infinite;
}

@keyframes ribbonPulse {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

/* Confetti animation for celebration */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall 5s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Gradient border animation */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 20px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-lila), var(--primary-rose), var(--primary-pink));
    background-size: 400% 400%;
    animation: gradientMove 4s ease infinite;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typing cursor effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}

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

/* Floating crown on hero */
.hero-crown {
    position: absolute;
    top: 20%;
    font-size: 60px;
    animation: floatCrown 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.5));
}

@keyframes floatCrown {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Star burst effect */
.starburst {
    position: relative;
}

.starburst::before,
.starburst::after {
    content: '✨';
    position: absolute;
    animation: starBurst 2s infinite;
}

.starburst::before {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.starburst::after {
    top: -20px;
    right: -20px;
    animation-delay: 1s;
}

@keyframes starBurst {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 1; }
}

/* Smooth image zoom on section */
.about-image-wrapper:hover .about-image {
    animation: imageZoom 0.5s forwards;
}

@keyframes imageZoom {
    to {
        transform: scale(1.05);
        box-shadow: 0 30px 80px rgba(155, 89, 182, 0.4);
    }
}

/* Wave animation for section dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

/* Neon glow button effect */
.btn-primary:hover {
    box-shadow:
        0 0 5px var(--primary-pink),
        0 0 10px var(--primary-pink),
        0 0 20px var(--primary-pink),
        0 0 40px var(--primary-pink);
}

/* Morphing blob background */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: morph 15s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Shimmer effect on images */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: 0.5s;
}

.gallery-item:hover::after {
    left: 100%;
}

/* Elastic scale on video cards */
.video-card:active {
    animation: elasticScale 0.5s;
}

@keyframes elasticScale {
    0% { transform: scale(1); }
    30% { transform: scale(0.95); }
    50% { transform: scale(1.02); }
    70% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

/* Rainbow underline for special text */
.rainbow-underline {
    position: relative;
    display: inline-block;
}

.rainbow-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-red),
        var(--primary-pink),
        var(--primary-rose),
        var(--primary-lila)
    );
    background-size: 200% 200%;
    animation: rainbowMove 2s linear infinite;
    border-radius: 2px;
}

@keyframes rainbowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Flip card effect for stats */
.stat-item {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.stat-item:hover {
    transform: rotateY(10deg) translateY(-10px);
}

/* Smooth entrance for timeline items */
.timeline-item {
    opacity: 0;
    animation: slideInTimeline 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(even) {
    animation-name: slideInTimelineRight;
}

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

/* Pulsating dot for live/new indicators */
.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Smooth color transition on scroll for navbar */
.navbar {
    transition: background 0.5s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.emotion-btn:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--primary-rose);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-particles,
    .bg-animated,
    .scroll-indicator,
    .page-loader,
    .comment-form-wrapper,
    .footer-social,
    .lightbox {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
        background: #fff !important;
        color: #000;
    }

    .hero-title {
        color: #000;
        -webkit-text-fill-color: #000;
    }
}

/* ============================================
   Music Control Button - Princess Style
   ============================================ */
.music-control {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9990;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 5px 20px rgba(233, 30, 99, 0.4),
        0 0 30px rgba(155, 89, 182, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.6);
    overflow: hidden;
}

.music-control::before {
    content: '👑';
    position: absolute;
    top: -8px;
    font-size: 16px;
    animation: musicCrownFloat 2s ease-in-out infinite;
}

@keyframes musicCrownFloat {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow:
        0 8px 30px rgba(233, 30, 99, 0.5),
        0 0 40px rgba(255, 215, 0, 0.4);
}

.music-control:active {
    transform: scale(0.95);
}

.music-icon {
    color: white;
    font-size: 22px;
    z-index: 2;
    transition: all 0.3s ease;
}

.music-control.muted .music-icon i::before {
    content: '\f6a9'; /* fa-volume-mute */
}

.music-control.playing .music-icon {
    animation: musicPulse 1s ease-in-out infinite;
}

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

/* Sound Waves Animation */
.music-waves {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-control.playing .music-waves {
    opacity: 1;
}

.music-control.playing .music-icon {
    opacity: 0;
}

.music-waves span {
    display: block;
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: musicWave 1s ease-in-out infinite;
}

.music-waves span:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.music-waves span:nth-child(2) {
    height: 18px;
    animation-delay: 0.1s;
}

.music-waves span:nth-child(3) {
    height: 14px;
    animation-delay: 0.2s;
}

.music-waves span:nth-child(4) {
    height: 22px;
    animation-delay: 0.3s;
}

@keyframes musicWave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Music Control Tooltip */
.music-control::after {
    content: 'Klikni za glazbu';
    position: absolute;
    left: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.music-control:hover::after {
    opacity: 1;
}

.music-control.playing::after {
    content: 'Klikni za pauzu';
}

/* Glowing ring effect when playing */
.music-control.playing::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.6);
    animation: musicGlow 1.5s ease-in-out infinite;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .music-control {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .music-control::after {
        display: none;
    }

    .music-icon {
        font-size: 18px;
    }
}

/* ============================================
   ULTRA MODERN HERO STYLES
   ============================================ */

/* Modern Grid Background - Dark Accent */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(155, 89, 182, 0.08) 30%,
        rgba(255, 215, 0, 0.06) 50%,
        rgba(155, 89, 182, 0.08) 70%,
        transparent 100%
    );
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
    animation: gridPulseH 5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.05);
}

.grid-line.horizontal:nth-child(1) { top: 25%; animation-delay: 0s; }
.grid-line.horizontal:nth-child(2) { top: 50%; animation-delay: 0.7s; }
.grid-line.horizontal:nth-child(3) { top: 75%; animation-delay: 1.4s; }

.grid-line.vertical {
    height: 100%;
    width: 1px;
    top: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(233, 30, 99, 0.06) 30%,
        rgba(92, 26, 61, 0.08) 50%,
        rgba(233, 30, 99, 0.06) 70%,
        transparent 100%
    );
    animation: gridPulseV 5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.04);
}

.grid-line.vertical:nth-child(4) { left: 25%; animation-delay: 0.35s; }
.grid-line.vertical:nth-child(5) { left: 50%; animation-delay: 1.05s; }
.grid-line.vertical:nth-child(6) { left: 75%; animation-delay: 1.75s; }

@keyframes gridPulseH {
    0%, 100% { opacity: 0.2; transform: scaleX(0.85); }
    50% { opacity: 0.8; transform: scaleX(1); }
}

@keyframes gridPulseV {
    0%, 100% { opacity: 0.2; transform: scaleY(0.85); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* Animated Gradient Orbs - Dark Accent */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 26, 61, 0.6) 0%, rgba(45, 27, 78, 0.4) 40%, transparent 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.35) 0%, rgba(74, 25, 66, 0.3) 50%, transparent 70%);
    top: 15%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.25) 0%, rgba(61, 26, 61, 0.4) 50%, transparent 70%);
    bottom: 5%;
    left: 5%;
    animation-delay: 10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(45, 27, 78, 0.3) 50%, transparent 70%);
    bottom: -10%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.05);
    }
}

/* Geometric Shapes - Dark Accent */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.25;
}

.shape-circle {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(233, 30, 99, 0.4);
    border-radius: 50%;
    top: 15%;
    left: 5%;
    animation: shapeRotate 20s linear infinite;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.2), inset 0 0 30px rgba(92, 26, 61, 0.3);
}

.shape-ring {
    width: 180px;
    height: 180px;
    border: 3px solid rgba(155, 89, 182, 0.35);
    border-radius: 50%;
    top: 60%;
    right: 8%;
    animation: shapeRotate 25s linear infinite reverse;
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.15);
}

.shape-ring::before {
    content: '';
    position: absolute;
    inset: 25px;
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.shape-diamond {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 107, 157, 0.35);
    top: 30%;
    right: 15%;
    transform: rotate(45deg);
    animation: shapePulse 3s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255, 107, 157, 0.15);
    background: rgba(45, 27, 78, 0.2);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 80px solid rgba(155, 89, 182, 0.15);
    bottom: 20%;
    left: 8%;
    animation: shapeFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.2));
}

.shape-dots {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 25%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 18px 18px;
    animation: shapeFade 4s ease-in-out infinite;
}

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

@keyframes shapePulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.15; }
    50% { transform: rotate(45deg) scale(1.2); opacity: 0.3; }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shapeFade {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.25; }
}

/* Glowing Lines - Dark Accent */
.glow-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.glow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(233, 30, 99, 0.6),
        rgba(255, 215, 0, 0.4),
        rgba(155, 89, 182, 0.6),
        transparent
    );
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.3), 0 0 20px rgba(155, 89, 182, 0.2);
    animation: glowLineMove 10s linear infinite;
}

.line-1 {
    width: 250px;
    top: 20%;
    left: -250px;
    animation-delay: 0s;
}

.line-2 {
    width: 180px;
    top: 50%;
    left: -180px;
    animation-delay: 3s;
}

.line-3 {
    width: 220px;
    top: 80%;
    left: -220px;
    animation-delay: 6s;
}

@keyframes glowLineMove {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 200px)); opacity: 0; }
}

/* Particle Field */
.particle-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Modern Badge - Dark Accent */
.modern-badge {
    position: relative;
    background: linear-gradient(135deg,
        rgba(45, 27, 78, 0.6),
        rgba(74, 25, 66, 0.5),
        rgba(92, 26, 61, 0.4)
    );
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg,
        rgba(233, 30, 99, 0.5),
        rgba(155, 89, 182, 0.4),
        rgba(255, 215, 0, 0.3),
        rgba(233, 30, 99, 0.5)
    );
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(15px);
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.08); }
}

/* Modern Frame for Image - Dark Accent */
.modern-frame {
    position: relative;
}

.frame-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    inset: -25px;
    border-color: rgba(255, 215, 0, 0.3);
    border-width: 2px;
    animation-duration: 12s;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(45, 27, 78, 0.3);
}

.ring-2 {
    inset: -50px;
    border-color: rgba(233, 30, 99, 0.25);
    border-width: 2px;
    animation-duration: 18s;
    animation-direction: reverse;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.1), inset 0 0 25px rgba(74, 25, 66, 0.2);
}

.ring-3 {
    inset: -80px;
    border-color: rgba(155, 89, 182, 0.2);
    border-width: 1px;
    animation-duration: 24s;
    box-shadow: 0 0 35px rgba(155, 89, 182, 0.08);
}

.ring-1::before,
.ring-2::before,
.ring-3::before {
    content: '✦';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    filter: drop-shadow(0 0 10px currentColor);
}

.ring-1::before { color: rgba(255, 215, 0, 0.7); }
.ring-2::before { color: rgba(233, 30, 99, 0.6); }
.ring-3::before { color: rgba(155, 89, 182, 0.5); }

.ring-1::after,
.ring-2::after,
.ring-3::after {
    content: '✦';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    filter: drop-shadow(0 0 8px currentColor);
}

.ring-1::after { color: rgba(255, 215, 0, 0.5); }
.ring-2::after { color: rgba(233, 30, 99, 0.4); }
.ring-3::after { color: rgba(155, 89, 182, 0.35); }

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

/* Image Scan Line */
.image-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.8),
        transparent
    );
    animation: scanLine 3s linear infinite;
    border-radius: 50%;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Modern Title - Dark Accent */
.modern-title .title-text {
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(233, 30, 99, 0.3);
}

.modern-title .title-text::before,
.modern-title .title-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.modern-title .title-text::before {
    color: rgba(233, 30, 99, 0.8);
    animation: glitchTop 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.modern-title .title-text::after {
    color: rgba(155, 89, 182, 0.8);
    animation: glitchBottom 4s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

@keyframes glitchTop {
    0%, 92%, 100% { opacity: 0; transform: translate(0); }
    94% { opacity: 0.6; transform: translate(-2px, -1px); }
    96% { opacity: 0; }
    98% { opacity: 0.6; transform: translate(2px, 1px); }
}

@keyframes glitchBottom {
    0%, 92%, 100% { opacity: 0; transform: translate(0); }
    93% { opacity: 0.6; transform: translate(2px, 1px); }
    95% { opacity: 0; }
    97% { opacity: 0.6; transform: translate(-2px, -1px); }
}

/* Modern Subtitle - Dark Accent */
.modern-subtitle {
    position: relative;
}

.subtitle-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    vertical-align: middle;
    animation: lineExpand 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@keyframes lineExpand {
    0%, 100% { width: 30px; opacity: 0.4; }
    50% { width: 70px; opacity: 0.8; }
}

/* Modern CTA Buttons - Dark Accent */
.btn-modern {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #e91e63, #9b59b6, #4a1942) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-modern .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e91e63, #9b59b6, #4a1942);
    z-index: -1;
    transition: transform 0.5s, filter 0.3s;
}

.btn-modern:hover .btn-bg {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.btn-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5), 0 0 30px rgba(233, 30, 99, 0.4);
}

.btn-modern .btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    color: white;
}

.btn-modern .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: btnShineMove 4s infinite;
}

@keyframes btnShineMove {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-modern-outline {
    position: relative;
    background: rgba(45, 27, 78, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-modern-outline .btn-border {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.5), rgba(155, 89, 182, 0.4), rgba(255, 215, 0, 0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Social Proof - Dark Accent */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
    padding: 18px 45px;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(74, 25, 66, 0.5), rgba(26, 26, 46, 0.6));
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: proofSlideUp 1s ease-out 0.5s both;
}

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

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proof-icon {
    font-size: 22px;
    animation: proofIconBounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.proof-item:nth-child(1) .proof-icon { animation-delay: 0s; }
.proof-item:nth-child(3) .proof-icon { animation-delay: 0.4s; }
.proof-item:nth-child(5) .proof-icon { animation-delay: 0.8s; }

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

.proof-text {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.proof-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.35), rgba(233, 30, 99, 0.25), transparent);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.1);
}

/* Modern Scroll Indicator - Dark Accent */
.modern-scroll {
    flex-direction: column;
    gap: 10px;
}

.scroll-mouse {
    width: 26px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    position: relative;
    background: rgba(45, 27, 78, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(155, 89, 182, 0.1);
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.8), rgba(233, 30, 99, 0.6));
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.4; }
}

.scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Corner Accents - Dark Accent */
.hero-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.corner-tl {
    top: 25px;
    left: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    border-left: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: -5px -5px 20px rgba(255, 215, 0, 0.08);
}

.corner-tr {
    top: 25px;
    right: 25px;
    border-top: 1px solid rgba(233, 30, 99, 0.25);
    border-right: 1px solid rgba(233, 30, 99, 0.25);
    box-shadow: 5px -5px 20px rgba(233, 30, 99, 0.08);
}

.corner-bl {
    bottom: 25px;
    left: 25px;
    border-bottom: 1px solid rgba(155, 89, 182, 0.25);
    border-left: 1px solid rgba(155, 89, 182, 0.25);
    box-shadow: -5px 5px 20px rgba(155, 89, 182, 0.08);
}

.corner-br {
    bottom: 25px;
    right: 25px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.25);
    border-right: 1px solid rgba(255, 107, 157, 0.25);
    box-shadow: 5px 5px 20px rgba(255, 107, 157, 0.08);
}

.hero-corner::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: inherit;
    border-radius: 50%;
    animation: cornerPulse 3s ease-in-out infinite;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

.corner-tl::before { top: -3px; left: -3px; background: rgba(255, 215, 0, 0.5); box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.corner-tr::before { top: -3px; right: -3px; background: rgba(233, 30, 99, 0.5); box-shadow: 0 0 10px rgba(233, 30, 99, 0.3); }
.corner-bl::before { bottom: -3px; left: -3px; background: rgba(155, 89, 182, 0.5); box-shadow: 0 0 10px rgba(155, 89, 182, 0.3); }
.corner-br::before { bottom: -3px; right: -3px; background: rgba(255, 107, 157, 0.5); box-shadow: 0 0 10px rgba(255, 107, 157, 0.3); }

/* Mobile Responsive for Modern Hero */
@media (max-width: 768px) {
    .hero-orbs .orb {
        transform: scale(0.6);
    }

    .hero-shapes .shape {
        transform: scale(0.7);
    }

    .hero-social-proof {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 10px;
    }

    .proof-divider {
        display: none;
    }

    .hero-corner {
        width: 40px;
        height: 40px;
    }

    .frame-ring {
        display: none;
    }

    .subtitle-line {
        width: 20px;
    }

    .glow-lines {
        display: none;
    }
}

/* ============================================
   MEMORY GAME SECTION - Igraj s Nikol
   ============================================ */

.memory-game-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 30%, #4a1942 60%, #1a1a2e 100%);
    overflow: clip;
}

/* Background Elements */
.game-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.game-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.game-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.4), transparent 70%);
    top: -10%;
    left: -10%;
    animation: gameBlobFloat 20s ease-in-out infinite;
}

.game-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.3), transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: gameBlobFloat 25s ease-in-out infinite reverse;
}

.game-blob.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: gameBlobFloat 15s ease-in-out infinite;
}

@keyframes gameBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.05); }
}

/* Floating Game Icons */
.game-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.game-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: gameIconFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.game-icon.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.game-icon.icon-2 { top: 20%; right: 8%; animation-delay: 1s; }
.game-icon.icon-3 { bottom: 30%; left: 3%; animation-delay: 2s; }
.game-icon.icon-4 { bottom: 15%; right: 5%; animation-delay: 3s; }
.game-icon.icon-5 { top: 60%; left: 8%; animation-delay: 4s; font-size: 30px; }
.game-icon.icon-6 { top: 40%; right: 3%; animation-delay: 5s; font-size: 35px; }

@keyframes gameIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-25px) rotate(5deg); }
}

/* Sparkles */
.game-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.game-sparkles span {
    position: absolute;
    font-size: 16px;
    opacity: 0;
    animation: gameSparkle 6s linear infinite;
}

.game-sparkles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.game-sparkles span:nth-child(2) { left: 25%; animation-delay: 0.8s; }
.game-sparkles span:nth-child(3) { left: 40%; animation-delay: 1.6s; }
.game-sparkles span:nth-child(4) { left: 55%; animation-delay: 2.4s; }
.game-sparkles span:nth-child(5) { left: 70%; animation-delay: 3.2s; }
.game-sparkles span:nth-child(6) { left: 85%; animation-delay: 4s; }
.game-sparkles span:nth-child(7) { left: 15%; animation-delay: 4.8s; }
.game-sparkles span:nth-child(8) { left: 60%; animation-delay: 5.6s; }

@keyframes gameSparkle {
    0% { top: -10%; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 110%; opacity: 0; transform: rotate(360deg); }
}

/* Header Styling */
.game-header-deco {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.game-header-deco .deco-icon {
    font-size: 30px;
    animation: decoIconBounce 2s ease-in-out infinite;
}

.game-header-deco .deco-star {
    font-size: 25px;
    animation: decoStarSpin 3s linear infinite;
}

@keyframes decoIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(233, 30, 99, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.game-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-word-game {
    display: inline-block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-word-game.highlight-game {
    color: var(--primary-pink);
    text-shadow: 0 0 30px rgba(233, 30, 99, 0.5);
}

.title-word-game.highlight-gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.title-emoji {
    font-size: 2.5rem;
    animation: emojiWiggle 2s ease-in-out infinite;
}

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

.game-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 15px;
}

.subtitle-icon {
    font-size: 1.3rem;
    animation: subtitleIconPulse 2s ease-in-out infinite;
}

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

/* Game Container */
.memory-game-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(74, 25, 66, 0.4));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Stats Panel */
.game-stats-panel {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.stat-box .stat-icon {
    font-size: 28px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* Memory Game Board */
.memory-game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Memory Card */
.memory-card {
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    /* Safari fix for aspect-ratio */
    min-height: 80px;
}

.memory-card:hover {
    transform: scale(1.05);
}

.memory-card.flipped .card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.memory-card.matched {
    cursor: default;
}

.memory-card.matched .card-inner {
    animation: matchPulse 0.6s ease;
}

@keyframes matchPulse {
    0% { transform: rotateY(180deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
    100% { transform: rotateY(180deg) scale(1); }
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.card-front {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.8), rgba(233, 30, 99, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-front::before {
    content: '👑';
    font-size: 40px;
    opacity: 0.8;
    animation: cardFrontPulse 2s ease-in-out infinite;
}

@keyframes cardFrontPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: cardShine 3s ease-in-out infinite;
}

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

.card-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, #2a1a4a 0%, #1a1a3e 100%);
}

.card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.card-emoji {
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(155, 89, 182, 0.2));
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.memory-card.flipped .card-emoji {
    animation: emojiPop 0.3s ease;
}

@keyframes emojiPop {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.memory-card.matched .card-emoji {
    animation: emojiWin 0.5s ease;
}

@keyframes emojiWin {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3) rotate(-10deg); }
    75% { transform: scale(1.3) rotate(10deg); }
}

.memory-card.matched .card-back {
    border-color: rgba(76, 175, 80, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(76, 175, 80, 0.4);
}

/* Game Controls */
.game-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.game-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-restart {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-lila));
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-restart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.btn-hint {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hint:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 20px;
}

/* Win Message */
.game-win-message {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 10;
}

.game-win-message.show {
    opacity: 1;
    visibility: visible;
}

.win-content {
    text-align: center;
    color: white;
    animation: winPopIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.win-crown {
    font-size: 80px;
    animation: winCrownBounce 1s ease-in-out infinite;
}

@keyframes winCrownBounce {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.win-content h3 {
    font-size: 2.5rem;
    margin: 20px 0 10px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.win-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.win-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.win-stats span {
    font-size: 1.1rem;
}

.win-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.win-stars span {
    font-size: 40px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.win-stars span.active {
    opacity: 1;
    animation: starPop 0.5s ease forwards;
}

@keyframes starPop {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.3) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.btn-play-again {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-play-again:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

/* Game Instructions */
.game-instructions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.instruction-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 200px;
    text-align: center;
}

.instruction-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.instruction-icon {
    font-size: 40px;
}

.instruction-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .memory-game-section {
        padding: 60px 0;
    }

    .memory-game-container {
        padding: 20px;
        margin: 30px 15px 0;
    }

    .game-stats-panel {
        gap: 15px;
    }

    .stat-box {
        padding: 12px 18px;
    }

    .stat-value {
        font-size: 20px;
    }

    .memory-game-board {
        gap: 10px;
    }

    .card-front::before {
        font-size: 28px;
    }

    .game-controls {
        flex-direction: column;
        align-items: center;
    }

    .game-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .game-instructions {
        gap: 15px;
    }

    .instruction-card {
        padding: 20px;
        max-width: 150px;
    }

    .instruction-icon {
        font-size: 30px;
    }

    .game-floating-icons {
        display: none;
    }

    .win-crown {
        font-size: 60px;
    }

    .win-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .memory-game-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .card-front::before {
        font-size: 22px;
    }

    .game-header-deco {
        gap: 15px;
    }

    .game-header-deco .deco-icon {
        font-size: 24px;
    }

    .title-emoji {
        font-size: 2rem;
    }
}

/* ================================================
   SHARE BUTTONS - Footer & Game
   ================================================ */

/* Footer Share Section */
.footer-share {
    text-align: center;
}

.footer-share h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-icon-header {
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
    overflow: hidden;
    background: transparent;
}

.share-btn .share-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-btn .share-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.share-btn i {
    position: relative;
    z-index: 2;
}

/* Facebook */
.share-btn.share-facebook .share-bg {
    background: linear-gradient(135deg, #1877f2, #0d5bc9);
}

.share-btn.share-facebook .share-glow {
    background: linear-gradient(135deg, #1877f2, #0d5bc9);
    filter: blur(8px);
}

/* Twitter/X */
.share-btn.share-twitter .share-bg {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
}

.share-btn.share-twitter .share-glow {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
    filter: blur(8px);
}

/* WhatsApp */
.share-btn.share-whatsapp .share-bg {
    background: linear-gradient(135deg, #25d366, #128c4e);
}

.share-btn.share-whatsapp .share-glow {
    background: linear-gradient(135deg, #25d366, #128c4e);
    filter: blur(8px);
}

/* Copy Link */
.share-btn.share-copy .share-bg {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
}

.share-btn.share-copy .share-glow {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    filter: blur(8px);
}

.share-btn:hover {
    transform: translateY(-4px) scale(1.1);
}

.share-btn:hover .share-glow {
    opacity: 0.6;
}

.share-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Share Message */
.share-message {
    margin-top: 1rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.share-message.show {
    opacity: 1;
    transform: translateY(0);
}

.share-message .message-icon {
    color: #25d366;
    font-weight: bold;
}

.share-message .message-text {
    color: var(--white);
    font-size: 0.9rem;
}

/* Win Share Section */
.win-share {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.win-share .share-label {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.win-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.win-share-buttons .share-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
}

.win-share-buttons .share-btn .share-bg,
.win-share-buttons .share-btn .share-glow {
    display: none;
}

.win-share-buttons .share-btn.share-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bc9);
}

.win-share-buttons .share-btn.share-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8ecf);
}

.win-share-buttons .share-btn.share-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c4e);
}

.win-share-buttons .share-btn:hover {
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Share Responsive */
@media (max-width: 768px) {
    .footer-share h4 {
        font-size: 1rem;
    }

    .share-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .share-buttons {
        gap: 10px;
    }

    .win-share-buttons .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .win-share {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .win-share .share-label {
        font-size: 0.85rem;
    }

    .win-share-buttons {
        gap: 12px;
    }

    .win-share-buttons .share-btn {
        width: 38px;
        height: 38px;
    }
}

/* ================================================
   GAMES HUB SECTION - Igraj s Nikol (Index Page)
   ================================================ */

.games-hub-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 30%, #4a1942 60%, #1a1a2e 100%);
    overflow: clip;
}

/* Games Grid */
.games-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Game Hub Card */
.game-hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.game-hub-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow:
        0 20px 50px rgba(155, 89, 182, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
}

/* Card Glow Effect */
.game-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-hub-card:hover .game-card-glow {
    opacity: 1;
}

/* Card Icon */
.game-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.game-hub-card:hover .game-card-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Card Title */
.game-card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(135deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Description */
.game-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Card Action Button */
.game-card-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.8), rgba(233, 30, 99, 0.8));
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4);
}

.game-hub-card:hover .game-card-action {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
    color: #1a1a2e;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.game-card-action i {
    transition: transform 0.3s ease;
}

.game-hub-card:hover .game-card-action i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .games-hub-section {
        padding: 60px 0;
    }

    .games-hub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .game-hub-card {
        padding: 30px 20px;
    }

    .game-card-icon {
        font-size: 3rem;
    }

    .game-card-title {
        font-size: 1.3rem;
    }

    .game-card-desc {
        font-size: 0.9rem;
    }
}

/* ================================================
   DRESS UP GAME - Obuci Nikol
   ================================================ */

/* Section Base - Red Theme */
.dressup-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 25%, #dc143c 50%, #b22222 75%, #800000 100%);
    overflow: clip;
    min-height: 100vh;
}

/* Animated Background Elements */
.dressup-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.dressup-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: dressupBlobFloat 20s ease-in-out infinite;
}

.dressup-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.dressup-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.dressup-blob.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff1493 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes dressupBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Floating Fashion Icons */
.dressup-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.dressup-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: dressupIconFloat 15s ease-in-out infinite;
}

.dressup-icon.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.dressup-icon.icon-2 { top: 20%; right: 8%; animation-delay: -2s; }
.dressup-icon.icon-3 { top: 50%; left: 3%; animation-delay: -4s; }
.dressup-icon.icon-4 { bottom: 30%; right: 5%; animation-delay: -6s; }
.dressup-icon.icon-5 { bottom: 15%; left: 10%; animation-delay: -8s; }
.dressup-icon.icon-6 { top: 35%; right: 3%; animation-delay: -10s; }

@keyframes dressupIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

/* Sparkles */
.dressup-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.dressup-sparkles span {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: dressupSparkle 4s ease-in-out infinite;
}

.dressup-sparkles span:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.dressup-sparkles span:nth-child(2) { top: 25%; right: 25%; animation-delay: 0.5s; }
.dressup-sparkles span:nth-child(3) { top: 45%; left: 15%; animation-delay: 1s; }
.dressup-sparkles span:nth-child(4) { bottom: 35%; right: 20%; animation-delay: 1.5s; }
.dressup-sparkles span:nth-child(5) { bottom: 25%; left: 25%; animation-delay: 2s; }
.dressup-sparkles span:nth-child(6) { top: 60%; right: 15%; animation-delay: 2.5s; }
.dressup-sparkles span:nth-child(7) { bottom: 45%; left: 10%; animation-delay: 3s; }
.dressup-sparkles span:nth-child(8) { top: 35%; right: 30%; animation-delay: 3.5s; }

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

/* Header Decoration */
.dressup-header-deco {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.dressup-header-deco .deco-icon {
    font-size: 2rem;
    animation: dressupDecoFloat 3s ease-in-out infinite;
}

.dressup-header-deco .deco-star {
    font-size: 2.5rem;
    animation: dressupDecoPulse 2s ease-in-out infinite;
}

@keyframes dressupDecoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* Badge */
.dressup-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.dressup-badge .badge-glow-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: badgeGlowSweep 3s ease-in-out infinite;
}

/* Title */
.dressup-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-word-dressup {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.title-word-dressup.highlight-dressup {
    background: linear-gradient(135deg, #ffd700, #ffec8b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Subtitle */
.dressup-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dressup-subtitle .subtitle-icon {
    font-size: 1.3rem;
    animation: subtitleIconPulse 2s ease-in-out infinite;
}

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

/* Game Container */
.dressup-game-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Canvas Wrapper */
.dressup-canvas-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Canvas */
.dressup-canvas {
    position: relative;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 100px rgba(255, 255, 255, 0.05);
    cursor: crosshair;
}

.dressup-base-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    pointer-events: none;
}

/* Accessories Layer */
.accessories-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.placed-accessory {
    position: absolute;
    cursor: move;
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
    -webkit-transition: transform 0.1s ease;
    transition: transform 0.1s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 10;
    /* Mobile touch improvements */
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.placed-accessory:hover {
    transform: scale(1.1);
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
}

.placed-accessory.dragging {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.8;
    z-index: 100;
}

/* Canvas Controls */
.canvas-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.canvas-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.canvas-btn.btn-reset {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.canvas-btn.btn-reset:hover {
    background: linear-gradient(135deg, #ff5252, #e74c3c);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.canvas-btn.btn-screenshot {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
}

.canvas-btn.btn-screenshot:hover {
    background: linear-gradient(135deg, #ffec8b, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Accessories Panel */
.dressup-accessories-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.panel-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.panel-icon {
    font-size: 1.5rem;
}

/* Category Tabs */
.accessory-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1.5rem;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 5px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.tab-icon {
    font-size: 1.3rem;
}

.tab-text {
    font-size: 0.7rem;
    font-weight: 600;
}

/* Accessories Grid */
.accessories-grid {
    margin-bottom: 1.5rem;
}

.accessory-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.accessory-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accessory-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accessory-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.accessory-item:hover::before {
    opacity: 1;
}

.accessory-item.selected {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.item-preview {
    font-size: 2rem;
    z-index: 1;
}

/* Size Control */
.size-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.size-control label {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.size-control input[type="range"] {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    outline: none;
}

.size-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.size-value {
    color: #ffd700;
    font-weight: 700;
    min-width: 45px;
    text-align: right;
}

/* Instructions */
.dressup-instructions {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
}

.dressup-instructions p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dressup-instructions p:last-child {
    margin-bottom: 0;
}

.inst-icon {
    font-size: 1rem;
}

/* Share Section */
.dressup-share {
    text-align: center;
    margin-top: 2rem;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-cta {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-icon {
    font-size: 1.3rem;
}

.dressup-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.dressup-share-buttons .share-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dressup-game-container {
        grid-template-columns: 1fr;
    }

    .dressup-accessories-panel {
        order: -1;
    }

    .accessory-tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    .accessory-category {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .dressup-section {
        padding: 60px 0;
    }

    .title-word-dressup {
        font-size: 2rem;
    }

    .dressup-subtitle {
        font-size: 1rem;
    }

    .accessory-category {
        grid-template-columns: repeat(4, 1fr);
    }

    .tab-text {
        display: none;
    }

    .tab-btn {
        padding: 12px;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .canvas-btn span {
        display: none;
    }

    .canvas-btn {
        padding: 15px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .title-word-dressup {
        font-size: 1.6rem;
    }

    .dressup-accessories-panel {
        padding: 15px;
    }

    .accessory-category {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .item-preview {
        font-size: 1.5rem;
    }

    .dressup-header-deco .deco-icon {
        font-size: 1.5rem;
    }

    .dressup-header-deco .deco-star {
        font-size: 2rem;
    }
}

/* ================================================
   MOBILE RESPONSIVE FIXES - Prevent Horizontal Scroll
   ================================================ */

/* Global container fixes */
@media (max-width: 768px) {
    /* Prevent any overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Fix all absolute positioned decorative elements */
    .hero-orbs,
    .hero-shapes,
    .glow-lines,
    .hero-grid,
    .sparkle-rain,
    .hero-crowns,
    .particle-field,
    .about-mesh-bg,
    .about-3d-elements,
    .about-neon-lines,
    .about-sparkle-rain,
    .about-music-notes,
    .victory-mesh-bg,
    .victory-3d-shapes,
    .victory-neon-grid,
    .victory-orbs,
    .victory-particle-rain,
    .victory-floating-icons,
    .victory-aurora,
    .game-bg-elements,
    .game-floating-icons,
    .game-sparkles,
    .dressup-bg-elements,
    .dressup-floating-icons,
    .dressup-sparkles,
    .comments-floating,
    .comments-sparkles,
    .footer-bg-effects,
    .footer-floating {
        overflow: hidden !important;
        max-width: 100vw !important;
    }

    /* Fix orbs that might overflow */
    .orb,
    .hero-orb,
    .victory-orb,
    .about-blob,
    .mesh-blob,
    .game-blob,
    .dressup-blob {
        max-width: 50vw !important;
    }

    /* Fix floating icons positions */
    .float-icon,
    .game-icon,
    .dressup-icon,
    .music-note-float,
    .about-3d-star,
    .about-3d-heart,
    .about-3d-crown {
        max-width: 50px !important;
    }

    /* Fix hero section */
    .hero {
        padding: 80px 15px 60px !important;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-badge,
    .modern-badge {
        padding: 8px 15px !important;
        font-size: 0.75rem !important;
        max-width: 95vw !important;
    }

    .hero-name {
        font-size: 2rem !important;
        word-wrap: break-word;
    }

    /* Fix section containers */
    .section-container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Fix titles */
    .section-title,
    .about-title-ultra,
    .victory-title-ultra,
    .game-title,
    .dressup-title {
        font-size: 1.5rem !important;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .title-word,
    .title-word-about,
    .title-word-game,
    .title-word-dressup {
        font-size: 1.3rem !important;
    }

    /* Fix badges */
    .section-badge {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        max-width: 90vw !important;
    }

    /* Fix about section */
    .about-grid,
    .about-grid-ultra {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .about-image-card {
        max-width: 100% !important;
    }

    .about-content-card {
        padding: 20px 15px !important;
    }

    .about-stats-ultra {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .achievement-tags {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .achievement-tag {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }

    /* Fix victory section */
    .victory-content,
    .victory-content-ultra {
        grid-template-columns: 1fr !important;
    }

    .victory-text-card {
        padding: 20px 15px !important;
    }

    .victory-stats-ultra {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .victory-video-wrapper {
        padding: 10px !important;
    }

    .video-frame-ultra iframe {
        height: 200px !important;
    }

    /* Fix journey section */
    .timeline::before {
        left: 20px !important;
    }

    .timeline-item {
        padding-left: 50px !important;
    }

    .timeline-icon {
        left: 5px !important;
        width: 30px !important;
        height: 30px !important;
    }

    /* Fix gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Fix videos masonry */
    .videos-masonry {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Fix memory game - full width */
    .memory-game-board {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .memory-card {
        min-height: 70px !important;
        aspect-ratio: 1 !important;
    }

    .game-stats-panel {
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 10px !important;
    }

    .stat-box {
        min-width: auto !important;
        padding: 8px 12px !important;
    }

    .game-controls {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .game-btn {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
    }

    .game-instructions {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .instruction-card {
        padding: 10px 15px !important;
    }

    /* Fix dress up game */
    .dressup-game-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .dressup-canvas {
        max-height: 50vh !important;
    }

    .dressup-base-image {
        max-height: 50vh !important;
    }

    .canvas-controls {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    /* Fix comments section */
    .comment-form-wrapper {
        padding: 20px 15px !important;
    }

    .emotion-buttons {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .emotion-btn {
        width: 40px !important;
        height: 40px !important;
    }

    /* Fix footer */
    .footer-content,
    .footer-content-modern {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .footer-links ul {
        text-align: center !important;
    }

    .social-icons,
    .social-icons-modern {
        justify-content: center !important;
    }

    .share-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* Fix navigation */
    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .navbar {
        padding: 10px 15px !important;
    }

    .logo {
        font-size: 1rem !important;
    }

    /* Fix scroll indicator */
    .scroll-indicator {
        bottom: 20px !important;
    }

    /* Fix corner accents */
    .hero-corner,
    .card-corner,
    .image-corner {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-name {
        font-size: 1.6rem !important;
    }

    .section-title {
        font-size: 1.3rem !important;
    }

    .title-word,
    .title-word-about,
    .title-word-game,
    .title-word-dressup {
        font-size: 1.1rem !important;
    }

    .memory-game-board {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .memory-card {
        min-height: 55px !important;
        aspect-ratio: 1 !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .about-stats-ultra {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-number-about,
    .stat-number-ultra {
        font-size: 1.2rem !important;
    }

    .victory-stats-ultra {
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .accessory-tabs {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
    }

    .tab-btn {
        padding: 8px 4px !important;
    }

    .tab-icon {
        font-size: 1.2rem !important;
    }
}

/* Landscape mobile fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto !important;
        padding: 60px 20px !important;
    }

    .hero-image-wrapper {
        max-width: 200px !important;
    }

    .dressup-canvas {
        max-height: 60vh !important;
    }
}

/* Critical overflow fixes for elements with negative positions */
@media (max-width: 768px) {
    /* Hide or contain elements that overflow to the right */
    .neon-line-about.line-2,
    .neon-line,
    .glow-line {
        display: none !important;
    }

    /* Fix floating decorative elements with negative right positions */
    .about-image-card .float-2,
    .about-image-card .float-4,
    .video-deco.deco-2,
    .video-deco.deco-4 {
        right: 5px !important;
    }

    /* Hide blob elements that extend beyond viewport */
    .about-blob,
    .mesh-blob {
        display: none !important;
    }

    /* Fix corner decorations */
    .image-corner-tl,
    .image-corner-tr,
    .image-corner-bl,
    .image-corner-br,
    .corner-tl,
    .corner-tr,
    .corner-bl,
    .corner-br {
        width: 15px !important;
        height: 15px !important;
    }

    /* Ensure all containers use overflow clip */
    .hero,
    .about,
    .about-ultra,
    .victory,
    .victory-ultra,
    .journey,
    .gallery,
    .videos,
    .comments,
    .comments-section,
    .footer,
    .footer-modern,
    .memory-game-section,
    .dressup-section {
        position: relative;
        overflow: clip !important;
    }

    /* Fix specifically problematic positioned elements */
    .about-3d-elements > *,
    .victory-3d-shapes > *,
    .hero-shapes > * {
        max-width: 40px !important;
        max-height: 40px !important;
    }

    /* Fix video decorations container */
    .video-deco-left,
    .video-deco-right {
        display: none !important;
    }

    /* Fix right-side overflows */
    [style*="right: -"],
    .float-icon[style*="right: -"] {
        right: 5px !important;
    }
}

/* ================================================
   HERO FLOATING CIRCLES
   ================================================ */

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-floating-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 0 0 4px rgba(255, 215, 0, 0.4),
        0 0 0 8px rgba(155, 89, 182, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(233, 30, 99, 0.2);
    z-index: 5;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-floating-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.hero-floating-circle:hover {
    transform: scale(1.15);
    box-shadow:
        0 0 0 5px rgba(255, 215, 0, 0.6),
        0 0 0 10px rgba(155, 89, 182, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(233, 30, 99, 0.4);
    z-index: 15;
}

.hero-floating-circle:hover img {
    transform: scale(1.1);
}

/* Circle 1 - Top Left */
.hero-floating-circle.circle-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    left: -100px;
    animation: floatCircle1 6s ease-in-out infinite;
}

/* Circle 2 - Top Right */
.hero-floating-circle.circle-2 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -90px;
    animation: floatCircle2 7s ease-in-out infinite;
    animation-delay: -2s;
}

/* Circle 3 - Bottom Left (Suza za zagorske brege) */
.hero-floating-circle.circle-3 {
    width: 110px;
    height: 110px;
    bottom: 50px;
    left: -80px;
    animation: floatCircle3 8s ease-in-out infinite;
    animation-delay: -4s;
}

/* Floating Animations */
@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0) rotate(-5deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(5px, 10px) rotate(-3deg);
    }
    75% {
        transform: translate(-10px, -5px) rotate(8deg);
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) rotate(5deg);
    }
    25% {
        transform: translate(-15px, 10px) rotate(-5deg);
    }
    50% {
        transform: translate(-5px, -15px) rotate(8deg);
    }
    75% {
        transform: translate(10px, 5px) rotate(-3deg);
    }
}

@keyframes floatCircle3 {
    0%, 100% {
        transform: translate(0, 0) rotate(3deg);
    }
    25% {
        transform: translate(15px, 10px) rotate(-6deg);
    }
    50% {
        transform: translate(-10px, -10px) rotate(5deg);
    }
    75% {
        transform: translate(5px, 15px) rotate(-4deg);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-floating-circle.circle-1 {
        width: 100px;
        height: 100px;
        left: -70px;
        top: -20px;
    }

    .hero-floating-circle.circle-2 {
        width: 85px;
        height: 85px;
        right: -60px;
        top: -10px;
    }

    .hero-floating-circle.circle-3 {
        width: 90px;
        height: 90px;
        left: -60px;
        bottom: 60px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-floating-circle.circle-1 {
        width: 70px;
        height: 70px;
        left: -30px;
        top: -40px;
    }

    .hero-floating-circle.circle-2 {
        width: 60px;
        height: 60px;
        right: -25px;
        top: -30px;
    }

    .hero-floating-circle.circle-3 {
        width: 65px;
        height: 65px;
        left: -25px;
        bottom: 30px;
    }

    .hero-floating-circle {
        box-shadow:
            0 0 0 3px rgba(255, 215, 0, 0.4),
            0 0 0 6px rgba(155, 89, 182, 0.3),
            0 10px 25px rgba(0, 0, 0, 0.4);
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero-floating-circle.circle-1 {
        width: 55px;
        height: 55px;
        left: -15px;
        top: -35px;
    }

    .hero-floating-circle.circle-2 {
        width: 50px;
        height: 50px;
        right: -10px;
        top: -25px;
    }

    .hero-floating-circle.circle-3 {
        width: 50px;
        height: 50px;
        left: -10px;
        bottom: 20px;
    }
}

/* ================================================
   SAFARI BROWSER SPECIFIC FIXES
   ================================================ */

/* Safari backdrop-filter fix */
@supports (-webkit-backdrop-filter: blur(10px)) {
    .game-win-message,
    .dressup-badge,
    .section-badge,
    .about-badge-ultra,
    .victory-badge-ultra,
    .game-badge {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* Safari transform fixes for cards */
@supports (-webkit-transform-style: preserve-3d) {
    .memory-card {
        -webkit-transform-style: preserve-3d;
    }

    .card-inner {
        -webkit-transform-style: preserve-3d;
    }

    .card-front,
    .card-back {
        -webkit-backface-visibility: hidden;
    }
}

/* Safari animation fixes */
@keyframes matchPulse {
    0% { -webkit-transform: rotateY(180deg) scale(1); transform: rotateY(180deg) scale(1); }
    50% { -webkit-transform: rotateY(180deg) scale(1.1); transform: rotateY(180deg) scale(1.1); }
    100% { -webkit-transform: rotateY(180deg) scale(1); transform: rotateY(180deg) scale(1); }
}

/* Safari gradient text fix */
.title-word-dressup.highlight-dressup,
.win-content h3,
.title-word.highlight-word,
.title-word-about.highlight-star,
.title-word-about.highlight-gold,
.title-word-game.highlight-game,
.title-word-game.highlight-gold {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   MOBILE GAME IMPROVEMENTS
   ================================================ */

@media (max-width: 768px) {
    /* Memory Game Mobile Optimization - Full Width */
    .memory-game-section .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .memory-game-board {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .memory-card {
        min-height: 70px !important;
        aspect-ratio: 1 !important;
        /* Disable hover on touch devices */
        -webkit-tap-highlight-color: transparent;
    }

    .memory-card:hover {
        transform: none !important;
    }

    .memory-card:active {
        transform: scale(0.95) !important;
    }

    .card-front::before {
        font-size: 24px !important;
    }

    .card-emoji {
        font-size: 2.5rem !important;
    }

    /* Game Stats Mobile */
    .game-stats-panel {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding: 10px !important;
        gap: 8px !important;
    }

    .stat-box {
        flex: 0 0 auto !important;
        min-width: 80px !important;
        padding: 8px 12px !important;
    }

    .stat-box .stat-icon {
        font-size: 20px !important;
    }

    .stat-value {
        font-size: 18px !important;
    }

    .stat-label {
        font-size: 10px !important;
    }

    /* Win Message Mobile */
    .game-win-message {
        padding: 15px !important;
    }

    .win-crown {
        font-size: 50px !important;
    }

    .win-content h3 {
        font-size: 1.5rem !important;
    }

    .win-content p {
        font-size: 1rem !important;
    }

    .win-stats {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .win-stars span {
        font-size: 30px !important;
    }

    /* Dress Up Game Mobile */
    .dressup-game-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .dressup-canvas-wrapper {
        order: 1;
    }

    .dressup-accessories-panel {
        order: 2;
        max-height: none !important;
    }

    .dressup-canvas {
        width: 100% !important;
        max-height: 45vh !important;
        min-height: 250px !important;
    }

    .dressup-base-image {
        max-height: 45vh !important;
        width: 100% !important;
        object-fit: contain !important;
    }

    /* Accessory Panel Mobile */
    .accessory-tabs {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 5px !important;
    }

    .tab-btn {
        padding: 8px 5px !important;
        flex-direction: column !important;
        gap: 2px !important;
    }

    .tab-icon {
        font-size: 1.2rem !important;
    }

    .tab-text {
        font-size: 0.6rem !important;
    }

    .accessory-category {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .accessory-item {
        padding: 10px !important;
    }

    .item-preview {
        font-size: 1.8rem !important;
    }

    /* Size Control Mobile */
    .size-control {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .size-control input[type="range"] {
        width: 100% !important;
        max-width: 200px !important;
    }

    /* Canvas Controls Mobile */
    .canvas-controls {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .canvas-btn {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
    }

    /* Dress Up Instructions Mobile */
    .dressup-instructions {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .dressup-instructions p {
        font-size: 0.85rem !important;
    }

    /* Game Title Mobile */
    .game-title,
    .dressup-title {
        font-size: 1.2rem !important;
    }

    .title-word-game,
    .title-word-dressup {
        font-size: 1.5rem !important;
    }

    .title-emoji {
        font-size: 1.8rem !important;
    }

    /* Header Decorations Mobile */
    .game-header-deco,
    .dressup-header-deco {
        gap: 10px !important;
    }

    .game-header-deco .deco-icon,
    .dressup-header-deco .deco-icon {
        font-size: 1.2rem !important;
    }

    .game-header-deco .deco-star,
    .dressup-header-deco .deco-star {
        font-size: 1.5rem !important;
    }

    /* Instructions Cards Mobile */
    .game-instructions {
        gap: 10px !important;
    }

    .instruction-card {
        padding: 10px 15px !important;
        flex: 1 1 100% !important;
    }

    .instruction-icon {
        font-size: 1.2rem !important;
    }

    .instruction-card p {
        font-size: 0.85rem !important;
    }

    /* Placed Accessories Mobile - easier to drag */
    .placed-accessory {
        touch-action: none !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .memory-game-board {
        gap: 5px !important;
    }

    .memory-card {
        min-height: 50px !important;
    }

    .card-front::before {
        font-size: 18px !important;
    }

    .card-emoji {
        font-size: 2rem !important;
    }

    .stat-box {
        min-width: 70px !important;
        padding: 6px 8px !important;
    }

    .stat-box .stat-icon {
        font-size: 16px !important;
    }

    .stat-value {
        font-size: 14px !important;
    }

    .accessory-category {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }

    .item-preview {
        font-size: 1.5rem !important;
    }

    .dressup-canvas {
        max-height: 40vh !important;
        min-height: 200px !important;
    }

    .win-crown {
        font-size: 40px !important;
    }

    .win-content h3 {
        font-size: 1.2rem !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .memory-card:hover {
        transform: none !important;
    }

    .accessory-item:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .game-btn:hover,
    .canvas-btn:hover,
    .tab-btn:hover {
        transform: none !important;
    }

    /* Add active states instead */
    .memory-card:active {
        transform: scale(0.95) !important;
    }

    .accessory-item:active {
        transform: scale(0.95) !important;
        background: rgba(255, 255, 255, 0.3) !important;
    }

    .game-btn:active,
    .canvas-btn:active,
    .tab-btn:active {
        transform: scale(0.95) !important;
    }

    /* Improve touch targets */
    .accessory-item {
        min-width: 50px !important;
        min-height: 50px !important;
    }

    .tab-btn {
        min-height: 50px !important;
    }
}

/* ============================================
   Mobile Menu Modal - Slide-in Sidebar
   ============================================ */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    -webkit-tap-highlight-color: transparent;
    contain: layout style paint;
}

.mobile-menu-modal.open {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #1a1a2e;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.mobile-menu-modal.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.3);
}

.mobile-menu-crown {
    font-size: 2.2rem;
}

.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.mobile-menu-title span {
    color: #ff6b9d;
}

.mobile-menu-close {
    background: rgba(255, 107, 157, 0.2);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-close:active {
    background: rgba(255, 107, 157, 0.4);
}

.mobile-menu-close i {
    pointer-events: none;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.mobile-menu-nav a .nav-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.mobile-menu-nav a:active,
.mobile-menu-nav a.active {
    background: rgba(255, 107, 157, 0.3);
    color: #ffd700;
}

/* Games section in sidebar */
.mobile-menu-games {
    background: rgba(255, 107, 157, 0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.mobile-menu-games-title {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 5px;
    color: white;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-games-title .icon {
    font-size: 1.4rem;
}

.mobile-menu-games-title .chevron {
    margin-left: auto;
    transition: transform 0.15s ease;
    color: #ff6b9d;
}

.mobile-menu-games.open .mobile-menu-games-title .chevron {
    transform: rotate(180deg);
}

.mobile-menu-games-list {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.mobile-menu-games.open .mobile-menu-games-list {
    display: flex;
}

.mobile-menu-games-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

.mobile-menu-games-list a:active,
.mobile-menu-games-list a.active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.mobile-menu-games-list .game-icon {
    font-size: 1.15rem;
    width: 26px;
    text-align: center;
}

.mobile-menu-footer {
    text-align: center;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid rgba(255, 107, 157, 0.2);
}

.mobile-menu-footer .sparkles {
    font-size: 1.3rem;
    letter-spacing: 8px;
}

/* Language switch in modal */
.mobile-menu-lang {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-lang button {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-lang button:active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-lang button.active {
    background: linear-gradient(135deg, #ff6b9d, #9b59b6);
    border-color: transparent;
}

/* Footer decoration in modal */
.mobile-menu-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.mobile-menu-footer .sparkles {
    font-size: 1rem;
    letter-spacing: 5px;
}

/* ============================================
   Pro Mobile Menu - iOS/Android Optimized
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}
.mobile-menu.is-open {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 107, 157, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}
.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-menu-brand .brand-crown {
    font-size: 1.5rem;
}
.mobile-menu-brand .brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ffd700, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.mobile-menu-close:active {
    background: rgba(255, 107, 157, 0.3);
}
.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 10px 0;
}
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list li {
    margin: 0;
}
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: background 0.15s ease;
}
.mobile-menu-link:active {
    background: rgba(255, 107, 157, 0.2);
}
.mobile-menu-link .link-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}
.mobile-menu-games {
    flex-shrink: 0;
    background: rgba(255, 107, 157, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    max-height: 45%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu-games .games-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-games .games-icon {
    font-size: 1.3rem;
}
.mobile-menu-games .games-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
}
.mobile-menu-games .games-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mobile-menu-games .game-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 6px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: background 0.15s ease;
}
.mobile-menu-games .game-link span:first-child {
    font-size: 1.3rem;
}
.mobile-menu-games .game-link:active {
    background: #ffd700;
    color: #1a1a2e;
}
@media (max-height: 600px) {
    .mobile-menu-games {
        max-height: 40%;
    }
    .mobile-menu-link {
        padding: 12px 20px;
    }
}
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================
   News Home Section - Card Style
   ============================================ */
.news-home-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.news-home-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.news-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* News Card Style */
.news-home-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.news-home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(155, 89, 182, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-home-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
}

.news-home-card:hover::before {
    opacity: 1;
}

/* Card Image */
.news-home-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-home-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-home-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(155, 89, 182, 0.2));
    font-size: 4rem;
}

/* Card Date Badge */
.news-home-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b9d, #9b59b6);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Card Badges */
.news-home-card-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.news-home-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.news-home-badge:hover {
    transform: scale(1.15);
}

.news-home-badge.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.news-home-badge.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bbd);
}

.news-home-badge.gallery {
    background: linear-gradient(135deg, #ffd700, #ffb700);
}

/* Card Content */
.news-home-card-content {
    padding: 20px;
}

.news-home-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-home-card:hover .news-home-card-title {
    color: #ff6b9d;
}

.news-home-card-excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-home-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b9d;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-home-read-more i {
    transition: transform 0.3s ease;
}

.news-home-card:hover .news-home-read-more {
    color: #ffd700;
}

.news-home-card:hover .news-home-read-more i {
    transform: translateX(5px);
}

/* Ostale Novosti Button - Cool Circle Design */
.news-home-more {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.news-more-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.news-more-btn:hover {
    transform: translateY(-5px);
}

.news-more-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #9b59b6 50%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-more-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.news-more-btn:hover .news-more-circle::before {
    transform: translateX(100%);
}

.news-more-btn:hover .news-more-circle {
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.6);
    transform: scale(1.1);
}

.news-more-circle i {
    font-size: 1.6rem;
    color: white;
    transition: transform 0.3s ease;
}

.news-more-btn:hover .news-more-circle i {
    transform: translateX(5px);
}

.news-more-text {
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.news-more-btn:hover .news-more-text {
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-home-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .news-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-home-card:last-child {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .news-home-section {
        padding: 60px 0;
    }

    .news-home-card-image {
        height: 160px;
    }

    .news-home-card-title {
        font-size: 1rem;
    }

    .news-home-card-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .news-more-circle {
        width: 70px;
        height: 70px;
    }

    .news-more-circle i {
        font-size: 1.4rem;
    }

    .news-more-text {
        font-size: 1rem;
    }
}
