/* ============================================================
   TRAVELEXPO ANKARA 2026 — Ana Stil Dosyası
   Beyaz & Kırmızı Tema
   ============================================================ */

/* --- CSS Değişkenleri --- */
:root {
  --red:         #D32F2F;
  --red-dark:    #B71C1C;
  --red-darker:  #8B0000;
  --red-light:   #FFEBEE;
  --red-mid:     #EF5350;
  --white:       #FFFFFF;
  --gray-50:     #FAFAFA;
  --gray-100:    #F5F5F5;
  --gray-200:    #EEEEEE;
  --gray-400:    #BDBDBD;
  --gray-600:    #757575;
  --gray-800:    #424242;
  --black:       #212121;

  --font-heading: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);
  --shadow-red: 0 4px 20px rgba(211,47,47,.35);

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;

  --header-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray-600); }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-600); max-width: 600px; margin: 0 auto; }

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg { padding: .85rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(183, 28, 28, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

#site-header.scrolled {
  background: var(--red-dark);
  box-shadow: var(--shadow-md);
  height: 62px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition);
}
#site-header.scrolled .header-logo img { height: 42px; }

/* Nav */
#nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
#nav-menu a {
  color: rgba(255,255,255,.88);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .88rem;
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: .01em;
  position: relative;
}
#nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
#nav-menu a:hover,
#nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
#nav-menu a:hover::after,
#nav-menu a.active::after {
  transform: scaleX(1);
}

/* Header Right: Lang + Buttons */
.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.75);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  padding: .3rem .55rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .05em;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.15); }
.lang-btn.active {
  background: var(--white);
  color: var(--red-dark);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
/* Invisible hover bridge so moving the cursor onto the menu doesn't lose :hover */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: .7rem;
}
.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
  user-select: none;
}
.dropdown-arrow {
  font-size: .62rem;
  opacity: .75;
  transition: transform var(--transition);
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .55rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--red-dark);
  border-radius: 10px;
  min-width: 240px;
  box-shadow: 0 10px 32px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.12);
  padding: .4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block !important;
  padding: .7rem 1.1rem !important;
  color: rgba(255,255,255,.88) !important;
  font-size: .87rem !important;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255,255,255,.14) !important;
  color: var(--white) !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a::before {
  content: '›';
  margin-right: .4rem;
  color: rgba(255,255,255,.45);
  font-weight: bold;
}

/* Hamburger */
.nav-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}
.nav-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: left center;
}
.nav-toggler.active span:nth-child(1) { transform: rotate(45deg) translate(0, -1px); }
.nav-toggler.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggler.active span:nth-child(3) { transform: rotate(-45deg) translate(0, 1px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--red-darker);
  padding-top: var(--header-h);
}

/* Slideshow layer */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Red gradient overlay — ensures text readability over images */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    140deg,
    rgba(139,0,0,.55) 0%,
    rgba(183,28,28,.48) 40%,
    rgba(211,47,47,.40) 80%,
    rgba(229,57,53,.34) 100%
  );
}

/* Slide navigation dots */
.slide-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .65rem;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.slide-dot.active {
  background: var(--white);
  transform: scale(1.3);
  border-color: var(--white);
}

/* Slide prev/next arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all .3s;
  backdrop-filter: blur(4px);
}
.slide-arrow:hover { background: rgba(255,255,255,.28); border-color: var(--white); }
.slide-arrow-prev { left: 1.5rem; }
.slide-arrow-next { right: 1.5rem; }

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
  pointer-events: none;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
#video-section {
  background: #111;
  padding: 5rem 0;
  color: var(--white);
}
.video-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  background: #000;
  position: relative;
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.video-text h2 { color: var(--white); margin-bottom: 1rem; line-height: 1.25; }
.video-text p  { color: rgba(255,255,255,.72); line-height: 1.85; font-size: .98rem; }
.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.video-meta-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 500;
}
.video-meta-item i { color: var(--red-mid); font-size: .8rem; }

/* ----- Ana sayfa HABERLER kaydırmalı (translate carousel) ----- */
.news-slider { position: relative; }

