* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%);
    border-radius: 10px;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #dc2626 #0a0a0a;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 250px;
    height: auto;
    animation: logoFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 40px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loaderProgress 2s ease-in-out forwards, loaderGlow 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes loaderGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(220, 38, 38, 0.5); }
    50% { box-shadow: 0 0 20px rgba(220, 38, 38, 1); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    transition: padding 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px; /* Logo yüksekliği - genişlik otomatik ayarlanır */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 32px;
    font-weight: 600;
    color: #ff0000;
    font-style: italic;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.4s ease;
    white-space: nowrap; /* Metni tek satırda tut */
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link.active {
    color: #dc2626;
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.4s ease;
    flex-shrink: 0; /* İkonun küçülmesini engelle */
}


.nav-link:hover .nav-icon {
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.lang-btn:hover {
    background-color: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: #dc2626;
    border-color: #dc2626;
}

.flag-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.lang-btn:hover .flag-icon {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    margin-bottom: 50px;
}

.hero-title-main {
    display: block;
    font-size: 100px;
    font-weight: 700;
    line-height: 0.9;
    color: #ff0000;
    font-style: italic;
    letter-spacing: 4px;
}

.hero-title-sub {
    display: block;
    font-size: 100px;
    font-weight: 700;
    line-height: 0.9;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #d1d5db;
}

.text-red {
    color: #dc2626;
}

.btn-hero {
    background-color: #dc2626;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-hero:hover {
    background-color: #b91c1c;
    transform: translateX(8px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.4s ease;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(5px);
}

/* Next Race Card */
.next-race-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid #2a2a2a;
    padding: 30px;
    backdrop-filter: blur(10px);
    width: 400px;
    flex-shrink: 0;
}

.race-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dc2626;
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.race-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.race-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.race-location,
.race-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 10px;
}

.location-icon,
.calendar-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: #dc2626;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.countdown-item {
    text-align: center;
    padding: 15px 5px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    transition: all 0.4s ease;
}

.countdown-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #dc2626;
}

