/* CSS Variables - Color Theme - Dark Purple & Pink */
:root {
    /* Primary Colors - Deep Purple */
    --primary-pink: #8B2FC9;
    --primary-pink-dark: #5D1F8A;
    --primary-pink-light: #A855F7;
    --primary-pink-rgb: 139, 47, 201;
    
    /* Accent Colors - Purple Pink Blend */
    --accent-pink: #C026D3;
    --accent-hot-pink: #D946EF;
    --accent-pink-rgb: 192, 38, 211;
    
    /* Secondary - Magenta Pink */
    --secondary-pink: #E879F9;
    --secondary-pink-dark: #A21CAF;
    --secondary-pink-rgb: 232, 121, 249;
    
    /* Highlight - Hot Pink */
    --highlight-pink: #F472B6;
    --highlight-neon: #EC4899;
    --highlight-pink-rgb: 244, 114, 182;
    
    /* Additional Purple Variants */
    --primary-purple: #7C3AED;
    --highlight-orange: #F472B6;
    --highlight-orange-rgb: 244, 114, 182;
    
    /* Black Shades - Darker for Purple Theme */
    --black-pure: #000000;
    --black-rich: #0a0514;
    --black-deep: #150a28;
    --black-soft: #1f0f3d;
    
    /* Gradient Combinations - Purple Pink Theme */
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-pink) 50%, var(--highlight-pink) 100%);
    --gradient-glow: linear-gradient(90deg, var(--primary-pink), var(--accent-pink), var(--highlight-pink));
    --gradient-reverse: linear-gradient(135deg, var(--highlight-pink) 0%, var(--accent-pink) 50%, var(--primary-pink) 100%);
    --gradient-radial: radial-gradient(circle, var(--primary-pink), var(--accent-pink), var(--black-pure));
    
    /* Premium Font Stack */
    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-display: 'Bebas Neue', 'Orbitron', sans-serif;
    --font-body: 'Inter', 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #e0e0e0;
    background-color: var(--black-pure);
    overflow-x: hidden;
    transition: opacity 0.3s ease;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-pure) 0%, var(--black-deep) 50%, var(--black-pure) 100%);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
    animation: transitionSweep 0.6s ease-out;
}

@keyframes transitionSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Fade-in animation for page content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-rich) 0%, var(--black-deep) 50%, var(--black-rich) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
}

.logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoZoomIn 1s ease-out;
}

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

.loader-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(var(--accent-pink-rgb), 0.5));
}

/* Outline Glow that follows logo shape */
.outline-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    z-index: 1;
}

.loader-logo-outline {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    filter: 
        blur(3px) 
        brightness(2) 
        drop-shadow(0 0 20px rgba(var(--accent-pink-rgb), 1))
        drop-shadow(0 0 40px rgba(var(--accent-pink-rgb), 0.8))
        drop-shadow(0 0 60px rgba(var(--accent-pink-rgb), 0.6));
    animation: outlinePulse 2s ease-in-out infinite;
}

@keyframes outlinePulse {
    0%, 100% {
        opacity: 0.6;
        filter: 
            blur(3px) 
            brightness(2) 
            drop-shadow(0 0 20px rgba(var(--accent-pink-rgb), 1))
            drop-shadow(0 0 40px rgba(var(--accent-pink-rgb), 0.8))
            drop-shadow(0 0 60px rgba(var(--accent-pink-rgb), 0.6));
    }
    50% {
        opacity: 0.8;
        filter: 
            blur(4px) 
            brightness(2.5) 
            drop-shadow(0 0 30px rgba(var(--accent-pink-rgb), 1))
            drop-shadow(0 0 60px rgba(var(--accent-pink-rgb), 1))
            drop-shadow(0 0 90px rgba(var(--accent-pink-rgb), 0.8));
    }
}

/* Typewriter text */
.loading-text {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 3rem;
    font-family: 'Courier New', monospace;
    min-height: 40px;
    position: relative;
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.5);
}

.loading-text::after {
    content: '|';
    animation: cursorBlink 0.8s step-end infinite;
    color: var(--accent-pink);
    margin-left: 2px;
}

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

/* Bearing Loader for Other Pages - Enhanced */
.bearing-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(var(--accent-pink-rgb), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(var(--primary-pink-rgb), 0.1) 0%, transparent 35%),
        linear-gradient(180deg, #0a0514 0%, #150a28 50%, #0a0514 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    animation: loaderAutoHide 1.8s ease-out forwards;
    overflow: hidden;
}

.bearing-loader-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 5, 20, 0.7) 0%, transparent 100%);
    z-index: 1;
}

@keyframes loaderAutoHide {
    0% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.bearing-loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.bearing-container {
    position: relative;
    width: 250px;
    height: 250px;
    animation: bearingZoomIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    filter: drop-shadow(0 0 40px rgba(var(--accent-pink-rgb), 0.4));
    z-index: 2;
}

@keyframes bearingZoomIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
        filter: blur(10px);
    }
    70% {
        transform: scale(1.08) rotate(200deg);
        filter: blur(0px);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
    }
}

.bearing-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid transparent;
    border-radius: 50%;
    background: linear-gradient(#0a0514, #0a0514) padding-box,
                linear-gradient(135deg, 
                    var(--accent-pink) 0%, 
                    var(--highlight-pink) 25%,
                    var(--accent-pink) 50%,
                    var(--primary-pink) 75%,
                    var(--accent-pink) 100%) border-box;
    animation: bearingRotate 2s linear infinite, outerGlow 1.5s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(var(--accent-pink-rgb), 0.6),
        inset 0 0 30px rgba(var(--accent-pink-rgb), 0.3),
        0 0 60px rgba(var(--accent-pink-rgb), 0.4);
}

@keyframes outerGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(var(--accent-pink-rgb), 0.6),
            inset 0 0 30px rgba(var(--accent-pink-rgb), 0.3),
            0 0 60px rgba(var(--accent-pink-rgb), 0.4);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(var(--accent-pink-rgb), 0.9),
            inset 0 0 50px rgba(var(--accent-pink-rgb), 0.5),
            0 0 90px rgba(var(--accent-pink-rgb), 0.6);
    }
}

.bearing-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
    border: 8px solid transparent;
    border-radius: 50%;
    background: linear-gradient(#0a0514, #0a0514) padding-box,
                linear-gradient(225deg, 
                    var(--highlight-pink) 0%,
                    var(--accent-pink) 50%,
                    var(--primary-pink) 100%) border-box;
    animation: bearingRotateReverse 1.5s linear infinite, innerGlow 1.2s ease-in-out infinite;
    box-shadow: 
        0 0 25px rgba(var(--accent-pink-rgb), 0.7),
        inset 0 0 25px rgba(var(--accent-pink-rgb), 0.4);
}

@keyframes innerGlow {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(var(--accent-pink-rgb), 0.7),
            inset 0 0 25px rgba(var(--accent-pink-rgb), 0.4);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(var(--accent-pink-rgb), 1),
            inset 0 0 40px rgba(var(--accent-pink-rgb), 0.6);
    }
}

.bearing-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 35%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, 
                var(--highlight-pink) 0%, 
                var(--accent-pink) 50%,
                var(--primary-pink) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(var(--accent-pink-rgb), 1),
        0 0 60px rgba(var(--accent-pink-rgb), 0.7),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: centerPulse 0.6s ease-in-out infinite alternate;
}

.bearing-ball {
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 35% 35%, 
                var(--highlight-pink) 0%,
                var(--accent-pink) 60%,
                var(--primary-pink) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(var(--accent-pink-rgb), 1),
        0 0 40px rgba(var(--accent-pink-rgb), 0.6),
        inset -3px -3px 8px rgba(0, 0, 0, 0.6),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2);
    animation: ballPulse 0.8s ease-in-out infinite alternate;
}

.bearing-ball::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at 50% 50%, 
                rgba(255, 255, 255, 0.8) 0%,
                transparent 70%);
    border-radius: 50%;
}

@keyframes ballPulse {
    0% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(var(--accent-pink-rgb), 1),
            0 0 40px rgba(var(--accent-pink-rgb), 0.6),
            inset -3px -3px 8px rgba(0, 0, 0, 0.6),
            inset 2px 2px 4px rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 
            0 0 25px rgba(var(--accent-pink-rgb), 1),
            0 0 50px rgba(var(--accent-pink-rgb), 0.8),
            inset -3px -3px 8px rgba(0, 0, 0, 0.6),
            inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    }
}