/* Dış haber: yatay kayan track (sürükledikçe takip eder, bırakınca oturur) */
.news-viewport {
  position: relative;
  overflow: hidden;
  height: auto;
  transition: height .45s cubic-bezier(.22,1,.36,1);
}
.news-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  will-change: transform;
  transform: translateX(0);
}
.news-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

/* Medya kutusu: video / iframe / görsel slider hepsi 16:9 */
.video-wrap .news-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-wrap .news-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* İç görsel slider: 16:9 oranlı kutu içinde yatay kayan track */
.news-img-slider {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}
.news-img-track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  transform: translateX(0);
}
.news-img-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
.news-img-slide img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; user-select: none; }

/* Oklar kaldırıldı; sürükle/dokun ile kaydırma + animasyonlu ipucu */
.news-viewport,
.news-img-slider { cursor: grab; touch-action: pan-y; }
.news-viewport.grabbing,
.news-img-slider.grabbing { cursor: grabbing; }

/* Kaydırma ipucu rozeti (imleç/dokun ile kaydır) */
.news-swipe-hint,
.news-img-swipe-hint {
  z-index: 4;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  border-radius: 100px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  pointer-events: none;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  opacity: 1;
  transition: opacity .4s ease;
}
/* İç görsel slider ipucu: medyanın üzerinde, ortada-alt (absolute) */
.news-img-swipe-hint {
  position: absolute;
  display: inline-flex;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
}
/* Dış haber ipucu: noktaların üstünde, akışta ortalanmış satır */
.news-swipe-hint {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5rem auto -0.25rem;
}
.news-swipe-hint i,
.news-img-swipe-hint i { animation: swipeNudge 1.4s ease-in-out infinite; }
.news-swipe-hint.hide,
.news-img-swipe-hint.hide { opacity: 0; }
@keyframes swipeNudge {
  0%, 100% { transform: translateX(-5px); }
  50%      { transform: translateX(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .news-swipe-hint i,
  .news-img-swipe-hint i { animation: none; }
}

.news-img-dots {
  position: absolute;
  bottom: .7rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: .4rem;
  z-index: 3;
}
.news-img-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
}
.news-img-dot.active { background: #fff; transform: scale(1.25); }

/* Dış haber slider noktaları */
.news-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.75rem;
}
.news-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.news-dot.active { background: var(--red); transform: scale(1.25); }

@media (max-width: 900px) {
  .news-dots { margin-top: 1.25rem; position: relative; z-index: 2; }
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .slide-arrow { display: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 4rem 0 5rem;
  animation: heroFadeIn 1s ease forwards;
}

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

.hero-logo {
  margin: 0 auto 2rem;
  width: 200px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.3));
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}

.hero-themes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.5rem;
  margin-bottom: 1.75rem;
}
.hero-theme-tag {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: .4rem 1.1rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 2.5rem;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,.9);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.hero-meta-item i { color: rgba(255,255,255,.7); }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg { display: block; }

/* ============================================================
   COUNTDOWN SECTION
   ============================================================ */
#countdown-section {
  background: var(--gray-100);
  padding: 4rem 0;
}

.countdown-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.countdown-box {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  min-width: 110px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.countdown-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -.02em;
}

.countdown-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: .4rem;
}

.countdown-sep {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  padding-bottom: 1.5rem;
  opacity: .6;
}

