/* JetBrains Mono Font Faces */
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-Medium.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-SemiBold.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-Bold.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-Light.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-Thin.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-ExtraLight.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-ExtraBold.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-ThinItalic.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-ExtraLightItalic.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-LightItalic.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/webfonts/JetBrainsMono-Italic.woff2') format('woff2'),
         url('../fonts/ttf/JetBrainsMono-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

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

body {
    font-family: 'JetBrains Mono', 'Inter', monospace, sans-serif;
    line-height: 1.2;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.5px;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
}

/* Splash Screen Styles */
.splash-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

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

.splash-logo {
    position: relative;
    z-index: 10000;
    opacity: 0;
    transform: scale(0.95);
    animation: splashLogoFadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.splash-logo-img {
    width: 300px;
    height: auto;
    max-width: 90vw;
}

/* Splash Wipe Effect */
.splash-wipe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10001;
    animation: splashWipeEffect 0.5s ease forwards;
    animation-delay: 2.5s;
}

@keyframes splashWipeEffect {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes splashLogoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Content */
.main-content {
    opacity: 0;
    animation: splashContentFadeIn 0.6s ease forwards;
    animation-delay: 1.2s;
}

.main-content.content-visible {
    opacity: 1;
}

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

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .splash-loader {
        display: none;
    }

    .main-content {
        opacity: 1;
        animation: none;
    }

    .splash-wipe,
    .splash-logo {
        animation: none;
    }
}

/* Responsive Splash Screen */
@media (max-width: 768px) {
    .splash-logo-img {
        width: 150px;
    }
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 10002;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover .nav-logo-img {
    opacity: 0.8;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 1px;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    opacity: 0.6;
}

.hamburger {
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 10002;
    position: relative;
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hamburger:hover {
    opacity: 0.8;
}

.menu-text {
    display: block;
}

.close-text {
    display: none;
}

.hamburger.active .menu-text {
    display: none;
}

.hamburger.active .close-text {
    display: block;
}

/* Full Screen Overlay Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-menu {
    list-style: none;
    text-align: center;
}

.overlay-menu li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active .overlay-menu li {
    opacity: 1;
    transform: translateY(0);
}

.overlay-menu li:nth-child(1) { transition-delay: 0.1s; }
.overlay-menu li:nth-child(2) { transition-delay: 0.2s; }
.overlay-menu li:nth-child(3) { transition-delay: 0.3s; }
.overlay-menu li:nth-child(4) { transition-delay: 0.4s; }

.overlay-menu a {
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.overlay-menu a:hover {
    color: #013A6F;
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Menu Button Animation */

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .container,
    .nav-container,
    .hero-content {
        max-width: 95vw;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/forBack.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 5px 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1800px;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Weight Animation - JetBrains Style */
.weight-animation {
    margin-bottom: 4rem;
    text-align: center;
}

.weight-text-container {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.weight-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(4rem, 10vw, 10rem);
    color: #fff;
    letter-spacing: -4px;
    display: inline-block;
    font-weight: 400;
    font-style: normal;
    user-select: none;
    white-space: nowrap;
}

.weight-bg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.2s ease;
    color: #013A6F;
}

/* Individual background layers with different weights */
.weight-bg-0 { font-weight: 100; font-style: normal; }
.weight-bg-1 { font-weight: 200; font-style: normal; }
.weight-bg-2 { font-weight: 300; font-style: normal; }
.weight-bg-3 { font-weight: 400; font-style: normal; }
.weight-bg-4 { font-weight: 500; font-style: normal; }
.weight-bg-5 { font-weight: 600; font-style: normal; }
.weight-bg-6 { font-weight: 700; font-style: normal; }
.weight-bg-7 { font-weight: 800; font-style: normal; }
.weight-bg-8 { font-weight: 800; font-style: italic; }
.weight-bg-9 { font-weight: 700; font-style: italic; }
.weight-bg-10 { font-weight: 600; font-style: italic; }
.weight-bg-11 { font-weight: 500; font-style: italic; }
.weight-bg-12 { font-weight: 400; font-style: italic; }
.weight-bg-13 { font-weight: 300; font-style: italic; }
.weight-bg-14 { font-weight: 200; font-style: italic; }
.weight-bg-15 { font-weight: 100; font-style: italic; }

/* Hide the active background weight */
.weight-bg.active-hidden {
    opacity: 0;
}

.weight-active {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 40px rgba(1, 58, 111, 0.5);
    cursor: pointer;
    transition: font-weight 0.1s ease, font-style 0.1s ease, letter-spacing 0.1s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.weight-active:hover {
    text-shadow: 0 0 60px rgba(1, 58, 111, 0.8), 0 0 100px rgba(1, 58, 111, 0.4);
    transform: scale(1.05);
}

.hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -2px;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.5rem, 4vw, 4rem);
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Subtle floating animation for font layers */
@keyframes subtleFloat {
    0% {
        transform: translate(-4px, -4px);
        opacity: 0.08;
        filter: blur(0.8px);
    }
    50% {
        transform: translate(-2px, -2px);
        opacity: 0.12;
        filter: blur(1px);
    }
    100% {
        transform: translate(-3px, -3px);
        opacity: 0.06;
        filter: blur(1.2px);
    }
}

/* Car Introduction */
.car-intro {
    padding: 120px 0 80px;
    background: #000;
}

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

.intro-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.car-model {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: #fff;
    margin: 0;
}

.car-main-image {
    text-align: center;
}

.car-main-image img {
    width: 100%;
    height: auto;
    background: transparent;
}

/* Car Stats */
.car-stats {
    padding: 120px 0;
    background: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 80px;
}

.stat-card {
    text-align: center;
    background: linear-gradient(to bottom, #000 0%, #0a0a0a 50%, #013A6F 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #013A6F;
    transform: translateY(-5px);
}

.stat-visual {
    margin-bottom: 40px;
}

.stat-visual img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    background: transparent;
    padding: 20px;
}

.stat-info h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: #fff;
    line-height: 1;
}

/* Sponsors Title */
.sponsors-title {
    padding: 120px 0 80px;
    background: #000;
}

.sponsors-title .section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
}

/* Sponsors Marquee */
.sponsors {
    padding: 0;
    background: #000;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.sponsors-marquee {
    position: relative;
    width: 100%;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.sponsors-marquee:last-child {
    border-bottom: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 120px;
    width: fit-content;
    padding: 0 60px;
}

.marquee-track[data-direction="right"] {
    animation: marqueeRight 35s linear infinite;
}

.marquee-track[data-direction="left"] {
    animation: marqueeLeft 30s linear infinite;
}

.sponsor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    height: 140px;
    padding: 30px;
    flex-shrink: 0;
}

.sponsor-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.4s ease;
    background: transparent;
}