.bearing-ball:nth-child(1) { 
    top: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}
.bearing-ball:nth-child(2) { 
    top: 15%; 
    right: 15%; 
    transform: translate(50%, -50%);
    animation-delay: 0.1s;
}
.bearing-ball:nth-child(3) { 
    top: 50%; 
    right: 0; 
    transform: translate(50%, -50%);
    animation-delay: 0.2s;
}
.bearing-ball:nth-child(4) { 
    bottom: 15%; 
    right: 15%; 
    transform: translate(50%, 50%);
    animation-delay: 0.3s;
}
.bearing-ball:nth-child(5) { 
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, 50%);
    animation-delay: 0.4s;
}
.bearing-ball:nth-child(6) { 
    bottom: 15%; 
    left: 15%; 
    transform: translate(-50%, 50%);
    animation-delay: 0.5s;
}
.bearing-ball:nth-child(7) { 
    top: 50%; 
    left: 0; 
    transform: translate(-50%, -50%);
    animation-delay: 0.6s;
}
.bearing-ball:nth-child(8) { 
    top: 15%; 
    left: 15%; 
    transform: translate(-50%, -50%);
    animation-delay: 0.7s;
}

@keyframes bearingRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes centerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px rgba(var(--accent-pink-rgb), 1),
            0 0 60px rgba(var(--accent-pink-rgb), 0.7),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 
            0 0 40px rgba(var(--accent-pink-rgb), 1),
            0 0 80px rgba(var(--accent-pink-rgb), 0.9),
            inset 0 0 25px rgba(255, 255, 255, 0.4);
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--accent-pink);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Navigation Bar - Enhanced */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(var(--accent-pink-rgb), 0.3);
    backdrop-filter: blur(10px);
}

.home-page header {
    background-color: transparent;
    box-shadow: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Glass Rectangle Background - Enhanced */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(var(--accent-pink-rgb), 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5),
                0 0 20px rgba(var(--accent-pink-rgb), 0.1);
    z-index: -1;
    margin-left: calc(-50vw + 50%);
    transition: all 0.3s ease;
}

header.scrolled .navbar::before {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(var(--accent-pink-rgb), 0.4);
}

.logo {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, var(--black-pure) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(var(--accent-pink-rgb), 0.8),
        0 0 20px rgba(var(--accent-pink-rgb), 0.6),
        0 0 30px rgba(var(--accent-pink-rgb), 0.4),
        0 0 40px rgba(var(--accent-pink-rgb), 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(var(--accent-pink-rgb), 0.8),
            0 0 20px rgba(var(--accent-pink-rgb), 0.6),
            0 0 30px rgba(var(--accent-pink-rgb), 0.4),
            0 0 40px rgba(var(--accent-pink-rgb), 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(var(--accent-pink-rgb), 1),
            0 0 30px rgba(var(--accent-pink-rgb), 0.8),
            0 0 40px rgba(var(--accent-pink-rgb), 0.6),
            0 0 50px rgba(var(--accent-pink-rgb), 0.5),
            0 0 60px rgba(var(--accent-pink-rgb), 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Video Stats Overlay */
.video-stats {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 10;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.video-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.video-stat-wrapper {
    display: flex;
    align-items: center;
    line-height: 1;
}

.video-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.6);
    line-height: 1;
}

.video-stat-plus {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.6);
    line-height: 1;
}

.video-stat-label {
    font-size: 0.85rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
}

.subtitle {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 30px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 50px rgba(255, 255, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Custom Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

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

::-moz-selection {
    background: var(--accent-pink);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black-rich);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-pink), var(--highlight-pink));
    border-radius: 6px;
    border: 2px solid var(--black-rich);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--highlight-pink), var(--accent-pink));
    box-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.5);
}

/* Intro Section - Replaced with Impact Section */
.impact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-pink);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-pink);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-pink-rgb), 0.2), transparent);
    transition: left 0.6s ease;
}

.section-tag:hover::before {
    left: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-pink-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.impact-card {
    background: linear-gradient(135deg, rgba(var(--primary-pink-rgb), 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(var(--primary-pink-rgb), 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(var(--primary-pink-rgb), 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(var(--primary-pink-rgb), 0.2),
        inset 0 0 30px rgba(var(--primary-pink-rgb), 0.05);
}

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

.impact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(var(--primary-pink-rgb), 0.3);
}

.impact-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #000;
    border-radius: 50%;
}

.impact-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-pink);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 5px rgba(var(--primary-pink-rgb), 0.5));
}

.impact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.impact-card p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Innovation Section */
.innovation-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.innovation-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.innovation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.innovation-item:last-child {
    margin-bottom: 0;
}

.innovation-item.reverse {
    direction: rtl;
}

.innovation-item.reverse > * {
    direction: ltr;
}

.innovation-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.innovation-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-pink-rgb), 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.innovation-item:hover .innovation-visual::before {
    opacity: 1;
}

.innovation-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.innovation-item:hover .innovation-visual img {
    transform: scale(1.05);
}

.innovation-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 2;
    line-height: 1;
    text-shadow: 0 0 30px rgba(var(--primary-pink-rgb), 0.3);
}

.innovation-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff, var(--primary-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovation-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.innovation-features {
    list-style: none;
    padding: 0;
}

.innovation-features li {
    font-size: 1rem;
    color: #888;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-left: 2px solid rgba(var(--primary-pink-rgb), 0.2);
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.innovation-features li::before {
    content: '▸';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-pink);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.innovation-features li:hover {
    color: #ffffff;
    border-color: var(--primary-pink);
    padding-left: 2.5rem;
}

.innovation-features li:hover::before {
    transform: translateX(5px);
}

/* Journey/Competition Section */
.journey-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

.competition-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.competition-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    opacity: 0.3;
    transform: translateY(-50%);
}

/* Journey/Competition Section - Homepage Only */
.journey-section .timeline-item {
    text-align: center;
    position: relative;
}

.journey-section .timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-pink);
    border: 4px solid #000;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 0 0 4px rgba(var(--primary-pink-rgb), 0.2),
        0 0 20px rgba(var(--primary-pink-rgb), 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 4px rgba(var(--primary-pink-rgb), 0.2),
            0 0 20px rgba(var(--primary-pink-rgb), 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 0 8px rgba(var(--primary-pink-rgb), 0.1),
            0 0 30px rgba(var(--primary-pink-rgb), 0.6);
    }
}

.journey-section .timeline-content {
    background: linear-gradient(135deg, rgba(var(--primary-pink-rgb), 0.05), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(var(--primary-pink-rgb), 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
}

.journey-section .timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(var(--primary-pink-rgb), 0.2);
}

.journey-section .timeline-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.journey-section .timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.journey-section .timeline-content p {
    font-size: 0.95rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-pink-rgb), 0.1) 0%, #000000 50%, rgba(var(--primary-pink-rgb), 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-pink-rgb), 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

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

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff, var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.cta-button {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(var(--primary-pink-rgb), 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--primary-pink-rgb), 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.cta-button.secondary:hover {
    background: rgba(var(--primary-pink-rgb), 0.1);
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    transform: translateY(-3px);
}

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

/* Intro Section */
.intro {
    padding: 2rem 0 3rem;
    background-color: #000000;
}

.intro h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(var(--accent-pink-rgb), 0.5),
        0 0 20px rgba(var(--accent-pink-rgb), 0.3),
        0 0 30px rgba(var(--accent-pink-rgb), 0.2);
}

.intro p {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #c5c5c5;
    line-height: 1.8;
}