#countdown-ended {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats-section {
  background: var(--white);
}

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

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stat-card:hover::after { transform: scaleX(1); }

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--red);
  transition: all var(--transition);
}
.stat-card:hover .stat-icon {
  background: var(--red);
  color: var(--white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ============================================================
   ABOUT HOME SECTION
   ============================================================ */
#about-home {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.8; }

.about-vision-card {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-vision-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.about-vision-card h3 { color: var(--white); margin-bottom: 1rem; }
.about-vision-card p { color: rgba(255,255,255,.88); margin-bottom: 1.5rem; }

/* ============================================================
   COUNTRIES SECTION
   ============================================================ */
#countries-section {
  background: var(--white);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}
.country-card:hover {
  background: var(--red-light);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.country-flag { font-size: 2.2rem; line-height: 1; }
.country-name {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
}
.country-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   LOGOS SECTION
   ============================================================ */
#logos-section {
  background: var(--gray-100);
  padding: 3.5rem 0;
}

#logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
}

.logo-item {
  flex: 0 0 calc(25% - 1.5rem);   /* satırda 4 logo */
  max-width: calc(25% - 1.5rem);
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.logo-item img {
  height: 95px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter var(--transition);
}
.logo-item:hover img { filter: grayscale(0%); }

/* Tablet: 3'lü, mobil: 2'li satır */
@media (max-width: 992px) {
  .logo-item { flex-basis: calc(33.333% - 1.5rem); max-width: calc(33.333% - 1.5rem); }
}
@media (max-width: 640px) {
  .logo-item { flex-basis: calc(50% - 1.5rem); max-width: calc(50% - 1.5rem); }
  .logo-item img { height: 70px; }
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--red-darker) 0%, var(--red-dark) 50%, var(--red) 100%);
  padding: 7rem 0 4rem;
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.05) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: .5rem; position: relative; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; position: relative; }
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
}

/* ============================================================
   CARDS (Generic)
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-body { padding: 1.75rem; }
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.card:hover .card-icon {
  background: var(--red);
  color: var(--white);
}
.card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.card p { color: var(--gray-600); font-size: .9rem; }

/* Sector cards */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ============================================================
   PROGRAM TABS
   ============================================================ */
.program-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: .65rem 1.5rem;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-600);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp .35s ease; }

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

.program-day {
  margin-bottom: 2.5rem;
}
.program-day-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  display: inline-block;
  padding: .4rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
}