.sponsor-logo:hover img {
    opacity: 0.9;
    transform: scale(1.08);
}

/* Marquee Animations */
@keyframes marqueeRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Pause animation on hover */
.sponsors-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Behind The Scenes Section */
.behind-scenes-section {
    padding: 100px 0;
    background: #000;
}

.behind-scenes-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #013A6F;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 
        0 0 40px rgba(1, 58, 111, 1),
        0 0 80px rgba(1, 58, 111, 0.8),
        0 0 120px rgba(1, 58, 111, 0.6),
        0 0 160px rgba(1, 58, 111, 0.4);
    animation: intense-glow 3s ease-in-out infinite;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.reel-item {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 58, 111, 0.4);
}

.reel-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
    
    .reel-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 0 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-address {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #013A6F;
}

.footer-marquee {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-right: 80px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.marquee-content span:hover {
    color: #28cbd4;
}

/* Enhanced Footer Marquee */
.footer-marquee-enhanced {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
    height: 180px;
    background: #000;
    border-bottom: 6px solid #333;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 2rem;
}

.footer-marquee-content {
    display: flex;
    animation: marqueeFooter 25s linear infinite;
    white-space: nowrap;
}

.footer-marquee-content span {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-right: 5rem;
    color: #333;
    text-transform: uppercase;
    transition: color 0.5s ease;
    cursor: pointer;
}

.footer-marquee-content span:hover {
    color: #013A6F;
}

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

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

/* Responsive Design */

/* Page Transition Wipe Effect */
.page-wipe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    display: none;
}