/* Mission Section - Enhanced and Optimized */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    opacity: 0.3;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    opacity: 0.3;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(135deg, #ffffff, var(--primary-pink), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 2rem;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), var(--accent-pink), var(--primary-pink), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(var(--primary-pink-rgb), 0.8);
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.mission-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.mission-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.mission-item .mission-image {
    order: 1;
}

.mission-item .mission-content {
    order: 2;
}

.mission-item.reverse .mission-image {
    order: 2;
}

.mission-item.reverse .mission-content {
    order: 1;
}

.mission-image {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(var(--primary-pink-rgb), 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(var(--primary-pink-rgb), 0.3) 0%, 
        transparent 50%, 
        rgba(var(--accent-pink-rgb), 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.mission-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.mission-item:hover .mission-image {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(var(--primary-pink-rgb), 0.3),
        0 0 100px rgba(var(--accent-pink-rgb), 0.2);
}

.mission-item:hover .mission-image::before {
    opacity: 1;
}

.mission-item:hover .mission-image::after {
    opacity: 0.6;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 1;
}

.mission-item:hover .mission-image img {
    transform: scale(1.08);
}

.mission-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    padding-left: 1.5rem;
}

.mission-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-pink), var(--accent-pink));
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(var(--primary-pink-rgb), 0.6);
}

.mission-content p {
    font-size: 1.25rem;
    color: #b8b8b8;
    line-height: 2;
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
}

/* Responsive Mission Section */
@media (max-width: 1024px) {
    .mission-title {
        font-size: 3rem;
    }
    
    .mission-item {
        gap: 3rem;
    }
    
    .mission-content h3 {
        font-size: 2rem;
    }
    
    .mission-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 4rem 0;
    }
    
    .mission-grid {
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .mission-item,
    .mission-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-item .mission-image,
    .mission-item .mission-content,
    .mission-item.reverse .mission-image,
    .mission-item.reverse .mission-content {
        order: initial;
    }
    
    .mission-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .mission-content {
        padding: 1.5rem;
    }
    
    .mission-content h3 {
        font-size: 1.8rem;
    }
    
    .mission-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .mission-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-content h3 {
        font-size: 1.5rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .mission-image img {
        height: 250px;
    }
    
    .mission-item:nth-child(odd) .mission-content::before {
        font-size: 5rem;
        top: -20px;
        right: 10px;
    }
    
    .video-stats {
        bottom: 1rem;
        left: 1rem;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .video-stat-number,
    .video-stat-plus {
        font-size: 2rem;
    }
    
    .video-stat-label {
        font-size: 0.65rem;
    }
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background-color: #000000;
    overflow: hidden;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), var(--highlight-pink), var(--accent-pink), transparent);
    box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.9);
    animation: glowPulse 2s ease-in-out infinite;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.team-text {
    padding-top: 0;
}

.team-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(var(--accent-pink-rgb), 0.5),
        0 0 20px rgba(var(--accent-pink-rgb), 0.3),
        0 0 30px rgba(var(--accent-pink-rgb), 0.2);
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 
            0 0 10px rgba(var(--accent-pink-rgb), 0.5),
            0 0 20px rgba(var(--accent-pink-rgb), 0.3),
            0 0 30px rgba(var(--accent-pink-rgb), 0.2);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 
            0 0 20px rgba(var(--accent-pink-rgb), 0.8),
            0 0 30px rgba(var(--accent-pink-rgb), 0.6),
            0 0 40px rgba(var(--accent-pink-rgb), 0.4),
            0 0 50px rgba(var(--accent-pink-rgb), 0.3);
    }
}

.team-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

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

.team-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.team-point:nth-child(1) {
    animation-delay: 0.2s;
}

.team-point:nth-child(2) {
    animation-delay: 0.4s;
}

.team-point:nth-child(3) {
    animation-delay: 0.6s;
}

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

.team-point:hover {
    transform: translateX(15px);
}

.team-point:hover .check-icon {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.8);
    animation: iconPulse 2s ease-in-out infinite, iconSpinFast 1s linear infinite;
}

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

.check-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--highlight-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(var(--accent-pink-rgb), 0.4);
    animation: iconPulse 2s ease-in-out infinite, iconSpin 4s linear infinite;
}

.check-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
}

.check-icon svg circle:last-of-type {
    fill: #ffffff;
}

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

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(var(--accent-pink-rgb), 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(var(--accent-pink-rgb), 0.6);
    }
}

.team-point p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin: 0;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(var(--accent-pink-rgb), 0.4),
        0 0 40px rgba(var(--accent-pink-rgb), 0.2);
    transition: all 0.5s ease;
    animation: imageFloat 4s ease-in-out infinite;
    position: relative;
    margin-top: 3rem;
}

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

@keyframes lineSlide {
    0% {
        left: -50%;
        opacity: 0;
        transform: scaleX(0.8);
    }
    5% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
    95% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scaleX(0.8);
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.5);
    }
}

@keyframes lineSlideOrange {
    0% {
        left: -50%;
        opacity: 0;
        transform: scaleX(0.8);
    }
    5% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
    95% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scaleX(0.8);
    }
}

.team-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 30px 80px rgba(var(--accent-pink-rgb), 0.6),
        0 0 60px rgba(var(--accent-pink-rgb), 0.4);
}

.team-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(var(--accent-pink-rgb), 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

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

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-text h2 {
        font-size: 2rem;
    }
}

/* Subsystems Section */
.subsystems-section {
    padding: 3rem 0;
    background-color: #000000;
    position: relative;
}

.subsystems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), var(--highlight-pink), var(--accent-pink), transparent);
    box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.9);
    animation: glowPulse 2s ease-in-out infinite;
}

.subsystems-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(var(--accent-pink-rgb), 0.5),
        0 0 20px rgba(var(--accent-pink-rgb), 0.3),
        0 0 30px rgba(var(--accent-pink-rgb), 0.2);
}

.subsystems-description {
    font-size: 1.1rem;
    text-align: center;
    color: #b0b0b0;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.subsystems-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    max-width: 1400px;
    margin: 0 auto 3rem;
    height: 450px;
    padding: 0 2rem;
}

.subsystem-card {
    position: absolute;
    width: 350px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.subsystem-card:nth-child(1) {
    left: 2%;
    z-index: 4;
    transform: translateY(0);
}

.subsystem-card:nth-child(2) {
    left: 24%;
    transform: translateY(50px);
    z-index: 3;
}

.subsystem-card:nth-child(3) {
    right: 28%;
    transform: translateY(100px);
    z-index: 2;
}

.subsystem-card:nth-child(4) {
    right: 2%;
    transform: translateY(150px);
    z-index: 1;
}

.subsystem-card:hover {
    transform: translateY(-20px) scale(1.08) rotate(-2deg);
    z-index: 10;
    box-shadow: 0 25px 80px rgba(var(--accent-pink-rgb), 0.7);
}

.subsystem-card:nth-child(2):hover {
    transform: translateY(30px) scale(1.08) rotate(2deg);
}

.subsystem-card:nth-child(3):hover {
    transform: translateY(80px) scale(1.08) rotate(-2deg);
}

.subsystem-card:nth-child(4):hover {
    transform: translateY(130px) scale(1.08) rotate(2deg);
}

.subsystem-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.subsystem-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

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

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

.subsystem-card h3 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.subsystems-button {
    text-align: center;
    margin-top: 3rem;
}

.know-more-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--highlight-pink));
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: lowercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(var(--accent-pink-rgb), 0.4);
    position: relative;
    overflow: hidden;
}

.know-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--highlight-pink), var(--accent-pink));
    transition: left 0.4s ease;
    z-index: -1;
}

.know-more-btn:hover::before {
    left: 0;
}

.know-more-btn:hover {
    box-shadow: 0 10px 40px rgba(var(--accent-pink-rgb), 0.6);
    transform: translateY(-3px) scale(1.05);
}

/* Responsive Subsystems Section */
@media (max-width: 768px) {
    .subsystems-grid {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .subsystem-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
    
    .subsystem-card:nth-child(1),
    .subsystem-card:nth-child(2),
    .subsystem-card:nth-child(3),
    .subsystem-card:nth-child(4) {
        position: relative !important;
        transform: none !important;
        z-index: auto;
    }
    
    .subsystem-card:hover {
        transform: scale(1.05) !important;
    }
    
    .subsystems-title {
        font-size: 2rem;
    }
}

/* Team Page Hero Section */
.team-hero {
    position: relative;
    height: 500px;
    margin-top: 70px;
    overflow: hidden;
}

.team-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.team-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.team-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.8) 70%, var(--black-pure) 100%);
    z-index: 3;
    pointer-events: none;
}

.team-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.team-hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.6),
                 0 4px 10px rgba(0, 0, 0, 0.8);
}

.team-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* About Team Section */
.about-team-section {
    background-color: #000000;
    padding: 4rem 0;
}