.countdown-item.highlight {
    background-color: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.countdown-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-item.highlight .countdown-number {
    color: #dc2626;
}

.countdown-text {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 1px;
}

/* Sections Renk Düzeni - Düzeltilmiş */
.about-section {
    background-color: #0a0a0a; /* Siyah */
    padding: 100px 0;  /* ← Bu satırı ekle */
}

.team-section {
    background-color: #0f0f0f; /* Koyu gri */
    padding: 100px 0;  /* ← Bu satırı ekle */
}

.results-section {
    background-color: #0a0a0a; /* Siyah */
    padding: 100px 0;  /* ← Bu satırı ekle */
}

.guides-section {
    background-color: #0f0f0f; /* Koyu gri */
    padding: 100px 0;  /* ← Varsa dokunma, yoksa ekle */
}

.partners-section {
    background-color: #0a0a0a; /* Siyah - değiştirildi */
    padding: 100px 0;  /* ← Bu satırı ekle */
}

.contact-section {
    background-color: #0f0f0f; /* Koyu gri - değiştirildi */
    padding: 100px 0;  /* ← Bu satırı ekle */
}

.section-heading {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 60px;
}

.subsection-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #2a2a2a;
    cursor: pointer;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('assets/about-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.about-image:hover .about-img-placeholder {
    transform: scale(1.1);
}

/* Team Section */
.drivers-grid,
.management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.driver-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.driver-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.driver-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.driver-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.driver-card:hover .driver-placeholder {
    transform: scale(1.15);
}

/* Driver images */
.drivers-grid .driver-card:nth-child(1) .driver-placeholder {
    background-image: url('assets/driver-1.png');
}

.drivers-grid .driver-card:nth-child(2) .driver-placeholder {
    background-image: url('assets/driver-2.png');
}

.drivers-grid .driver-card:nth-child(3) .driver-placeholder {
    background-image: url('assets/driver-3.png');
}

.drivers-grid .driver-card:nth-child(4) .driver-placeholder {
    background-image: url('assets/driver-4.png');
}

/* Management images */
.management-grid .driver-card:nth-child(1) .driver-placeholder {
    background-image: url('assets/manager-1.png');
}

.management-grid .driver-card:nth-child(2) .driver-placeholder {
    background-image: url('assets/manager-2.png');
}

.management-grid .driver-card:nth-child(3) .driver-placeholder {
    background-image: url('assets/manager-3.png');
}

.management-grid .driver-card:nth-child(4) .driver-placeholder {
    background-image: url('assets/manager-4.png');
}

.driver-social {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.driver-social:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: scale(1.1) rotate(5deg);
}

.social-icon-img {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.driver-social:hover .social-icon-img {
    transform: scale(1.1);
}

.driver-info {
    padding: 20px;
    border-top: 2px solid #dc2626;
    background-color: #0a0a0a;
    position: relative;
    z-index: 5;
}

.driver-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.driver-role {
    font-size: 14px;
    color: #dc2626;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Results Section - Modern Design */
.season-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.result-card:hover::before {
    transform: translateX(100%);
}

.result-card:hover {
    border-color: #dc2626;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.result-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.race-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover .race-img {
    transform: scale(1.1);
}

.result-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.result-content {
    padding: 25px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.result-race {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    margin-right: 15px;
    line-height: 1.3;
}

.result-position {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.4s ease;
    text-shadow: 0 0 20px currentColor;
}

.result-card:hover .result-position {
    transform: scale(1.15) rotate(-5deg);
}

.result-position.gold {
    color: #fbbf24;
}

.result-position.silver {
    color: #d1d5db;
}

.result-position.bronze {
    color: #fb923c;
}

.result-position.top5 {
    color: #10b981; /* Yeşil */
}

.result-position.top10 {
    color: #3b82f6; /* Mavi */
}

.result-position.other {
    color: #9ca3af; /* Gri */
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-date {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.result-position-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trophy-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: #dc2626;
    animation: trophyPulse 2s ease-in-out infinite;
}

@keyframes trophyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.result-card[data-position="1"] .result-position-info {
    color: #fbbf24;
}

.result-card[data-position="1"] .trophy-icon {
    color: #fbbf24;
}

.btn-view-all {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    background-color: #dc2626;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all:hover {
    background-color: #b91c1c;
    transform: translateX(8px);
}

.btn-view-all:hover .btn-arrow {
    transform: translateX(5px);
}

/* Partners Section - Modern Design */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.partner-card:hover::before {
    opacity: 1;
    animation: partnerGlow 2s ease-in-out infinite;
}

@keyframes partnerGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}

.partner-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.5s ease;
}

.partner-card:hover .partner-logo-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.partner-name {
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

.partner-card:hover .partner-name {
    color: #fff;
}

.partner-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.partner-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-social-link:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-5px) rotate(10deg);
}

.partner-social-link svg,
.partner-social-icon {
    width: 16px;
    height: 16px;
    color: #fff;
}

/* Become a Partner Section */
.become-partner-section {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.become-partner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: partnerBgMove 20s linear infinite;
}

@keyframes partnerBgMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.become-partner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.become-partner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.become-partner-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-contact {
    background-color: #fff;
    color: #dc2626;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact:hover {
    background-color: #0a0a0a;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Section - Modern Design */
.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.social-link-large {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #2a2a2a;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link-large:hover::before {
    left: 100%;
}

.social-link-large:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.social-link-large svg,
.social-large-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link-large:hover svg,
.social-link-large:hover .social-large-icon {
    transform: scale(1.2) rotate(5deg);
}

.social-name {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.social-link-large:hover .social-name {
    color: #fff;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
}

.divider-text {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 2px;
}

.contact-email {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #dc2626;
    padding: 50px 40px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, #ef4444, #dc2626);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-email:hover::before {
    opacity: 0.7;
}

.contact-email:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

.email-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.email-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    stroke-width: 1.5;
    animation: emailFloat 3s ease-in-out infinite;
}

@keyframes emailFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.email-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-link {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.4s ease;
}

.email-link:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid #1a1a1a;
    padding: 50px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 5px;
}

.footer-subtext {
    font-size: 14px;
    color: #6b7280;
}

/* Guides Section */
.guides-section {
    background-color: #0f0f0f; /* Koyu gri - Results ile aynı seviyede */
    padding: 100px 0;
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.guide-card {
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.guide-card:hover {
    border-color: #dc2626;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.guide-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.guide-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card:hover .guide-thumbnail img {
    transform: scale(1.1);
}

.guide-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc2626;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.guide-content {
    padding: 25px;
}

.guide-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.3;
}

.guide-description {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #6b7280;
}

.guide-date,
.guide-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.guide-date svg,
.guide-views svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .next-race-card {
        width: 100%;
        max-width: 500px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobilde logo boyutu */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 992px) {
    .drivers-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-title-main {
        font-size: 60px;
    }

    .hero-title-sub {
        font-size: 60px;
    }

    .section-heading {
        font-size: 36px;
    }

    .drivers-grid,
    .management-grid,
    .results-grid,
    .partners-grid,
    .social-links-large {
        grid-template-columns: 1fr;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}