.page-wipe.active {
    transform: translateX(0);
    pointer-events: all;
    display: block;
}

.page-wipe.exit {
    transform: translateX(100%);
    pointer-events: none;
    display: block;
}

/* Page Hero Styles */
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(to right, #013A6F 0%, transparent 20%, transparent 80%, #013A6F 100%),
        #000;
    padding: 120px 0 80px;
    position: relative;
}

.page-hero .container {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 77vh;
}

.page-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 0;
}

.page-hero .page-title {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-hero .page-subtitle {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 0;
}

/* About Page Styles */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(to right, #013A6F 0%, transparent 20%, transparent 80%, #013A6F 100%),
        #000;
    padding: 160px 0 80px;
    position: relative;
}

.about-hero .container {
    position: relative;
    width: 100%;
    z-index: 1;
}

.about-hero-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 0;
}

.about-hero-title .title-line {
    display: block;
}

.about-hero-buttons {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 60px;
    padding: 0 80px;
    width: 100%;
    margin-left: 0;
}

.page-hero .about-hero-buttons {
    margin-top: auto;
}

.about-hero-btn {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0;
    border: none;
    transition: color 0.3s ease;
    position: relative;
}

.about-hero-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-hero-btn:hover::after {
    transform: scaleX(1);
}

/* About Gallery Placeholder */
.about-gallery-placeholder {
    padding: 80px 0;
    background: #000;
}