.about-team-section .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(var(--accent-pink-rgb), 0.5),
        0 0 20px rgba(var(--accent-pink-rgb), 0.3),
        0 0 30px rgba(var(--accent-pink-rgb), 0.2);
}

.about-team-text {
    font-size: 1.25rem;
    line-height: 2;
    color: #c0c0c0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Centered Section Title */
.section-title-center {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(var(--accent-pink-rgb), 0.4))
            drop-shadow(0 0 40px rgba(var(--primary-purple-rgb), 0.3));
    display: inline-block;
    width: 100%;
}

.section-title-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-glow);
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gradient-glow);
    animation: underlineExpand 2s ease-in-out infinite;
}

/* Core Team Section */
.core-team-section {
    background-color: #000000;
    padding: 4rem 0;
    border-top: 3px solid rgba(var(--accent-pink-rgb), 0.3);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.core-team-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -50%;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 47, 201, 0.4) 20%,
        var(--accent-pink) 50%, 
        var(--highlight-pink) 80%,
        transparent 100%);
    box-shadow: 
        0 0 15px var(--accent-pink),
        0 0 30px var(--accent-pink),
        0 0 45px rgba(var(--accent-pink-rgb), 0.6),
        0 0 60px rgba(var(--highlight-pink-rgb), 0.4);
    animation: lineSlide 2.5s ease-in-out infinite;
    z-index: 10;
    filter: blur(0.5px);
}

.core-team-section::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(var(--accent-pink-rgb), 0) 0%,
        rgba(var(--accent-pink-rgb), 0.2) 25%,
        rgba(var(--accent-pink-rgb), 0.4) 50%,
        rgba(var(--accent-pink-rgb), 0.2) 75%,
        rgba(var(--accent-pink-rgb), 0) 100%);
    animation: linePulse 3s ease-in-out infinite;
    z-index: 9;
}

.core-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), var(--highlight-orange), var(--accent-pink), transparent);
    animation: speedSweep 3s linear infinite;
}

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

.core-team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    }

    @media (max-width: 900px) {
        .core-team-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        .core-team-grid .team-card {
            grid-column: auto !important;
        }
    }

    @media (max-width: 600px) {
        .core-team-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .core-team-grid .team-card {
            grid-column: auto !important;
        }
}

/* Row 1: First 3 cards - span 2 columns each */
.core-team-grid .team-card:nth-child(1) {
    grid-column: 1 / 3;
}

.core-team-grid .team-card:nth-child(2) {
    grid-column: 3 / 5;
}

.core-team-grid .team-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Row 2: Cards 4-5 - offset to create symmetric spacing */
.core-team-grid .team-card:nth-child(4) {
    grid-column: 2 / 4;
}

.core-team-grid .team-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* Row 3: Cards 6-8 - span 2 columns each like row 1 */
.core-team-grid .team-card:nth-child(6) {
    grid-column: 1 / 3;
}

.core-team-grid .team-card:nth-child(7) {
    grid-column: 3 / 5;
}

.core-team-grid .team-card:nth-child(8) {
    grid-column: 5 / 7;
}

/* Row 4: Cards 9-10 - offset to create symmetric spacing */
.core-team-grid .team-card:nth-child(9) {
    grid-column: 2 / 4;
}

.core-team-grid .team-card:nth-child(10) {
    grid-column: 4 / 6;
}

.team-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(var(--accent-pink-rgb), 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card:hover::before {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(var(--accent-pink-rgb), 0.9);
    box-shadow: 0 20px 50px rgba(var(--accent-pink-rgb), 0.4),
                0 0 30px rgba(var(--accent-pink-rgb), 0.2);
}

.team-card-image {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #0a0a0a;
    position: relative;
    box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.4),
                0 0 60px rgba(var(--accent-pink-rgb), 0.2),
                inset 0 0 20px rgba(var(--accent-pink-rgb), 0.1);
    transition: all 0.4s ease;
}

.team-card:hover .team-card-image {
    box-shadow: 0 0 40px rgba(var(--accent-pink-rgb), 0.6),
                0 0 80px rgba(var(--accent-pink-rgb), 0.3),
                inset 0 0 30px rgba(var(--accent-pink-rgb), 0.2);
}

.team-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-pink-rgb), 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.team-card:hover .team-card-image::before {
    left: 100%;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.team-card:hover .member-name {
    color: var(--accent-pink);
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.5);
}

.member-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.team-card:hover .member-role {
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(var(--accent-pink-rgb), 0.7);
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-pink-rgb), 0.2);
    border-radius: 50%;
    color: var(--accent-pink);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(var(--accent-pink-rgb), 0.5);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-icon:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--highlight-orange));
    color: #ffffff;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 5px 15px rgba(var(--accent-pink-rgb), 0.5);
}

/* Managers Section */
.managers-section {
    background-color: #000000;
    padding: 4rem 0;
    border-top: 3px solid rgba(var(--accent-pink-rgb), 0.3);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.managers-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -50%;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(var(--primary-pink-rgb), 0.4) 20%,
        var(--highlight-pink) 50%, 
        var(--accent-pink) 80%,
        transparent 100%);
    box-shadow: 
        0 0 15px var(--highlight-pink),
        0 0 30px var(--highlight-pink),
        0 0 45px rgba(var(--highlight-pink-rgb), 0.6),
        0 0 60px rgba(var(--accent-pink-rgb), 0.4);
    animation: lineSlideOrange 2.5s ease-in-out infinite;
    z-index: 10;
    filter: blur(0.5px);
}

.managers-section::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(var(--highlight-pink-rgb), 0) 0%,
        rgba(var(--highlight-pink-rgb), 0.2) 25%,
        rgba(var(--highlight-pink-rgb), 0.4) 50%,
        rgba(var(--highlight-pink-rgb), 0.2) 75%,
        rgba(var(--highlight-pink-rgb), 0) 100%);
    animation: linePulse 3s ease-in-out infinite;
    z-index: 9;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Center last card if it's alone in a row */
.managers-grid .team-card:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

/* Design Engineers Section */
.design-engineers-section {
    background-color: #000000;
    padding: 4rem 0;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design for Team Sections */
@media (max-width: 900px) {
    .core-team-grid,
    .managers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .core-team-grid,
    .managers-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .core-team-grid .team-card,
    .managers-grid .team-card {
        grid-column: auto !important;
        max-width: 100%;
        width: 100%;
    }
    
    .section-title-center {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .core-team-grid,
    .managers-grid {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    border-bottom: 2px solid var(--accent-pink);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.5);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Content Section */
.content {
    padding: 4rem 0;
    min-height: 400px;
    background-color: #000000;
}

.content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    color: #666;
}

/* Audio Section */
.audio-section {
    background: #000000;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.6s ease;
}

/* Background image when playing */
.audio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/sound.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    filter: brightness(0.4);
}

.audio-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

/* Show background when playing */
.audio-section.playing::before {
    opacity: 1;
    animation: zoomPulse 3s ease-in-out infinite;
}

.audio-section.playing::after {
    opacity: 1;
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(0.4);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(0.5);
    }
}

.audio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.audio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.5),
                 0 0 40px rgba(var(--primary-purple-rgb), 0.3);
    margin: 0;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.play-button {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.4),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--accent-pink) 0deg,
        var(--highlight-orange) 90deg,
        var(--accent-pink) 180deg,
        var(--highlight-orange) 270deg,
        var(--accent-pink) 360deg
    );
    z-index: -1;
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button:hover::before {
    opacity: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

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

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(var(--accent-pink-rgb), 0.6),
                inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button.playing {
    animation: playingAnimation 1s ease-in-out infinite;
}

@keyframes playingAnimation {
    0%, 100% {
        box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.4),
                    inset 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(var(--accent-pink-rgb), 0.8),
                    inset 0 0 30px rgba(0, 0, 0, 0.5);
    }
}

.play-icon,
.pause-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 1;
    transition: transform 0.2s ease;
}

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

/* Crazy Racing Animations when Playing */
.play-button {
    overflow: visible;
}

.play-button.playing {
    animation: playingPulse 0.6s ease-in-out infinite !important;
}