.event-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  margin-bottom: .75rem;
  transition: all var(--transition);
}
.event-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.event-time {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  min-width: 110px;
  display: flex;
  align-items: flex-start;
  padding-top: .1rem;
}
.event-time i { margin-right: .4rem; font-size: .75rem; margin-top: .15rem; }
.event-info h4 { font-size: .95rem; margin-bottom: .2rem; }
.event-info p { color: var(--gray-600); font-size: .85rem; margin: 0; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
#gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(183,28,28,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Galeri sayfası grid (Medya > Galeri) — #gallery-grid ile aynı düzen */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item { cursor: pointer; }

/* Yıl sekmeleri */
.gallery-year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-year-tab {
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 700;
  font-size: .95rem;
  padding: .5rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-year-tab:hover { border-color: var(--red); color: var(--red); }
.gallery-year-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
  .lightbox-close { top: .6rem; right: .6rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.contact-info-card h3 i { font-size: .9rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
  color: var(--gray-800);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail i { color: var(--red); width: 16px; flex-shrink: 0; margin-top: .15rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.map-embed iframe { display: block; width: 100%; height: 300px; border: none; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h2 { margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }

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

.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-top: 1rem;
}
.alert-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.alert-danger  { background: #FFEBEE; color: var(--red-dark); border: 1px solid #FFCDD2; }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.org-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.org-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.org-item:hover {
  border-color: var(--red);
  background: var(--red-light);
  transform: translateX(4px);
}
.org-item .flag { font-size: 1.6rem; flex-shrink: 0; }

.vision-block {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}
.vision-block h2 { color: var(--white); margin-bottom: 1rem; }
.vision-block p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--red-darker);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a::before { content: '›'; color: var(--red-mid); font-weight: bold; }
.footer-links a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin-bottom: .75rem;
}
.footer-contact i { color: var(--red-mid); width: 14px; flex-shrink: 0; margin-top: .15rem; }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITY
   ============================================================ */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.spinner-border {
  display: inline-block;
  width: 1em; height: 1em;
  border: .2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }
  section { padding: 3.5rem 0; }

  .nav-toggler { display: flex; }

  #nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    z-index: 999;
    background: var(--red-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .25rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    box-shadow: var(--shadow-md);
  }
  #nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  #nav-menu a { padding: .85rem 1rem; border-radius: var(--radius); font-size: .95rem; }
  #nav-menu a::after { display: none; }

  /* Mobile dropdown: inline expand */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,.18);
    border: none;
    border-radius: 8px;
    min-width: 0;
    opacity: 1;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0;
    margin-top: .25rem;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    pointer-events: all;
    max-height: 200px;
    padding: .4rem;
    transform: none; /* masaüstü translateX(-50%)'i ezer; menü sola kaymadan altta açılır */
  }
  .nav-dropdown-menu a { padding: .65rem 1.1rem !important; }

  .header-right .btn { display: none; }
  .header-right .lang-switcher { margin-left: auto; }

  .hero-logo { width: 140px; }

  .countries-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .countdown-box { min-width: 80px; padding: 1.25rem; }
  .countdown-sep { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-themes { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .countdown-grid { gap: .25rem; }
  .countdown-box { min-width: 68px; padding: 1rem .75rem; }
  .countdown-number { font-size: 2rem; }
}

/* ============================================================
   PAGE LOADER (sayfa geçiş GIF preloader)
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-darker);
  transition: opacity .45s ease, visibility .45s ease;
}
#page-loader img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.35));
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: .92; }
  50%      { transform: scale(1.06); opacity: 1; }
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================================
   COUNTRY FLAG IMAGES + KAYAN ŞERIT (marquee)
   ============================================================ */
/* Gerçek bayrak görselleri (flagcdn) için img desteği */
img.country-flag {
  height: 30px;
  width: auto;
  font-size: 0;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  object-fit: cover;
  display: block;
}

.country-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: .5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.country-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: country-scroll 45s linear infinite;
  will-change: transform;
}
.country-marquee:hover .country-track {
  animation-play-state: paused;
}
@keyframes country-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.country-marquee-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  margin-right: 1rem;
  padding: .7rem 1.1rem;
  border-radius: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.country-marquee-item:hover {
  background: var(--red-light);
  border-color: var(--red);
  transform: translateY(-2px);
}
.country-marquee-item .country-flag { font-size: 1.5rem; line-height: 1; }
.country-marquee-item img.country-flag { height: 24px; }
.country-marquee-item .country-name {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.country-marquee-item .country-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
  white-space: nowrap;
}

/* ============================================================
   KATILIMCI LİSTESİ (participant list page)
   ============================================================ */
.participant-category {
  margin-bottom: 2.5rem;
}
.participant-cat-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--red-dark);
  padding-bottom: .6rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--red-light);
}
.participant-cat-count {
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border-radius: 100px;
  padding: .12rem .55rem;
  line-height: 1.4;
}
.participant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: .75rem;
}
.participant-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  color: var(--black);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.participant-item::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--red);
  font-size: .8rem;
  opacity: .55;
}
.participant-item:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  #page-loader img { animation: none; }
  .country-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .country-marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ============================================================
   ÇEREZ ONAY BANDI (cookie consent)
   ============================================================ */
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .45s ease;
}
.cookie-consent.show { transform: translateY(0); opacity: 1; }
.cookie-consent.hide { transform: translateY(140%); opacity: 0; }
.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-consent-text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  flex: 1 1 320px;
  min-width: 0;
}
.cookie-consent-text i { color: var(--red-mid); margin-right: .35rem; }
.cookie-consent-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .6rem 1.4rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.cookie-accept {
  background: var(--red);
  color: var(--white);
}
.cookie-accept:hover { background: var(--red-dark); transform: translateY(-1px); }
.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.35);
}
.cookie-reject:hover { background: rgba(255,255,255,.1); color: #fff; }

@media (max-width: 600px) {
  .cookie-consent { left: .6rem; right: .6rem; bottom: .6rem; }
  .cookie-consent-inner { padding: .9rem 1rem; gap: .85rem; }
  .cookie-consent-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: .65rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: opacity .3s ease; transform: none; }
  .cookie-consent.show { transform: none; }
  .cookie-consent.hide { transform: none; }
}