.gallery-space {
    min-height: 400px;
    background: #0a0a0a;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Stats Section */
.about-gallery-placeholder {
    padding: 80px 0;
    background: #000;
}

.gallery-space {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.gallery-images {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 650px;
    overflow: hidden;
}

.gallery-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.active {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.gallery-arrow {
    background: rgba(1, 58, 111, 0.8);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.gallery-arrow:hover {
    background: #013A6F;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(1, 58, 111, 0.5);
}

@media (max-width: 768px) {
    .gallery-images {
        height: 400px;
    }
    
    .gallery-arrow {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
    
    .gallery-carousel {
        gap: 15px;
    }
}

.about-stats-section {
    padding: 60px 0 80px;
    background: #000;
}

.stats-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-simple-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-simple-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Stats Hero - Old (keep for compatibility) */
.about-stats-hero {
    padding: 80px 0;
    background: #000;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.about-stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Tabs */
.about-tabs-section {
    padding: 120px 0;
    background: #000;
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.about-tab {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.about-tab:hover {
    color: #013A6F;
}

.about-tab.active {
    color: #fff;
}

.about-tab.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
}

.about-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.about-tab-content.active {
    display: block;
}

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

.tab-content-text {
    max-width: 800px;
    margin: 0 auto;
}

.tab-content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.tab-content-text p strong {
    color: #fff;
    font-weight: 600;
}

/* Old About Styles (keep for compatibility) */
.about-content {
    padding: 80px 0;
    background: #000;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.values-list strong {
    color: #fff;
}

.content-stats {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

.stat-large {
    text-align: center;
    margin-bottom: 40px;
}

.stat-large .stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    display: block;
}

.stat-large .stat-label {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-item .stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* History Section */
.history-section {
    padding: 120px 0;
    background: #000;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

/* Team Page Styles */
.team-leadership {
    padding: 80px 0;
    background: #000;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
}

.leader-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    background: #111;
    padding: 40px;
    border-radius: 10px;
}

.leader-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    background: #1a1a1a;
    border: 2px solid #222;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.leader-role {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 5px;
}

.leader-department {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.leader-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
}

.team-sections {
    padding: 80px 0;
    background: #000;
}

/* ===================================
   TEAM MEMBERS SECTION - DU Racing Style
   =================================== */
.team-members-section {
    padding: 100px 0 120px;
    background: #000;
}

/* Leaders Section - Yan Yana */
.team-leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 600px;
    margin: 0 auto 80px;
}

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

.leader-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category Sections */
.team-category {
    margin-bottom: 80px;
}

.team-category-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Single Leader - Ortalı */
.team-single-leader {
    max-width: 250px;
    margin: 0 auto 40px;
}

/* Sub Leaders - 2 Ekip Lideri Yan Yana */
.team-sub-leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 550px;
    margin: 30px auto 40px;
    justify-items: center;
    align-items: center;
}

/* Tek Üye için Ortalama */
.team-sub-leaders.single-member {
    grid-template-columns: 1fr;
    max-width: 250px;
}

/* Team Members Grid - 3'lü Satırlar */
.team-members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid içindeki üyeler 245x245 */
.team-members-section .team-members-grid > .team-member {
    flex: 0 0 245px;
    width: 245px;
    height: 245px;
    padding-bottom: 0;
}

/* Leaders 246x246 */
.team-leaders .team-member {
    width: 246px;
    height: 246px;
}

.team-single-leader .team-member {
    width: 246px;
    height: 246px;
}

.team-sub-leaders .team-member {
    width: 246px;
    height: 246px;
}

/* Boş eleman - görünmez */
.grid-spacer {
    visibility: hidden;
    height: 0;
    padding-bottom: 100%;
}

/* Team Member Card */
.team-members-section .team-member {
    position: relative;
    width: 246px;
    height: 246px;
    padding-bottom: 0;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
}

.team-members-section .team-member img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 !important;
    transition: transform 0.4s ease;
}

.team-members-section .team-member:hover img {
    transform: scale(1.1);
}

.team-members-section .member-name,
.team-members-section .member-position {
    position: absolute;
    left: 20px;
    right: auto;
    text-align: left;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    padding: 0 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.team-members-section .member-name {
    bottom: 65px;
    top: auto;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.03em;
    transform: translateY(10px);
    padding-left: 0;
    text-transform: uppercase;
}

.team-members-section .member-position {
    bottom: 45px;
    top: auto;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.03em;
    transform: translateY(10px);
    padding-left: 0;
    text-transform: none;
}

.team-members-section .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.team-members-section .team-member:hover::before {
    background: rgba(0, 0, 0, 0.7);
}

.team-members-section .team-member:hover .member-name,
.team-members-section .team-member:hover .member-position {
    opacity: 1;
    transform: translateY(0);
}

/* LinkedIn Icon */
.linkedin-icon {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.linkedin-icon svg {
    width: 16px;
    height: 16px;
}

.team-member:hover .linkedin-icon {
    opacity: 1;
}

.linkedin-icon:hover {
    background: rgba(0, 119, 181, 0.9);
}

/* Responsive */
@media (max-width: 968px) {
    .team-members-grid {
        max-width: 550px;
    }

    .team-members-section .team-members-grid > .team-member {
        flex: 0 0 245px;
        width: 245px;
        height: 245px;
        padding-bottom: 0;
    }
    
    .team-sub-leaders {
        max-width: 550px;
        justify-items: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .team-leaders {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
        margin-bottom: 60px;
    }
    
    .leader-title {
        font-size: 18px;
    }
    
    .team-category-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .team-sub-leaders {
        grid-template-columns: 1fr;
        max-width: 300px;
        justify-items: center;
        align-items: center;
    }
    
    .team-members-grid {
        max-width: 300px;
    }

    .team-members-section .team-members-grid > .team-member {
        flex: 0 0 280px;
        width: 280px;
        height: 280px;
        padding-bottom: 0;
    }
    
    .team-single-leader {
        max-width: 300px;
    }
    
    .member-name {
        font-size: 14px;
        top: 38%;
    }
    
    .member-position {
        font-size: 10px;
        top: 52%;
    }
}

/* ===================================
   OLD TEAM STYLES (Keep for other pages if needed)
   =================================== */
.department {
    margin-bottom: 80px;
}

.department-header {
    text-align: center;
    margin-bottom: 40px;
}

.department-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.department-header p {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-grid .team-member {
    text-align: center;
    background: #111;
    padding: 30px 20px;
    border-radius: 10px;
}

.team-grid .team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    background: #1a1a1a;
    border: 2px solid #222;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 5px;
}

.member-dept {
    font-size: 12px;
    color: #999;
}

.join-team {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.join-content > p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.requirements,
.application {
    text-align: left;
    margin-bottom: 40px;
}

.requirements h3,
.application h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.requirements li:before {
    content: "→";
    position: absolute;
    left: 0;
}

.application p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.join-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Sponsors Page Styles */
.sponsorship-message {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.sponsorship-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    animation: shimmer 15s ease-in-out infinite;
}

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

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

.message-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #013A6F;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 30px rgba(1, 58, 111, 0.8),
        0 0 60px rgba(1, 58, 111, 0.6),
        0 0 90px rgba(1, 58, 111, 0.4),
        0 0 120px rgba(1, 58, 111, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.5);
    animation: intense-glow 2.5s ease-in-out infinite;
}

@keyframes intense-glow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(1, 58, 111, 0.8),
            0 0 60px rgba(1, 58, 111, 0.6),
            0 0 90px rgba(1, 58, 111, 0.4),
            0 0 120px rgba(1, 58, 111, 0.2),
            0 4px 15px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(1, 58, 111, 1),
            0 0 80px rgba(1, 58, 111, 0.8),
            0 0 120px rgba(1, 58, 111, 0.6),
            0 0 160px rgba(1, 58, 111, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.5);
    }
}

.message-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #013A6F;
    box-shadow: 
        0 0 15px rgba(1, 58, 111, 0.8),
        0 0 30px rgba(1, 58, 111, 0.5);
}

.message-content .message-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.message-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Sponsors Categories */
.sponsors-categories {
    padding: 80px 0 120px;
    background: #000;
}

.sponsor-tier {
    margin-bottom: 100px;
}

.sponsor-tier:last-child {
    margin-bottom: 0;
}

.tier-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.tier-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
}

.tier-title.gold {
    color: #00D4FF;
}

.tier-title.gold::after {
    background: linear-gradient(90deg, transparent, #00D4FF, transparent);
}

.tier-title.silver {
    color: #00BCD4;
}

.tier-title.silver::after {
    background: linear-gradient(90deg, transparent, #00BCD4, transparent);
}

.tier-title.bronze {
    color: #00ACC1;
}

.tier-title.bronze::after {
    background: linear-gradient(90deg, transparent, #00ACC1, transparent);
}

.tier-title.platinum {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #00E5FF, #00BCD4, #0097A7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5)) drop-shadow(0 0 60px rgba(0, 188, 212, 0.3));
    margin-bottom: 80px;
    animation: platinumGlow 3s ease-in-out infinite;
}

@keyframes platinumGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5)) drop-shadow(0 0 60px rgba(0, 188, 212, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.8)) drop-shadow(0 0 80px rgba(0, 188, 212, 0.5));
    }
}

.tier-title.platinum::after {
    background: linear-gradient(90deg, transparent, #00E5FF, #00BCD4, transparent);
    height: 8px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.7), 0 0 60px rgba(0, 188, 212, 0.4);
}

.tier-title.support {
    color: #A0A0A0;
}

.tier-title.support::after {
    background: linear-gradient(90deg, transparent, #A0A0A0, transparent);
}

.sponsor-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ana Sponsorlar - En büyük */
.sponsor-tier:first-of-type .sponsor-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Altın Sponsorlar */
.sponsor-tier:nth-of-type(2) .sponsor-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Gümüş Sponsorlar */
.sponsor-tier:nth-of-type(3) .sponsor-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Bronz Sponsorlar */
.sponsor-tier:nth-of-type(4) .sponsor-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Destek Sponsorlar */
.sponsor-tier:nth-of-type(5) .sponsor-logos-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
}

/* Son 2 kartı alt satıra ortala */
.sponsor-tier:nth-of-type(5) .sponsor-logo-item:nth-child(5) {
    grid-column: 2;
}

.sponsor-tier:nth-of-type(5) .sponsor-logo-item:nth-child(6) {
    grid-column: 3;
}

.sponsor-logo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 150px;
}

.sponsor-logo-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sponsor-logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.sponsor-logo-item:hover img {
    filter: brightness(1);
}

.moto-ucel-logo img {
    max-height: 350px !important;
}

.ze-teknik-logo {
    max-height: 140px !important;
}

.soylu-logo {
    max-height: 120px !important;
}

.sponsor-logo-item.dual-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sponsor-logo-item.dual-logo img {
    max-width: 45%;
    max-height: 80px;
}

.sponsor-logos-grid.two-column {
    grid-template-columns: repeat(2, 1fr);
}

.sponsor-logos-grid.single-item {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-logos-grid.support-grid {
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 40px;
}

.sponsor-logo-item.empty-slot {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.15);
}

.sponsor-logo-item.empty-slot:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.15);
    transform: none;
    box-shadow: none;
}