@keyframes playingPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.4),
                    inset 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 80px rgba(var(--accent-pink-rgb), 1),
                    0 0 120px rgba(var(--accent-pink-rgb), 0.6),
                    0 0 160px rgba(var(--accent-pink-rgb), 0.4),
                    inset 0 0 30px rgba(0, 0, 0, 0.5);
    }
}

/* Racing Particles - Speed Lines */
.racing-particle {
    position: absolute;
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-pink) 0%, var(--highlight-orange) 50%, transparent 100%);
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
}

.play-button.playing .racing-particle {
    animation: particleBurst 0.8s ease-out infinite;
}

.particle-1 {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s !important;
}

.particle-2 {
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 0.1s !important;
}

.particle-3 {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 0.2s !important;
}

.particle-4 {
    top: 50%;
    left: -25px;
    transform: translateY(-50%) rotate(270deg);
    animation-delay: 0.3s !important;
}

.particle-5 {
    top: 5%;
    right: 5%;
    transform: rotate(45deg);
    animation-delay: 0.15s !important;
}

.particle-6 {
    bottom: 5%;
    right: 5%;
    transform: rotate(135deg);
    animation-delay: 0.25s !important;
}

.particle-7 {
    bottom: 5%;
    left: 5%;
    transform: rotate(225deg);
    animation-delay: 0.35s !important;
}

.particle-8 {
    top: 5%;
    left: 5%;
    transform: rotate(315deg);
    animation-delay: 0.05s !important;
}

@keyframes particleBurst {
    0% {
        opacity: 0;
        transform: scale(1) translateY(0);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.5) translateY(-100px);
    }
}

/* Speed Rings - Expanding Circles */
.speed-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 3px solid var(--accent-pink);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.6);
}

.play-button.playing .speed-ring {
    animation: ringExpand 1.5s ease-out infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s !important;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s !important;
}

.ring-3 {
    width: 120px;
    height: 120px;
    animation-delay: 1s !important;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        border-width: 3px;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
        border-width: 0px;
    }
}

/* Sparks - Racing Sparks */
.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--highlight-orange);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 10px var(--accent-pink), 0 0 20px var(--accent-pink), 0 0 30px var(--highlight-orange);
}

.play-button.playing .spark {
    animation: sparkFly 1.2s ease-out infinite;
}

.spark-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s !important;
    --spark-x: -180px;
    --spark-y: -180px;
}

.spark-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.3s !important;
    --spark-x: 180px;
    --spark-y: -180px;
}

.spark-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.6s !important;
    --spark-x: 180px;
    --spark-y: 180px;
}

.spark-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.9s !important;
    --spark-x: -180px;
    --spark-y: 180px;
}

@keyframes sparkFly {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(var(--spark-x), var(--spark-y)) scale(0);
    }
}

/* Responsive for Audio Section */
@media (max-width: 768px) {
    .audio-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .play-icon,
    .pause-icon {
        width: 32px;
        height: 32px;
    }
}

/* Sponsors Slider */
.sponsors-slider {
    background: linear-gradient(90deg, 
                rgba(var(--accent-pink-rgb), 0.03) 0%, 
                rgba(var(--highlight-pink-rgb), 0.05) 50%, 
                rgba(var(--accent-pink-rgb), 0.03) 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-glow) 1;
}

.sponsors-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-pink-rgb), 0.1), transparent);
    animation: sponsorShine 8s ease-in-out infinite;
}

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

.sponsors-track {
    display: flex;
    gap: 5rem;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
}

.sponsor-slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.2), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.sponsor-slide:hover::before {
    width: 150%;
    height: 150%;
}

.sponsor-slide img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.sponsor-slide img:hover {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
    opacity: 1;
}

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

/* Sponsorship Deck Section */
.sponsorship-deck-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
                rgba(var(--black-rich), 1) 0%, 
                rgba(var(--black-deep), 1) 50%, 
                rgba(var(--black-rich), 1) 100%);
    position: relative;
    overflow: hidden;
}

.sponsorship-deck-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
                rgba(var(--accent-pink-rgb), 0.08) 0%, 
                transparent 60%);
    pointer-events: none;
}

.sponsorship-deck-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.sponsorship-deck-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-pink), var(--highlight-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.sponsorship-deck-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.pdf-viewer-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(var(--black-soft), 0.6);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(var(--accent-pink-rgb), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.pdf-viewer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                var(--accent-pink) 50%, 
                transparent 100%);
    opacity: 0.5;
}

.pdf-embed {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 12px;
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

.pdf-fallback {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.pdf-fallback a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-fallback a:hover {
    color: var(--highlight-pink);
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.5);
}

/* Responsive PDF Viewer */
@media (max-width: 1024px) {
    .pdf-embed {
        height: 700px;
    }
    
    .sponsorship-deck-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .pdf-viewer-container {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .pdf-embed {
        height: 600px;
    }
    
    .sponsorship-deck-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .sponsorship-deck-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pdf-embed {
        height: 500px;
    }
    
    .sponsorship-deck-section {
        padding: 3rem 0;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--black-rich) 0%, var(--black-deep) 50%, var(--black-pure) 100%);
    color: #fff;
    padding: 2rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-pink) 20%, 
        var(--highlight-pink) 50%, 
        var(--accent-pink) 80%, 
        transparent 100%);
    animation: footerLineGlow 3s ease-in-out infinite;
}

@keyframes footerLineGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.8), 0 0 50px rgba(var(--accent-pink-rgb), 0.4);
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

/* Brand Section */
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(var(--accent-pink-rgb), 0.3));
}

.footer-brand .footer-logo h3 {
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-brand .footer-logo h3::after {
    display: none;
}

.footer-description {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-style: italic;
    margin-top: 1rem;
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.3);
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    transform: translateX(5px);
}

/* Connect Section */
.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--accent-pink-rgb), 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(var(--accent-pink-rgb), 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(var(--accent-pink-rgb), 0.4);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-pink);
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-pink);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-pink);
}

.footer-bottom-links .separator {
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

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

    .subtitle {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .intro h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

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

    .footer-brand .footer-logo h3 {
        font-size: 1.2rem;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Partners Page Styles */
.partners-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../media/sponsor.JPG') center 60%/cover no-repeat;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.partners-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.partners-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.85) 75%, 
        #000000 100%);
    z-index: 2;
}

.partners-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.partners-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.6),
                 0 4px 10px rgba(0, 0, 0, 0.8);
    animation: heroTitleSlide 0.8s ease-out;
    position: relative;
}

.partners-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

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

.partners-hero-content p {
    font-size: 1.8rem;
    color: #e0e0e0;
    letter-spacing: 2px;
    animation: heroSubtitleSlide 0.8s ease-out 0.2s both;
}

@keyframes heroSubtitleSlide {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Partners Content Section */
.partners-content {
    background-color: #000000;
    padding: 2rem 0 5rem;
}

.partners-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.partners-logo {
    width: 350px;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite;
    margin-top: -4rem;
}

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

.partners-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partners-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: center;
}

.partners-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(var(--accent-pink-rgb), 0.3),
                0 8px 25px rgba(var(--primary-purple-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(var(--accent-pink-rgb), 0.5),
                0 15px 45px rgba(var(--primary-purple-rgb), 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-pink-rgb), 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-secondary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(var(--accent-pink-rgb), 0.5),
                0 15px 45px rgba(var(--primary-purple-rgb), 0.3);
    transform: translateY(-3px);
}

/* Impact & Testimonials Section - Compact Horizontal Layout */
.impact-testimonials {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.impact-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: transparent;
    background: linear-gradient(135deg, #fff 0%, var(--primary-pink) 50%, var(--accent-pink) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
}

/* Testimonials Grid - 3 Columns */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Testimonial Card - Compact Design */
.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 0, 110, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 
        0 10px 30px rgba(255, 0, 110, 0.2),
        0 5px 15px rgba(255, 46, 156, 0.15);
}

/* Quote Mark */
.quote-mark {
    font-size: 2.5rem;
    font-family: Georgia, serif;
    color: var(--primary-pink);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Testimonial Quote Text */
.testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: auto;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Testimonial Author Section */
.testimonial-author {
    border-top: 1px solid rgba(255, 0, 110, 0.15);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Author Name with Font Effects */
.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(90deg, var(--primary-pink) 0%, var(--accent-pink) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    letter-spacing: 0.05em;
    animation: nameGlow 3s ease-in-out infinite;
}

@keyframes nameGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.author-role {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.author-achievement {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-pink);
    letter-spacing: 0.03em;
}

/* Faculty Card Special Styling */
.faculty-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-color: rgba(255, 0, 110, 0.25);
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 1.3rem;
        min-height: 300px;
    }

    .testimonial-quote {
        font-size: 0.85rem;
    }

    .author-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .impact-testimonials {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        min-height: auto;
        padding: 1.2rem;
    }

    .quote-mark {
        font-size: 2rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Partners Page */
@media (max-width: 768px) {
    .partners-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .partners-hero-content p {
        font-size: 1.2rem;
    }
    
    .partners-logo {
        width: 180px;
    }
    
    .partners-text p {
        font-size: 1rem;
    }
    
    .partners-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* About Us Page Styles */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../media/about us.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.6),
                 0 4px 10px rgba(0, 0, 0, 0.8);
    animation: heroTitleSlide 0.8s ease-out;
}

.about-hero-content p {
    font-size: 1.5rem;
    color: #e0e0e0;
    letter-spacing: 2px;
    animation: heroSubtitleSlide 0.8s ease-out 0.2s both;
}

/* About Content Section */
.about-content {
    background-color: #000000;
    padding: 5rem 0;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.about-logo-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(var(--accent-pink-rgb), 0.5));
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.racing-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.3) 0%, transparent 70%);
    animation: pulseRing 2s ease-out infinite;
}

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

.about-text-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.4);
    position: relative;
    display: inline-block;
}

.about-text-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), transparent);
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.mission-box {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(var(--accent-pink-rgb), 0.1) 0%, rgba(var(--accent-pink-rgb), 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-pink);
    box-shadow: 0 10px 30px rgba(var(--accent-pink-rgb), 0.2);
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(var(--accent-pink-rgb), 0.3);
}

.mission-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-pink);
    width: 3rem;
    height: 3rem;
}

.mission-icon svg {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(0 0 10px rgba(var(--accent-pink-rgb), 0.5));
    animation: tireRotate 2s linear infinite;
    transform-origin: 50% 50%;
}

@keyframes tireRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.mission-content h3 {
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(var(--accent-pink-rgb), 0.3);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-pink-rgb), 0.2), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--accent-pink-rgb), 0.8);
    box-shadow: 0 15px 40px rgba(var(--accent-pink-rgb), 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.5);
    line-height: 1;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.stat-plus {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact & Location Section */
.contact-location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card,
.map-location-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(var(--accent-pink-rgb), 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover,
.map-location-card:hover {
    border-color: rgba(var(--accent-pink-rgb), 0.6);
    box-shadow: 0 10px 30px rgba(var(--accent-pink-rgb), 0.2);
}

.contact-info-card h3,
.map-location-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(var(--accent-pink-rgb), 0.4);
}

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

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-pink-rgb), 0.2);
    border-radius: 10px;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.5);
}

.contact-details p {
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.6;
}

.social-links-about {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(var(--accent-pink-rgb), 0.1);
    border: 2px solid rgba(var(--accent-pink-rgb), 0.3);
    border-radius: 50px;
    color: var(--accent-pink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(var(--accent-pink-rgb), 0.2);
    border-color: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--accent-pink-rgb), 0.3);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(var(--accent-pink-rgb), 0.2);
}

.map-address {
    text-align: center;
    padding: 1rem;
    background: rgba(var(--accent-pink-rgb), 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: #e0e0e0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-location-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links-about {
        flex-direction: column;
    }
    
    .mission-box {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Cars Page Styles */
.cars-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    overflow: hidden;
}

.cars-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(var(--accent-pink-rgb), 0.03) 50px,
            rgba(var(--accent-pink-rgb), 0.03) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(var(--accent-pink-rgb), 0.03) 50px,
            rgba(var(--accent-pink-rgb), 0.03) 51px
        );
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cars-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.cars-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 5rem;
}

.cars-hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 10px;
    text-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.8),
                 0 0 60px rgba(var(--accent-pink-rgb), 0.5);
    animation: tvFlicker 0.8s ease-in-out;
}

@keyframes tvFlicker {
    0% {
        opacity: 0;
        text-shadow: 0 0 100px rgba(var(--accent-pink-rgb), 1);
    }
    10% {
        opacity: 1;
        text-shadow: 0 0 80px rgba(var(--accent-pink-rgb), 1);
    }
    20% {
        opacity: 0.3;
        text-shadow: 0 0 100px rgba(var(--accent-pink-rgb), 0.8);
    }
    30% {
        opacity: 1;
        text-shadow: 0 0 50px rgba(var(--accent-pink-rgb), 0.9);
    }
    40% {
        opacity: 0.5;
        text-shadow: 0 0 120px rgba(var(--accent-pink-rgb), 1);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 60px rgba(var(--accent-pink-rgb), 0.8);
    }
    60% {
        opacity: 0.7;
        text-shadow: 0 0 100px rgba(var(--accent-pink-rgb), 1);
    }
    70% {
        opacity: 1;
        text-shadow: 0 0 40px rgba(var(--accent-pink-rgb), 0.7);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.8),
                     0 0 60px rgba(var(--accent-pink-rgb), 0.5);
    }
}

@keyframes heroGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(var(--accent-pink-rgb), 0.8),
                     0 0 60px rgba(var(--accent-pink-rgb), 0.5);
    }
    50% {
        text-shadow: 0 0 50px rgba(var(--accent-pink-rgb), 1),
                     0 0 100px rgba(var(--accent-pink-rgb), 0.7);
    }
}

.cars-hero-content p {
    font-size: 1.5rem;
    color: #e0e0e0;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

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

.stat-number-wrapper {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.6);
    display: inline-block;
    line-height: 1;
}

.stat-num-plus {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.6);
    display: inline-block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cars Showcase Section */
.cars-showcase {
    background: #000000;
    padding: 5rem 0;
}

.showcase-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.4);
}

.showcase-intro p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.car-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid rgba(var(--accent-pink-rgb), 0.2);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.car-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-pink), var(--highlight-orange), var(--accent-pink));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

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

.car-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(var(--accent-pink-rgb), 0.4);
}

.car-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(var(--accent-pink-rgb), 0.1);
    line-height: 1;
    z-index: 1;
    transition: all 0.5s ease;
}

.car-card:hover .car-number {
    color: rgba(var(--accent-pink-rgb), 0.3);
    transform: scale(1.2);
}

.car-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    perspective: 1000px;
}

.car-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.3) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.car-card:hover .car-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

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

.car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.car-card:hover .car-image {
    transform: rotateY(10deg) rotateX(-5deg) scale(1.1);
    filter: drop-shadow(0 20px 50px rgba(var(--accent-pink-rgb), 0.5));
}

.car-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.car-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.car-card:hover .car-name {
    color: var(--accent-pink);
    text-shadow: 0 0 20px rgba(var(--accent-pink-rgb), 0.6);
}

.car-year {
    font-size: 1rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.car-card:hover .car-year {
    color: #c0c0c0;
}

/* Car Overlay */
.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--accent-pink-rgb), 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

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

.overlay-content {
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.car-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.overlay-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Speed Lines Effect */
.car-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-pink-rgb), 0.8), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.car-card:hover::after {
    left: 100%;
    opacity: 1;
}

/* Responsive Design for Cars Page */
@media (max-width: 768px) {
    .cars-hero-content h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .cars-hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .showcase-intro h2 {
        font-size: 2rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .car-number {
        font-size: 3rem;
    }
    
    .car-name {
        font-size: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
}






/* ================================================
   ACHIEVEMENTS PAGE STYLES - CRAZY ANIMATIONS
   ================================================ */

/* Achievements Hero Section */
/* ========================================
   ACHIEVEMENTS PAGE - COMPLETELY REDESIGNED
   ======================================== */

/* Hero Section */
.achievements-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
    padding: 4rem 2rem;
}

.achievements-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(var(--primary-pink-rgb), 0.02) 50px,
            rgba(var(--primary-pink-rgb), 0.02) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(var(--primary-pink-rgb), 0.02) 50px,
            rgba(var(--primary-pink-rgb), 0.02) 51px
        );
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.achievements-hero .container {
    position: relative;
    z-index: 2;
}