/* Become a Sponsor Section */
.become-sponsor-section {
    background: #000;
    padding: 100px 0;
}

.sponsor-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 150px;
}

.sponsor-intro-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #013A6F;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 30px rgba(1, 58, 111, 0.8),
        0 0 60px rgba(1, 58, 111, 0.6),
        0 0 100px rgba(1, 58, 111, 0.4);
    animation: intense-glow 3s ease-in-out infinite;
}

.sponsor-intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.sponsor-intro-content .highlight {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
}

/* Why Sponsor */
.why-sponsor {
    margin-bottom: 150px;
}

.why-sponsor h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.why-intro {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.sponsor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(1, 58, 111, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(1, 58, 111, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #013A6F;
    box-shadow: 
        0 10px 50px rgba(1, 58, 111, 0.6),
        0 0 80px rgba(1, 58, 111, 0.5),
        0 0 120px rgba(1, 58, 111, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Sponsorship Types */
.sponsorship-types {
    margin-bottom: 150px;
}

.sponsorship-types h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.types-intro {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-item {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #013A6F;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 58, 111, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.type-item:hover::before {
    width: 100%;
}

.type-item:hover {
    border-left-color: #00BCD4;
    transform: translateX(10px);
}

.type-number {
    font-size: 3rem;
    font-weight: 900;
    color: #013A6F;
    line-height: 1;
    margin-bottom: 15px;
}

.type-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.type-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Sponsor CTA */
.sponsor-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(1, 58, 111, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 2px solid #013A6F;
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.sponsor-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 58, 111, 0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

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

.sponsor-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.sponsor-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: #013A6F;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(1, 58, 111, 0.5);
}

.cta-button:hover {
    background: #00BCD4;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

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

.sponsor-contact {
    margin-top: 30px;
}

.sponsor-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.sponsor-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.contact-info p {
    font-size: 14px;
    margin: 5px 0;
    opacity: 0.8;
}

/* Notification Styles */
.notification {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.notification.success {
    background-color: #4CAF50;
    color: white;
}

.notification.error {
    background-color: #f44336;
    color: white;
}

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

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

@media (max-width: 768px) {
    .hamburger {
        font-size: 32px;
        font-weight: 700;
    }
    
    .overlay-menu a {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }
    
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 100px 5px 60px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 2px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3.5rem);
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
        letter-spacing: 0;
    }
    
    .car-intro,
    .car-stats {
        padding: 80px 0 60px;
    }
    
    .sponsors-title {
        padding: 80px 0 60px;
    }
    
    .sponsors {
        padding: 60px 0 80px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .sponsors-marquee {
        padding: 40px 0;
    }
    
    .marquee-content span {
        font-size: 28px;
        margin-right: 60px;
    }
    
    .marquee-track {
        gap: 60px;
        padding: 0 30px;
    }
    
    .sponsor-logo {
        min-width: 180px;
        height: 100px;
        padding: 20px;
    }
    
    .sponsor-logo img {
        max-width: 140px;
        max-height: 70px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Page-specific responsive */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Stats Cards Responsive */
    .stats-simple-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .gallery-space {
        min-height: 300px;
    }
    
    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-sponsor {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .sponsors-row {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .benefits-grid,
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Page Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-hero-buttons {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 0 40px;
        width: 100%;
        margin-left: 0;
    }
    
    .about-hero-btn {
        font-size: 14px;
    }
    
    .about-tabs {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .about-tab {
        font-size: 12px;
    }
    
    /* Enhanced Footer Marquee Responsive */
    .footer-marquee-enhanced {
        height: 120px;
        border-top: 4px solid #333;
        border-bottom: 4px solid #333;
    }
    
    .footer-marquee-content span {
        font-size: 3.5rem;
        margin-right: 3rem;
    }
}

/* Extra Mobile Responsive */
@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-simple-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-space {
        min-height: 200px;
    }
    
    .about-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .about-tab {
        padding: 20px;
        border-bottom: 1px solid #222;
    }
    
    .about-tab.active::after {
        display: none;
    }
    
    .footer-marquee-enhanced {
        height: 80px;
        border-top: 3px solid #333;
        border-bottom: 3px solid #333;
    }
    
    .footer-marquee-content span {
        font-size: 2.2rem;
        margin-right: 2rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero */
.contact-hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 140px 0 30px;
    text-align: center;
}

.contact-hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Contact Cards */
.contact-cards-section {
    background: #000;
    padding: 0 0 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 44px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #2a7fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(42, 127, 255, 0.12);
}

.contact-card-icon {
    color: #2a7fff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    background: rgba(42, 127, 255, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.contact-card-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.contact-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

a.contact-card-value:hover {
    color: #2a7fff;
}

/* Contact Content Box */
.contact-content {
    background: #000;
    padding: 0 0 60px;
}

.contact-box {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 50px 48px;
}

.contact-box-header {
    margin-bottom: 36px;
}

.contact-box-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.contact-box-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.form-group {
    width: 100%;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-form input {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}

.contact-form input::placeholder {
    color: #444;
    font-weight: 300;
}

.contact-form input:focus {
    border-color: #013A6F;
    background: #0d0d0d;
}

.form-group-full {
    margin-bottom: 24px;
}

.contact-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
    box-sizing: border-box;
    display: block;
}

.contact-form textarea::placeholder {
    color: #444;
    font-weight: 300;
}

.contact-form textarea:focus {
    border-color: #013A6F;
    background: #0d0d0d;
}

.contact-submit-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 16px 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 8px;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #013A6F;
    color: #fff;
}

/* Contact Box Social */
.contact-box-social {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #1a1a1a;
    align-items: center;
}

.contact-box-social a {
    color: #888;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #151515;
    border: 1px solid #252525;
}

.contact-box-social a:hover {
    color: #fff;
    background: #013A6F;
    border-color: #013A6F;
    transform: translateY(-2px);
}

/* Contact Map Section */
.contact-map-section {
    background: #000;
    padding: 0 0 80px;
}

.contact-map-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    line-height: 0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    filter: grayscale(80%) brightness(0.85) contrast(1.1);
    transition: filter 0.4s ease;
}

.contact-map-wrapper iframe:hover {
    filter: none;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-box {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 30vh;
        padding: 120px 0 30px;
    }
    
    .contact-hero-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-mini-map iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 20px;
    }
    
    .contact-social-links {
        gap: 14px;
    }
}

/* ===================================
   HISTORY PAGE STYLES
   =================================== */
.history-timeline-section {
    padding: 100px 0;
    background: #000;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #fff, transparent);
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: calc(50% - 40px);
}

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    z-index: 10;
}

.timeline-content {
    animation: fadeIn 0.6s ease;
}

.timeline-vehicle {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.vehicle-image {
    overflow: hidden;
    height: 400px;
    background: #111;
}

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

.timeline-vehicle:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.vehicle-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spec-badge {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: left 0.5s ease;
}

.achievement-card:hover {
    border-color: #fff;
    background: #222;
}

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

.achievement-year {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.achievement-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.achievement-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* Responsive Timeline */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 120px);
        margin-left: 100px !important;
        margin-right: 0 !important;
    }

    .timeline-vehicle {
        grid-template-columns: 1fr;
    }

    .vehicle-image {
        height: 250px;
    }

    .vehicle-info {
        padding: 30px;
    }

    .vehicle-title {
        font-size: 20px;
    }

    .vehicle-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .timeline {
        padding: 20px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 90px);
        margin-left: 80px !important;
    }

    .vehicle-info {
        padding: 20px;
    }

    .vehicle-title {
        font-size: 18px;
    }

    .vehicle-description {
        font-size: 13px;
    }

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

    .achievement-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .timeline {
        padding: 10px 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 10px;
        top: 30px;
    }

    .timeline-item {
        margin-bottom: 60px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 70px !important;
    }

    .vehicle-image {
        height: 150px;
    }

    .vehicle-info {
        padding: 15px;
    }

    .vehicle-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .vehicle-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .spec-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .achievement-card {
        padding: 20px;
    }

    .achievement-title {
        font-size: 16px;
    }
}

/* ===================================
   YEAR-BASED HISTORY STYLES
   =================================== */

.year-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.year-btn {
    background: #1a1a1a;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.year-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.year-btn.active {
    background: #fff;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.year-content-container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

.year-content {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
    display: none;
}

.year-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
    display: block;
}

.year-content .timeline-vehicle {
    background: transparent;
    border: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 0;
    height: 100%;
}

.year-content .vehicle-image {
    height: 100%;
    min-height: 600px;
}

.year-content .vehicle-info {
    padding: 60px 50px;
    background: #1a1a1a;
    overflow-y: auto;
    max-height: 600px;
}

.year-content .vehicle-title {
    font-size: 32px;
    margin-bottom: 25px;
}

.year-content .vehicle-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .year-buttons-container {
        gap: 10px;
        margin-bottom: 40px;
    }

    .year-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .year-content .timeline-vehicle {
        grid-template-columns: 1fr;
    }

    .year-content .vehicle-image {
        height: 300px;
        min-height: 300px;
    }

    .year-content .vehicle-info {
        padding: 40px 30px;
        max-height: 500px;
    }

    .year-content-container {
        min-height: 800px;
    }
}

@media (max-width: 768px) {
    .year-buttons-container {
        gap: 8px;
        margin-bottom: 30px;
    }

    .year-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .year-content .vehicle-image {
        height: 250px;
        min-height: 250px;
    }

    .year-content .vehicle-info {
        padding: 30px 20px;
        max-height: 400px;
    }

    .year-content .vehicle-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .year-content .vehicle-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .spec-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .year-content-container {
        min-height: 650px;
    }
}

@media (max-width: 480px) {
    .year-buttons-container {
        gap: 6px;
        margin-bottom: 20px;
    }

    .year-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .year-content .vehicle-image {
        height: 150px;
        min-height: 150px;
    }

    .year-content .vehicle-info {
        padding: 20px 15px;
        max-height: 300px;
    }

    .year-content .vehicle-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .year-content .vehicle-description {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .spec-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .year-content-container {
        min-height: 500px;
    }

    .achievement-text {
        font-size: 13px;
    }
}