.achievements-hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 10px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff, var(--primary-pink), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(var(--primary-pink-rgb), 0.3);
    position: relative;
    animation: titleFloat 3s ease-in-out infinite;
}

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

.achievements-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: #b0b0b0;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
}

/* Timeline Section */
.achievements-timeline {
    background: #000000;
    padding: 6rem 0;
    position: relative;
    overflow: visible;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(var(--primary-pink-rgb), 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(var(--primary-pink-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Vertical Timeline Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--primary-pink) 5%,
        var(--accent-pink) 50%,
        var(--primary-pink) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(var(--primary-pink-rgb), 0.5);
}

/* Timeline Item - Achievements Page Only */
.achievements-timeline .timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
    padding-left: 2rem;
    padding-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.achievements-timeline .timeline-item:nth-child(1) { animation-delay: 0.2s; }
.achievements-timeline .timeline-item:nth-child(2) { animation-delay: 0.4s; }
.achievements-timeline .timeline-item:nth-child(3) { animation-delay: 0.6s; }
.achievements-timeline .timeline-item:nth-child(4) { animation-delay: 0.8s; }
.achievements-timeline .timeline-item:nth-child(5) { animation-delay: 1s; }

.achievements-timeline .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 50px);
    padding-right: 2rem;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

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

/* Timeline Marker - Achievements Page Only */
.achievements-timeline .timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 10;
}

.achievements-timeline .marker-ring {
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-pink);
    border-radius: 50%;
    background: #000000;
    position: relative;
    box-shadow: 
        0 0 20px rgba(var(--primary-pink-rgb), 0.6),
        inset 0 0 10px rgba(var(--primary-pink-rgb), 0.2);
    animation: markerGlow 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

@keyframes markerGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(var(--primary-pink-rgb), 0.6),
            inset 0 0 10px rgba(var(--primary-pink-rgb), 0.2);
        border-color: var(--primary-pink);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 35px rgba(var(--primary-pink-rgb), 0.9),
            0 0 60px rgba(var(--primary-pink-rgb), 0.5),
            inset 0 0 20px rgba(var(--primary-pink-rgb), 0.4);
        border-color: var(--accent-pink);
        transform: scale(1.1);
    }
}

.achievements-timeline .timeline-item:hover .marker-ring {
    transform: scale(1.2);
    border-width: 4px;
    box-shadow: 
        0 0 40px rgba(var(--primary-pink-rgb), 1),
        0 0 80px rgba(var(--primary-pink-rgb), 0.6),
        inset 0 0 25px rgba(var(--primary-pink-rgb), 0.5);
}

.achievements-timeline .marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(var(--primary-pink-rgb), 0.8);
    transform: translate(-50%, -50%);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(var(--primary-pink-rgb), 0.8);
    }
    50% {
        box-shadow: 0 0 25px rgba(var(--primary-pink-rgb), 1);
    }
}

/* Timeline Content - Achievements Page Only */
.achievements-timeline .timeline-content {
    width: 100%;
    max-width: 550px;
}

.achievements-timeline .timeline-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    letter-spacing: 2px;
}

.achievements-timeline .timeline-year::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(var(--primary-pink-rgb), 0.6);
}

/* Achievement Card */
.achievement-card {
    background: linear-gradient(135deg, rgba(var(--primary-pink-rgb), 0.03) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(var(--primary-pink-rgb), 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s ease-out forwards;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.achievement-card:last-child {
    margin-bottom: 0;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(var(--primary-pink-rgb), 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-pink);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(var(--primary-pink-rgb), 0.4),
        0 0 60px rgba(var(--primary-pink-rgb), 0.2),
        inset 0 0 30px rgba(var(--primary-pink-rgb), 0.08);
}

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

/* Winner Card - Special Styling */
.achievement-card.winner {
    border: 2px solid var(--primary-pink);
    background: linear-gradient(135deg, rgba(var(--primary-pink-rgb), 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.achievement-card.winner:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(var(--primary-pink-rgb), 0.4),
        0 0 60px rgba(var(--primary-pink-rgb), 0.2);
}

.achievement-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-title {
    color: var(--primary-pink);
    transform: translateX(5px);
    letter-spacing: 2px;
}

.achievement-awards {
    position: relative;
    z-index: 1;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary-pink);
    border-radius: 8px;
    font-size: 1rem;
    color: #d0d0d0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.award-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-pink), var(--primary-pink));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-item:last-child {
    margin-bottom: 0;
}

.award-item:hover {
    background: rgba(var(--primary-pink-rgb), 0.15);
    border-left-color: var(--accent-pink);
    color: #ffffff;
    transform: translateX(10px) scale(1.02);
    box-shadow: 
        0 5px 20px rgba(var(--primary-pink-rgb), 0.2),
        inset 0 0 20px rgba(var(--primary-pink-rgb), 0.05);
}

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

.award-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.award-item:hover .award-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
}

.award-item.winner {
    background: linear-gradient(90deg, rgba(var(--primary-pink-rgb), 0.15), rgba(0, 0, 0, 0.4));
    border-left: 4px solid var(--accent-pink);
    font-weight: 600;
    color: #ffffff;
}

.award-item.winner .award-icon {
    font-size: 1.8rem;
    animation: trophyFloatWinner 1.5s ease-in-out infinite;
}

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

/* Highlight Card */
.achievement-card.highlight {
    border-color: rgba(var(--accent-pink-rgb), 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .achievements-hero-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 2rem;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .achievements-hero {
        min-height: 50vh;
        padding: 3rem 1rem;
    }
    
    .achievements-hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .achievements-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .achievements-timeline {
        padding: 4rem 0;
    }
    
    .timeline {
        padding: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 75px;
        padding-right: 1rem;
        padding-bottom: 3rem;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-year {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .achievement-title {
        font-size: 1.3rem;
    }
    
    .achievement-card {
        padding: 1.3rem;
    }
    
    .award-item {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .achievements-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .achievements-hero-subtitle {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 65px;
        padding-right: 0.5rem;
    }
    
    .timeline-marker {
        left: 15px;
        transform: translateX(-50%);
    }
    
    .marker-ring {
        width: 24px !important;
        height: 24px !important;
        border-width: 2px !important;
    }
    
    .marker-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .timeline-year {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .achievement-title {
        font-size: 1.1rem;
    }
    
    .achievement-card {
        padding: 1rem;
    }
    
    .achievement-card.winner::after {
        font-size: 1.3rem;
        top: 8px;
        right: 8px;
    }
    
    .award-item {
        font-size: 0.85rem;
        padding: 0.6rem 0.7rem;
    }
}

/* ======================================== END OF ACHIEVEMENTS PAGE ======================================== */

/* Team Section */
.team-section {

    .timeline-marker {
        left: 20px;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .achievement-title {
        font-size: 1.5rem;
    }

    .award-item {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}

/* Additional Spectacular Effects */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-pink), var(--highlight-orange));
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnimation 1s ease-out forwards;
    z-index: 10;
}

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

/* Enhanced card hover effects */
.achievement-card {
    position: relative;
    overflow: visible;
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-purple),
        var(--accent-pink),
        var(--highlight-orange),
        var(--primary-purple)
    );
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradientRotate 3s ease infinite;
}

.achievement-card:hover::after {
    opacity: 1;
}

.achievement-card.winner::after {
    opacity: 0.3;
}

.achievement-card.winner:hover::after {
    opacity: 1;
}

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

/* Pulsing glow for winner cards only */
.achievement-card.winner:not(.highlight) {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(var(--accent-pink-rgb), 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(var(--accent-pink-rgb), 0.6),
                    0 0 30px rgba(var(--primary-purple-rgb), 0.4);
    }
}

/* Enhanced trophy icon animations */
.award-icon {
    display: inline-block;
    font-size: 1.5em;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: trophyFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.award-item:hover .award-icon {
    transform: scale(1.3) rotate(20deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
            drop-shadow(0 0 25px rgba(var(--accent-pink-rgb), 0.8));
}

@keyframes trophyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

/* Year number animation */
.timeline-year {
    position: relative;
    display: inline-block;
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink), var(--highlight-orange));
    transition: width 0.6s ease;
}

.timeline-item.animate-in .timeline-year::after {
    width: 100%;
}

/* 3D flip effect on cards */
.achievement-card {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.achievement-card:hover {
    transform: rotateY(5deg) translateY(-10px);
}

/* Marker pulse animation enhancement */
.marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(var(--accent-pink-rgb), 0.8) 0%,
        rgba(var(--primary-purple-rgb), 0.4) 50%,
        transparent 100%
    );
    animation: markerPulseGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes markerPulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Particle styling */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleRise 5s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Highlight awards - subtle styling only on hover */
.award-item.highlight {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.award-item.highlight:hover {
    background: linear-gradient(135deg, 
        rgba(var(--primary-purple-rgb), 0.3),
        rgba(var(--accent-pink-rgb), 0.3),
        rgba(var(--highlight-orange-rgb), 0.3)
    );
}

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

/* Winner badge effect */
.award-item.winner {
    position: relative;
    overflow: visible;
}

.award-item.winner::before {
    content: '👑';
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 1.5rem;
    animation: crownFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px gold);
}

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

/* Responsive Styles for New Homepage Sections */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.8rem;
    }

    .innovation-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .innovation-item.reverse {
        direction: ltr;
    }

    .innovation-visual img {
        height: 350px;
    }

    .competition-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .impact-section,
    .innovation-section,
    .journey-section,
    .cta-section {
        padding: 4rem 0;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .impact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .innovation-item {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .innovation-visual img {
        height: 300px;
    }

    .innovation-number {
        font-size: 3rem;
        top: 10px;
        right: 10px;
    }

    .innovation-content h3 {
        font-size: 1.8rem;
    }

    .innovation-content p {
        font-size: 1rem;
    }

    .competition-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .impact-card {
        padding: 2rem 1.5rem;
    }

    .innovation-visual img {
        height: 250px;
    }

    .innovation-content h3 {
        font-size: 1.5rem;
    }

    .timeline-flag {
        font-size: 2.5rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Base Mobile-First Adjustments */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* Container Responsive */
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Navigation Mobile Improvements */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding: 2rem 0;
        border-left: 1px solid rgba(var(--accent-pink-rgb), 0.3);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .logo img {
        height: 45px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
    
    .nav-links {
        width: 250px;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        position: relative;
    }
    
    .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 2rem 1rem;
        margin: 0;
        width: 100%;
        text-align: center;
        z-index: 4;
    }
    
    .main-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1.1rem !important;
    }
    
    .video-stats {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        margin: 0;
        z-index: 5;
        border-top: 1px solid rgba(var(--accent-pink-rgb), 0.3);
    }
    
    .video-stat-item {
        flex: 1 1 45%;
        min-width: 45%;
        padding: 0.5rem;
        text-align: center;
    }
    
    .video-stat-number {
        font-size: 2rem !important;
    }
    
    .video-stat-label {
        font-size: 0.7rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }
    
    .main-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }
    
    .subtitle {
        font-size: 1rem !important;
    }
    
    .video-stat-item {
        flex: 1 1 48%;
        min-width: 48%;
        padding: 0.4rem;
    }
    
    .video-stat-number {
        font-size: 1.8rem !important;
    }
    
    .video-stats {
        gap: 0.3rem;
        padding: 1.2rem 0.5rem;
    }
    
    .video-stat-label {
        font-size: 0.65rem;
    }
}

/* Loading Screen Mobile */
@media (max-width: 768px) {
    .logo-container {
        width: 300px !important;
        height: 300px !important;
    }
    
    .loader-logo {
        max-width: 70% !important;
        max-height: 70% !important;
    }
    
    .loading-text {
        font-size: 1.2rem !important;
        letter-spacing: 2px !important;
        margin-top: 2rem !important;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 250px !important;
        height: 250px !important;
    }
    
    .loading-text {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
}

/* Bearing Loader Mobile */
@media (max-width: 768px) {
    .bearing-container {
        width: 180px !important;
        height: 180px !important;
    }
    
    .bearing-ball {
        width: 18px !important;
        height: 18px !important;
    }
}

@media (max-width: 480px) {
    .bearing-container {
        width: 150px !important;
        height: 150px !important;
    }
    
    .bearing-ball {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Section Headers Mobile */
@media (max-width: 768px) {
    .section-header h2,
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    .section-tag {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .section-header h2,
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
}

/* Impact Cards Mobile */
@media (max-width: 1024px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .impact-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .impact-card {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .impact-card {
        padding: 1.5rem !important;
    }
    
    .impact-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Innovation Section Mobile */
@media (max-width: 1024px) {
    .innovation-grid {
        gap: 3rem !important;
    }
}

@media (max-width: 768px) {
    .innovation-item {
        flex-direction: column !important;
    }
    
    .innovation-visual,
    .innovation-content {
        width: 100% !important;
    }
    
    .innovation-item:nth-child(even) .innovation-visual {
        order: 1 !important;
    }
    
    .innovation-item:nth-child(even) .innovation-content {
        order: 2 !important;
    }
    
    .innovation-visual img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
    }
}

/* Team Page Mobile */
@media (max-width: 1024px) {
    .team-grid,
    .managers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .team-hero {
        height: 50vh !important;
        min-height: 400px !important;
    }
    
    .team-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .team-grid,
    .managers-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .team-card {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .team-hero h1 {
        font-size: 2rem !important;
    }
    
    .team-card {
        padding: 1.5rem !important;
    }
}

/* Partners Page Mobile */
@media (max-width: 768px) {
    .partners-hero {
        height: 50vh !important;
        min-height: 400px !important;
    }
    
    .partners-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .partners-intro {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .partners-logo {
        max-width: 200px !important;
        margin: 0 auto 2rem !important;
    }
    
    .partners-cta {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        text-align: center !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .partners-hero h1 {
        font-size: 2rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
    }
    
    .quote-mark {
        font-size: 3rem !important;
    }
}

/* Achievements Page Mobile */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .achievements-hero {
        height: 50vh !important;
        min-height: 400px !important;
    }
    
    .achievements-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .achievement-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .achievements-hero h1 {
        font-size: 2rem !important;
    }
}

/* Cars Page Mobile */
@media (max-width: 768px) {
    .cars-hero {
        height: 50vh !important;
        min-height: 400px !important;
    }
    
    .cars-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .car-card {
        flex-direction: column !important;
    }
    
    .car-image,
    .car-details {
        width: 100% !important;
    }
    
    .car-specs {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .cars-hero h1 {
        font-size: 2rem !important;
    }
}

/* About Page Mobile */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh !important;
        min-height: 400px !important;
    }
    
    .about-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .timeline-item {
        padding-left: 2rem !important;
    }
    
    .timeline-flag {
        font-size: 2rem !important;
        left: -2.5rem !important;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem !important;
    }
}

/* Footer Mobile */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .footer-brand {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-links ul {
        justify-content: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    .contact-info {
        align-items: center !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 0 0 !important;
    }
    
    .footer-logo img {
        height: 40px !important;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem !important;
    }
    
    .social-icon {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Buttons Mobile */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .cta-button {
        padding: 0.875rem 2rem !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .cta-button {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* Text Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.5rem !important; }
    h4 { font-size: 1.2rem !important; }
    p { font-size: 1rem !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
    p { font-size: 0.95rem !important; }
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent Horizontal Scroll */
section {
    overflow-x: hidden;
}

/* Touch-Friendly Elements */
@media (hover: none) and (pointer: coarse) {
    .nav-links li a,
    .btn-primary,
    .btn-secondary,
    .social-icon,
    .team-card,
    .achievement-card,
    .impact-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links li a {
        padding: 1.2rem 2rem !important;
    }
}

/* Landscape Orientation on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero,
    .team-hero,
    .partners-hero,
    .achievements-hero,
    .cars-hero,
    .about-hero {
        height: 100vh !important;
    }
    
    .video-stats {
        display: none !important;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .main-title {
        font-size: 1.8rem !important;
    }
    
    .section-header h2 {
        font-size: 1.4rem !important;
    }
    
    .nav-links {
        width: 100% !important;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Force Team Sections Visibility - Override JS Intersection Observer */
.core-team-section,
.managers-section,
.design-engineers-section,
.senior-design-engineer-section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Ensure all team sections are visible on mobile */
@media (max-width: 768px) {
    section {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }
    
    .design-engineers-section,
    .core-team-section,
    .managers-section {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}
