@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

.header-splash {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
}

.top-bar {
  background: #000;
  min-height: 48px;
  padding: 6px 30px;
  color: #fff;
}

.top-bar .container-fluid {
  gap: 18px;
  position: relative;
  flex-wrap: wrap;
}

.navbar {
  min-height: 40px;
  height: auto;
  padding: 8px 30px 0;
}

.navbar .container-fluid {
  align-items: center;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.9rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #dcdb00 !important;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap .video-js,
.hero-video-wrap .vjs-tech {
  width: 100%;
  height: 100%;
}
.hero-video-wrap .vjs-poster img,
.hero-video-wrap .vjs-tech {
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  top: 100%;
  left: 0;
  margin-top: 0 !important;

  transform: translateY(10px) scale(0.96);
  transform-origin: top center;

  min-width: 220px;
  padding: 12px 0;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s ease;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.navbar .dropdown-menu .dropdown-item {
  position: relative;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1b1b1b;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.navbar .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #dcdb00;
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #000;
  padding-left: 28px;
}

.navbar .dropdown-menu .dropdown-item:hover::before {
  width: 10px;
}

.navbar .dropdown-toggle::after {
  transition: transform 0.25s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after,
.navbar .dropdown-menu.show + .dropdown-toggle::after {
  transform: rotate(180deg);
}

.navbar .dropdown.show > .nav-link.dropdown-toggle::after,
.navbar .dropdown:hover > .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

.breaking {
  font-weight: 600;
  font-size: 14px;
}

.breaking-text {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 20px;
  display: flex;
  align-items: center;
}

.breaking-text span {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s;
  font-size: 13px;
}

.breaking-text span.active {
  opacity: 1;
  transform: translateY(0);
}

.top-bar a {
  color: #dcdb00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.top-bar a img {
  height: 16px;
}

.top-kayit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6e23b 0%, #c8c400 100%);
  color: #111 !important;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 24px rgba(220,219,0,0.24);
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-kayit-btn:hover {
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(220,219,0,0.32);
}

.top-kayit-btn img {
  filter: brightness(0) saturate(100%);
}

.lang-toggle {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1;
}

.race-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.race-download-btn {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
}

.cp-popup {
  min-width: 220px;
  font-family: Barlow, sans-serif;
  color: #111;
}

.cp-popup strong,
.cp-popup span,
.cp-popup small {
  display: block;
}

.cp-popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  margin-top: 25px;
}

.cp-popup strong {
  font-size: 18px;
  color: #111;
  line-height: 1.1;
}

.cp-popup-type {
  display: inline-flex !important;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dcdb00;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cp-popup-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 8px 0;
}

.cp-popup-meta span {
  padding: 7px 8px;
  border-radius: 6px;
  background: #f3f3f3;
  font-size: 12px;
  font-weight: 800;
}

.cp-popup p {
  margin: 8px 0;
  color: #333;
  line-height: 1.45;
}

.cp-popup small {
  color: #666;
  font-weight: 700;
}

.itra-logo-box {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
}

.itra-logo-box img {
  display: block;
  max-height: 54px;
  max-width: 140px;
}

.map-marker-cp {
  min-width: 34px;
  height: 26px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111;
  color: #dcdb00;
  border: 2px solid #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.site-gallery {
  background: #f3f3f3;
  padding: 80px 0;
}

.site-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  border: 0;
  padding: 0;
  height: 260px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

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

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

.doc-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.doc-panel {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 34px;
  margin-bottom: 22px;
}

.doc-panel h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.doc-panel p,
.doc-panel li {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .site-gallery-grid {
    grid-template-columns: 1fr;
  }

  .doc-panel {
    padding: 24px;
  }
}

.logo-center {
  top: 3px;
  transform: translateX(-50%);
}

.logo-center img {
  height: 130px;
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  min-height: 720px;
  min-height: max(100vh, 720px);
}

.hero-slider {
  position: relative;
}

.hero-slider .carousel-item {
  height: auto;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 2;
}

.carousel-control-prev {

    left: 80%;
}
.carousel-control-next, .carousel-control-prev {
  bottom: 40px !important;
  align-items: flex-end !important;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.carousel-item.active .hero-bg {
  transform: scale(1.1);
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-top: 20vh;
  margin-left: 30px;
}

.hero-content h1 {
  font-weight: 800;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-big-text h1 {
  font-size: 7rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.hero-itra-logo {
  position: absolute;
  right: 32px;
  bottom: 7vh;
  z-index: 6;
  width: clamp(86px, 9vw, 172px);
  height: auto;
  object-fit: contain;
}

.event-box {
    z-index: 5;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 700px;
    backdrop-filter: blur(3px);
    margin-bottom: 7vh;
    left: 30px;
    color: #fff;
}

.event-left {
  display: flex;
  align-items: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.event-day {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.event-middle {
  flex: 1;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.event-middle h2 {
  font-size: 2.1rem;
  font-weight: 800;
}

.event-right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;

}

.event-time {
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.event-time:last-child {
  border-bottom: none;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  transition: 0.25s ease;
}

.social-icons a:hover {
  color: #dcdb00;
  border-color: rgba(220,219,0,0.45);
  background: rgba(220,219,0,0.08);
  transform: translateY(-2px);
}

.social-icons {
  flex-wrap: wrap;
  padding-top: 2px;
}

.race-cards {
  background: #000;
  padding: 70px 0;
  color: #fff;
  overflow: visible;
}

.race-cards-header h2 {
  font-size: 3rem;
}

.race-cards-header p {
  color: #aaa;
}

.race-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 25px;
  transition: 0.3s;
}

.race-card:hover {
  border-color: #dcdb00;
  transform: translateY(-8px);
}

.race-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.race-card-elevation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.race-card-itra-logo {
  display: inline-block;
  max-height: 20px;
  max-width: 62px;
  object-fit: contain;
  vertical-align: middle;
}

.race-arrow {
  width: 45px;
  height: 45px;
  background: #dcdb00;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.race-card-img {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
}

.race-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

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

.race-scroller-shell {
  position: relative;
}

.race-cards-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.race-cards-hint {
  margin: 0;
  color: #8d8d8d;
  font-size: 0.98rem;
}

.race-scroll-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.race-scroll-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.race-scroll-btn:hover {
  background: rgba(220,219,0,0.1);
  border-color: rgba(220,219,0,0.5);
  color: #dcdb00;
  transform: translateY(-1px);
}

.race-scroll-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.raceSwiper {
  padding: 14px 0 12px;
  overflow-x: auto;
  overflow-y: visible;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
}

.raceSwiper::-webkit-scrollbar {
  display: none;
}

.raceSwiper .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  align-items: stretch;
}

.raceSwiper .swiper-slide {
  width: auto;
  height: auto;
  padding-top: 4px;
  padding-bottom: 6px;
  scroll-snap-align: start;
}

.raceSwiper.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.race-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.race-card {
  height: 100%;
}

.race-scroll-progress {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.race-scroll-progress span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: inherit;
  background: #dcdb00;
  transition: left 0.2s ease, width 0.2s ease;
}

.race-scroller-shell.is-locked .race-cards-toolbar,
.race-scroller-shell.is-locked .race-scroll-progress {
  opacity: 0.45;
}

@media (max-width: 992px) {
  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 760px;
  }

  .hero-big-text h1 {
    font-size: 4rem;
  }

  .hero-itra-logo {
    right: 24px;
    bottom: 32px;
    width: 92px;
  }

  .raceSwiper .swiper-wrapper {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 780px;
  }

  .breaking-text {
    display: none;
  }

  .top-bar .container-fluid {
    justify-content: space-between !important;
    gap: 12px;
  }

  .logo-center img {
    height: 80px;
  }

  .top-bar {
    height: 60px;
  }

  .hero-content {
    padding-top: 25vh;
    margin-left: 20px;
  }

  .hero-big-text h1 {
    font-size: 2.8rem;
  }

  .hero-itra-logo {
    right: 20px;
    bottom: 22px;
    width: 76px;
  }

  .event-box {
    flex-direction: column;
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .event-day {
    writing-mode: initial;
    transform: none;
  }

  .race-cards-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .race-cards-hint {
    font-size: 0.9rem;
  }

  .race-scroll-controls {
    width: 100%;
    justify-content: space-between;
  }

  .race-scroll-btn {
    width: 42px;
    height: 42px;
  }

  .raceSwiper {
    padding: 2px 0 12px;
  }

  .raceSwiper .swiper-wrapper {
    grid-auto-columns: 84%;
    gap: 16px;
  }

  .footer {
    padding-top: 56px;
  }
}

@media (max-width: 480px) {
  .race-cards-header h2 {
    font-size: 2rem;
  }

  .top-kayit-btn {
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  .top-bar {
    padding-inline: 12px;
  }
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
  transition: 0.3s;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: #dcdb00;
  width: 60px;
}

.race-card-info {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-item span {
  font-size: 11px;
  color: #888;
  display: block;
}

.info-item strong {
  font-size: 15px;
  color: #dcdb00;
  font-weight: 600;
}

.race-card-info .race-award-item {
  cursor: pointer;
  color: #dcdb00;
}

.swiper-slide {
  opacity: 1;
  transform: none;
}

.swiper-slide-active .race-card {
  border-color: #dcdb00;
  box-shadow: 0 10px 40px rgba(220, 219, 0, 0.2);
}

.swiper-slide-active .race-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.race-status {
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  font-weight: 600;
  color: #fff;

  background: rgba(0,0,0,0.7);
  padding: 6px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #6BE675;
  border-radius: 50%;
}

.race-card-img {
  position: relative;
}

.status-open .status-dot {
  background: #6BE675;
}

.status-soon .status-dot {
  background: orange;
}

.status-closed .status-dot {
  background: red;
}

.race-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  height: 100%;
}

.race-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.race-award-action {
  border: 0;
  cursor: pointer;
}

.race-award-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.78);
}

.race-award-modal.is-open {
  display: flex;
}

.race-award-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.race-award-dialog h3 {
  margin: 0 44px 20px 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.race-award-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.race-award-body {
  color: #222;
  line-height: 1.65;
}

.race-award-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.race-award-body td,
.race-award-body th {
  border: 1px solid #ddd;
  padding: 10px 12px;
  vertical-align: top;
}

.race-award-body ul,
.race-award-body ol {
  padding-left: 20px;
}

.race-card-link {
  cursor: pointer;
}

.race-card {
  height: 100%;
}

.about-hero {
  background: url(../img/anasayfa_img.jpg) no-repeat right top #f9f9f9;
  background-size: cover;
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 500px;
}

.about-runner {
  display: none;
}

.about-runner img {
  height: 640px;
  object-fit: contain;
  display: block;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  gap: 48px;
}

.about-left {
  flex: 0 0 auto;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.about-number {
  font-size: 140px;
  font-weight: 900;
  color: #dcdb00;
  line-height: 1;
  font-family: 'Barlow', sans-serif;
}

.about-divider {
  width: 5px;
  height: 220px;
  background: #dcdb00;
  flex-shrink: 0;
}

.about-text span {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-text h1 {
  font-size: 90px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  color: #111;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-text p {
  margin-top: 8px;
  color: #666;
  font-size: 15px;
}

.about-bars {
  margin-top: 40px;
  width: 100%;
}

.bar-item {
  margin-bottom: 18px;
}

.bar-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.bar-label-row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #444;
  text-transform: uppercase;
}

.bar-label-row strong {
  font-size: 13px;
  font-weight: 800;
  color: #111;
}

.bar {
  height: 6px;
  background: #d8d8d8;
  border-radius: 3px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  background: #dcdb00;
  border-radius: 3px;
}

.about-stats-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  background: rgb(255 255 255 / 62%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  margin-bottom: 8px;
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-item strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.stat-item span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #0000003b;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-hero {
    padding: 60px 0 60px;
  }

  .about-hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .about-runner {
    display: none;
  }

  .about-runner img {
    height: 340px;
  }

  .about-number {
    font-size: 80px;
  }

  .about-text h1 {
    font-size: 44px;
  }

  .about-stats-box {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }

  .stat-item {
    padding: 0 16px;
  }
}

.gallery-section {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

.section-header h2 {
  font-size: 2.8rem;
}

.section-header p {
  color: #aaa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
  margin-top: 50px;

  grid-auto-flow: dense;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

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

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: 0.4s;
}

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

.gallery-section .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: stretch;
}

.gallery-section .gallery-item,
.gallery-section .gallery-item.wide,
.gallery-section .gallery-item.tall {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
}

.gallery-section .gallery-item img {
  display: block;
}

.map-marker-dropbag {
  min-width: 40px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dcdb00;
  color: #111;
  border: 2px solid #fff;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}

.hotels-section {
  background: #111;
  color: #fff;
  padding: 88px 0 96px;
}

.hotels-section[hidden] {
  display: none;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.hotel-card {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.hotel-card-image {
  aspect-ratio: 16 / 10;
  background: #262626;
}

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

.hotel-card-body {
  padding: 22px;
}

.hotel-card-body h3 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
}

.hotel-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dcdb00;
  font-weight: 800;
  text-decoration: none;
}

.hotel-card-body a:hover {
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox img {
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.footer {
  background: #000;
  color: #fff;
  padding: 70px 0 20px;
}

.footer-logo img {
  height: 120px;
  margin-bottom: 15px;
}

.footer h5 {
  color: #dcdb00;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer p {
  color: #aaa;
  font-size: 14px;
}

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

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul a:hover {
  color: #dcdb00;
  padding-left: 5px;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  margin-right: 0;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #dcdb00;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .row.mt-5 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 26px;
    margin-left: 0;
    margin-right: 0;
  }

  .footer .row.mt-5 > .col-md-6 {
    flex: 0 0 auto;
    display: block;
    width: auto !important;
    max-width: none !important;
    padding-left: 0;
    padding-right: 0;
  }

  .footer .row.mt-5 a {
    display: inline-block;
    line-height: 0;
  }

  .footer .row.mt-5 img {
    display: block;
    height: auto !important;
    max-height: 44px;
    opacity: 1;
    visibility: visible;
  }

  .footer .row.mt-5 img[src$="kbb_bs.svg"] {
    width: 96px !important;
    max-width: 96px !important;
  }

  .footer .row.mt-5 img[src$="spor_konya.svg"] {
    width: 88px !important;
    max-width: 88px !important;
  }

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

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

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.race-hero {
  position: relative;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
}

.race-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 0px -130px;
  z-index: 1;
}

.race-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
  z-index: 2;
}

.race-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.race-hero-content h1 {
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}
.race-hero-content-head {
  font-size: 5rem !important;
}

.race-hero-content p {
  margin: 15px 0 25px;
  color: #ccc;
}

  .race-register-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #dcdb00;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 20px;
  }

  .race-register-btn:hover {
    background: #fff;
  }

  .race-hero-info {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 0;
    justify-content: center;
    display: flex;
    gap: 20px;
    z-index: 3;
  }

  .info-box {
      background: rgb(0 0 0 / 38%);
      padding: 15px 20px;
      border-radius: 10px;
      backdrop-filter: blur(6px);
      border: 1px solid #fff;
  }

  .info-box span {
    font-size: 11px;
    color: #aaa;
  }

  .info-box strong {
    display: block;
    font-size: 16px;
    margin-top: 5px;
    color: #dcdb00;
  }

@media (max-width: 768px) {

  .race-hero-content h1 {
    font-size: 2.8rem;
  }

  .race-hero-info {
    flex-direction: column;
    gap: 10px;
    bottom: 20px;
  }

}

.race-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #dcdb00;
}

.race-menu {
  list-style: none;
  margin: 0;
  padding: 15px 30px;
}

.race-menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 0.9rem;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

.race-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.25s ease;
}

.race-menu li a:hover {
  color: #000;
}

.race-menu li a:hover::after {
  width: 100%;
}

.race-menu li a.active {
  color: #000;
}

.race-menu li a.active::after {
  width: 100%;
}

.race-menu .register a {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 2px;
}

.race-menu .register a::after {
  display: none;
}

.race-menu .register a:hover {
  color: #fff;
  background: #111;
}

.race-info-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  letter-spacing: 2px;
}

.race-info-text h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 15px 0;
}

.race-info-text h2 span {
  color: #dcdb00;
}

.race-info-text p {
  color: #555;
  margin: 20px 0;
  max-width: 450px;
}

.race-info-btn {
  display: inline-block;
  font-size: .85rem;
  padding: 14px 30px;
  background: #dcdb00;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 20px;
}

.race-info-btn:hover {
  background: #000;
  color: #dcdb00;
}

.race-info-btn-ntr {
  display: inline-block;
  font-size: .85rem;
  padding: 14px 30px;
  background: #000;
  color: #dcdb00;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 20px;
}

.race-info-btn-ntr:hover {
  background: #dcdb00;
  color: #000;
}

.race-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.info-card i {
  font-size: 35px;
  color: #dcdb00;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-card p {
  font-size: 16px;
  font-weight: 600;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.info-card small {
  font-size: 11px;
  color: #999;
}

.race-section.dark {
  background: #000;
  color: #fff;
}

.parkur-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.parkur-card-top {
  padding: 25px;
  text-align: center;
}

.parkur-card-top h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.parkur-card-top p {
  color: #aaa;
  font-size: 14px;
  min-height: 60px;
}

.parkur-card-top span {
  font-size: 13px;
  color: #dcdb00;
  cursor: pointer;
}

.parkur-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.parkur-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

.parkurSwiper {
  padding: 40px 30px;
}

.parkurSwiper .swiper-slide {
  width: auto;
}

.parkurSwiper .race-card {
  max-width: 400px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-content {
  max-width: 800px;
  width: 90%;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 20px;
}

.lightbox-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.lightbox-text {
  padding-top: 25px;
}

.lightbox-text h3 {
  margin-bottom: 10px;
  color: #fff;
}

.lightbox-text p {
  color: #aaa;
}

.lightbox-close {
  position: absolute;
  color: #fff;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}

#map.race-section {
  background: #fff;
  padding: 60px 0 80px;
}

.profile-wrapper {
  background: #f5f5f5;
  border-radius: 16px;
  overflow: visible;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.cp-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px 28px 0;
  gap: 4px;
  overflow-x: auto;
}

.cp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 56px;
  flex: 1;
}

.cp-badge {
  background: #111;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 50px;
  white-space: nowrap;
  line-height: 1;
}

.cp-item.start .cp-badge,
.cp-item.finish .cp-badge {
  background: #dcdb00;
  color: #000;
}

.cp-connector {
  width: 1px;
  height: 20px;
  background: #ccc;
}

.cp-ele-text {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: #888;
  font-weight: 700;
  white-space: nowrap;
}

.cp-km {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.chart-area {
  padding: 8px 28px 0;
  position: relative;
}

#elevationChart {
  width: 100% !important;
  height: 200px !important;
  cursor: crosshair;
  display: block;
}

.dist-bar {
  display: flex;
  justify-content: space-between;
  padding: 4px 28px 16px;
}

.dist-bar span {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.5px;
}

#chartTooltip {
  position: absolute;
  background: #fff;
  border: 1px solid #dcdb00;
  border-radius: 8px;
  padding: 8px 14px;
  pointer-events: none;
  display: none;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

#chartTooltip .tt-label {
  font-size: 10px;
  color: #999;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#chartTooltip .tt-val {
  font-size: 20px;
  color: #111;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.profile-cp-popup {
  position: absolute;
  width: min(320px, calc(100% - 24px));
  max-width: calc(100% - 24px);
  z-index: 20;
  display: none;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #dcdb00;
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.18);
  padding: 14px;
}

.profile-cp-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: var(--profile-popup-arrow-x, 50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #dcdb00;
  border-top: 1px solid #dcdb00;
  transform: translateX(-50%) rotate(45deg);
}

.profile-cp-popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.profile-cp-popup .cp-popup {
  min-width: 0;
}

.profile-stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid #e8e8e8;
  flex-wrap: wrap;
}

.profile-stat {
  flex: 1;
  min-width: 120px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid #e8e8e8;
}

.profile-stat:last-child {
  border-right: none;
}

.profile-stat span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.profile-stat strong {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

#trailMap {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  margin-top: 28px;
}

.section-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  display: block;
}

.section-headline {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.race-tabs-nav {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid #e8e8e8;
  width: fit-content;
}

.race-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 12px 28px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.race-tab-btn:hover {
  color: #333;
}

.race-tab-btn.active {
  color: #111;
  border-bottom-color: #dcdb00;
}

.race-tab-panel {
  display: none;
}

.race-tab-panel.active {
  display: block;
}

.cp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.cp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
}

.cp-table thead tr {
  background: #f5f5f5;
}

.cp-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
  border-bottom: 1px solid #e8e8e8;
}

.cp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: middle;
}

.cp-table tr:last-child td {
  border-bottom: none;
}

.cp-table tr:hover td {
  background: #fafafa;
}

.cp-badge-table {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 0;
  line-height: 1.2;
}

button.cp-badge-table {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.cp-badge-table:hover,
button.cp-badge-table.is-open {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.cp-badge-table.start,
.cp-badge-table.finish {
  background: #dcdb00;
  color: #000;
}

.cp-badge-table.dropbag {
  background: #111;
  color: #dcdb00;
  box-shadow: inset 0 0 0 2px #dcdb00;
}

.cp-table td strong {
  font-weight: 800;
  color: #111;
}

.cp-table .time-limit {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #555;
}

.cp-table .time-limit.cutoff {
  background: #fff8e1;
  border-color: #dcdb00;
  color: #7a7800;
}

.cp-table-detail-row[hidden] {
  display: none;
}

.cp-table-detail-row td {
  padding: 0 16px 18px;
  background: #fafafa;
}

.cp-table-detail {
  max-width: 520px;
  background: #fff;
  border: 1px solid #ececec;
  border-left: 4px solid #dcdb00;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.cp-table-detail .cp-popup {
  min-width: 0;
}

.cp-stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
}

.cp-stat-item {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid #e8e8e8;
}

.cp-stat-item:last-child {
  border-right: none;
}

.cp-stat-item span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}

.cp-stat-item strong {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.elevation-arrow {
  font-size: 10px;
  color: #888;
  margin-left: 4px;
}

.equipment-section {
  background: #f3f3f3;
  color: #000;
}

.equipment-content {
  padding: 70px 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equipment-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.95;
  margin: 20px 0 50px;
}

.equipment-title span {
  color: #dcdb00;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 50px;
  row-gap: 34px;
}

.equipment-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.equipment-item i {
  font-size: 2rem;
  line-height: 1;
  color: #dcdb00;
  flex-shrink: 0;
  margin-top: 2px;
}

.equipment-item .ku-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-top: 2px;
  color: #dcdb00;
  background: currentColor;
  display: inline-block;
}

.ku-icon-shoe {
  clip-path: polygon(8% 58%, 42% 58%, 57% 35%, 70% 35%, 82% 57%, 96% 63%, 96% 80%, 11% 80%);
}

.ku-icon-cap {
  clip-path: polygon(13% 54%, 30% 33%, 61% 28%, 79% 41%, 87% 56%, 98% 62%, 91% 72%, 12% 72%, 4% 63%);
}

.ku-icon-bandage {
  transform: rotate(-18deg);
  border-radius: 8px;
  clip-path: polygon(8% 31%, 92% 31%, 92% 69%, 8% 69%);
}

.equipment-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #111;
  font-weight: 500;
}

.equipment-visual {
  height: 100%;
  min-height: 760px;
}

.equipment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1199px) {
  .equipment-content {
    padding: 60px;
  }

  .equipment-title {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .equipment-visual {
    min-height: 420px;
  }

  .equipment-content {
    padding: 50px 30px;
  }

  .equipment-title {
    font-size: 3.2rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .equipment-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .equipment-title {
    font-size: 2.6rem;
  }

  .equipment-item p {
    font-size: 1rem;
  }

  .equipment-visual {
    min-height: 320px;
  }
}

.races-hero {
  position: relative;
  height: 500px;
  color: #fff;
  display: flex;
  align-items: center;
}

.races-page {
  background: #f5f5f5;
  padding: 80px 0;
}

.races-page {
  background: #f3f3f3;
  padding: 90px 0;
}

.race-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.race-row {
  display: grid;
  grid-template-columns: 230px 280px 1fr 220px;

  background: #a0a0a036;
  min-height: 250px;
}

.race-row-date {
  padding: 54px 24px;
  background:#000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.race-row-date .label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 18px;
}

.race-row-date h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 0.95;
  font-weight: 500;
  color: #fff;
}

.race-row-date .day {
  margin-top: 26px;
  font-size: 1rem;
  color: #d6cf00;
  letter-spacing: 1px;
}

.race-row-image {
  overflow: hidden;
}

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

.race-row-content {
  padding: 54px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.race-row-content h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 0.95;
  color: #000;
  font-weight: 400;
}

.race-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 20px;
}

.race-row-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: #111;
  letter-spacing: 0.5px;
}

.race-row-meta i {
  color: #d6cf00;
  font-size: 0.95rem;
}

.race-row-content p {
  margin: 0;
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #7d7d7d;
  font-weight: 400;
}

.race-row-actions {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.race-row-actions a + a {

}

.action-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  min-width: 136px;
  padding-inline: 18px;
}

.action-pill span,
.action-pill i {
  transition: transform 0.28s ease;
  white-space: nowrap;
}

.action-pill span {
  position: relative;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  transform: translateX(0);
}

.action-pill i {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  font-size: 1.1rem;
  transform: translateX(0);
}

.action-pill:hover span {
  transform: translateX(-10px);
}

.action-pill:hover i {
  transform: translateX(10px);
}

.action-pill::before {
  content: "";
  width: 130px;
  height: 50px;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.action-pill.yellow {
  background: #d6cf00;
  color: #000 !important;
}
.action-pill.yellow::before {
  background: transparent;
}

.action-pill.yellow span {
  color: #000 !important;
}

.action-pill.yellow i {
  color: #d6cf00;
}

.action-pill.black {
  background: #000;
  border: 1px solid rgba(255,255,255,.24);
}

.action-pill.black::before {
  background: #000;
}

.action-pill.black span {
  color: #fff;
}

.action-pill.black i {
  color: #000;
}

.action-pill:hover::before {
  transform: translate(-50%, -50%) scale(1.04);
  transition: 0.25s ease;
}

@media (max-width: 1400px) {
  .race-row {
    grid-template-columns: 210px 240px 1fr 200px;
  }

  .race-row-content h2 {
    font-size: 3.7rem;
  }
}

@media (max-width: 1200px) {
  .race-row {
    grid-template-columns: 190px 220px 1fr 190px;
  }

  .race-row-content h2 {
    font-size: 3.2rem;
  }

  .race-row-meta span {
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .race-row {
    grid-template-columns: 1fr;
  }

  .race-row-date,
  .race-row-image,
  .race-row-content {
    border-right: none;
    border-bottom: 1px solid #3a3a3a;
  }

  .race-row-image {
    height: 260px;
  }

  .race-row-actions {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .race-row-actions a + a {
    border-top: none;
    border-left: 1px solid #3a3a3a;
  }
}

@media (max-width: 576px) {
  .race-row-date {
    padding: 30px 20px;
  }

  .race-row-date h3 {
    font-size: 2.4rem;
  }

  .race-row-date .day {
    font-size: 1.5rem;
  }

  .race-row-content {
    padding: 30px 20px;
  }

  .race-row-content h2 {
    font-size: 2.6rem;
  }

  .race-row-meta {
    gap: 14px;
  }

  .race-row-meta span {
    font-size: 1rem;
  }

  .race-row-content p {
    font-size: 0.95rem;
  }

  .race-row-actions {
    grid-template-columns: 1fr;
  }

  .race-row-actions a + a {
    border-left: none;
    border-top: 1px solid #3a3a3a;
  }

  .action-pill {
    min-height: 110px;
  }
}

.rules-section {
  background: #f3f3f3;
  padding: 20px 0;
}

.rules-head {
  max-width: 820px;
  margin: 0 auto 55px;
}

.rules-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #8f8f8f;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.rules-head h2 {
  font-size: 3.8rem;
  line-height: 0.95;
  margin-bottom: 18px;
  color: #111;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.rules-head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

.rules-accordion {
  background: transparent;
  border-top: 1px solid #dddddd;
}

.rules-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #dddddd;
  border-radius: 0 !important;
}

.rules-button {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 28px 54px 28px 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #20384f !important;
  position: relative;
}

.rules-button.collapsed {
  color: #2f4a63 !important;
}

.rules-button::after {
  background-image: none !important;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 1.8rem;
  width: auto;
  height: auto;
  transform: none;
  color: #111;
  transition: transform 0.28s ease, color 0.28s ease;
}

.rules-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #d6cf00;
}

.rules-button:hover {
  color: #000 !important;
}

.rules-button:focus {
  box-shadow: none !important;
}

.rules-body {
  padding: 0 0 30px 0;
  max-width: 1080px;
}

.rules-body p,
.rules-body li {
  font-size: 1rem;
  line-height: 1.9;
  color: #4f4f4f;
}

.rules-body p {
  margin-bottom: 18px;
}

.rules-body ul,
.rules-body ol {
  margin-bottom: 22px;
  padding-left: 22px;
}

.rules-body li {
  margin-bottom: 8px;
}

.cms-page-body {
  overflow-x: auto;
}

.cms-page-body figure.table,
.rules-body figure.table {
  margin: 28px 0;
  overflow-x: auto;
}

.cms-page-body table,
.rules-body table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: #171717;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.cms-page-body th,
.cms-page-body td,
.rules-body th,
.rules-body td {
  padding: 14px 16px;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  color: #171717;
  vertical-align: top;
}

.cms-page-body th,
.rules-body th,
.cms-page-body tr:first-child td,
.rules-body tr:first-child td {
  background: #dcdb00;
  color: #111;
  font-weight: 900;
}

.cms-page-body tbody tr:nth-child(even) td,
.rules-body tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

.cms-page-body tr:last-child td,
.rules-body tr:last-child td {
  border-bottom: 0;
}

.cms-page-body table a,
.rules-body table a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #dcdb00;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.25;
  box-shadow: inset 0 0 0 1px rgba(220,219,0,0.35);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cms-page-body table a::after,
.rules-body table a::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  font-size: 0.9em;
  line-height: 1;
}

.cms-page-body table a:hover,
.rules-body table a:hover {
  background: #dcdb00;
  color: #111;
  transform: translateY(-1px);
}

.cms-page-body td:last-child,
.rules-body td:last-child,
.cms-page-body th:last-child,
.rules-body th:last-child {
  border-right: 0;
}

.rules-subtitle {
  margin: 24px 0 14px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111;
  text-transform: uppercase;
}

.rules-columns {
  columns: 2;
  column-gap: 40px;
}

.rules-columns li {
  break-inside: avoid;
}

@media (max-width: 991px) {
  .rules-section {
    padding: 70px 0;
  }

  .rules-head h2 {
    font-size: 2.8rem;
  }

  .rules-button {
    font-size: 1.45rem;
    padding: 22px 42px 22px 0;
  }

  .rules-button::after {
    font-size: 1.4rem;
  }

  .rules-columns {
    columns: 1;
  }
}

@media (max-width: 576px) {
  .rules-head {
    margin-bottom: 35px;
  }

  .rules-head h2 {
    font-size: 2.3rem;
  }

  .rules-head p,
  .rules-body p,
  .rules-body li {
    font-size: 0.95rem;
  }

  .rules-button {
    font-size: 1.15rem;
    line-height: 1.4;
    padding-right: 34px;
  }

  .rules-button::after {
    font-size: 1.15rem;
  }
}

.navbar-brand.mobile-brand {
  padding: 0;
}
.mobile-logo-img {
  height: 45px;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 4px 8px;
}
.navbar-toggler-icon {
  filter: brightness(10);
}

@media (max-width: 991px) {

  .logo-center {
    display: none !important;
  }

  .top-bar {
    height: auto !important;
    min-height: 48px;
    padding: 6px 15px;
  }

  .top-kayit-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .navbar {
    background: rgba(0,0,0,0.92) !important;
    padding: 6px 15px;
  }

  .navbar-collapse {
    margin-top: 12px;
    border-radius: 18px;
    background: rgba(0,0,0,0.96);
    padding: 10px 16px 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  }

  .navbar .nav-link {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .navbar .dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 4px 0;
    margin: 4px 0 8px;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: #ddd;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    color: #dcdb00;
    background: transparent;
    padding-left: 22px;
  }

  .social-icons {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .navbar-collapse.show {
    padding-bottom: 14px;
  }

  .race-menu {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    padding: 12px 15px;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .race-menu li {
    flex-shrink: 0;
  }
}

.map-marker-start,
.map-marker-finish {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.map-marker-start  { background: #dcdb00; }
.map-marker-finish { background: #4caf50; color: #fff; border-color: #2e7d32; }

#trailMap {
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

.about-page-hero {
  position: relative;
  height: 60vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.about-page-hero .race-hero-bg {
  background-image: url('../img/hakkimizda_banner.jpg');
}

.about-page-hero .container {
  position: relative;
  z-index: 3;
}

.about-hero-copy {
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
}

.about-hero-title {
  margin: 0 0 18px;
  font-size: 4rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}

.about-hero-lead {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 70px;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
}

.about-section {
  padding: 90px 0;
}

.about-section:nth-child(even) {
  background: #f8f8f8;
}

.about-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.about-section h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111;
}

.about-section h2 span {
  color: #dcdb00;
}

.about-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
}

.about-feature-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-stats-band {
  background: #dcdb00;
  padding: 70px 0;
}

.about-stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.about-stat-label {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
}

.about-timeline-card {
  background: #000;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.about-timeline-title {
  margin-bottom: 24px;
  color: #dcdb00;
  font-weight: 800;
}

.about-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-timeline-index {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcdb00;
  color: #000;
  font-weight: 900;
}

.about-timeline-copy strong {
  display: block;
}

.about-timeline-copy small {
  display: block;
  color: #aaa;
}

.about-cta-link {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 20px;
  background: #dcdb00;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.about-contact-section {
  background: #111;
}

.about-contact-eyebrow {
  color: #888;
}

.about-contact-title {
  color: #fff;
}

.about-contact-text {
  color: #aaa !important;
}

.about-contact-divider {
  margin: 24px 0;
  border-color: rgba(255,255,255,0.15);
}

.about-contact-note {
  margin: 0;
  color: #aaa !important;
  font-size: 0.9rem !important;
}

@media (max-width: 991px) {
  .about-page-hero {
    min-height: 360px;
    height: 52vh;
  }

  .about-hero-copy {
    margin-top: 56px;
  }

  .about-hero-title {
    font-size: 3.35rem;
  }

  .about-hero-lead {
    padding: 0 36px;
  }

  .about-section {
    padding: 72px 0;
  }

  .about-section h2 {
    font-size: 2.25rem;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .about-timeline-card {
    padding: 30px 24px;
  }
}

@media (max-width: 767px) {
  .about-hero-copy {
    margin-top: 44px;
  }

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

  .about-hero-lead {
    font-size: 1rem;
    padding: 0 12px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-section h2 {
    font-size: 1.95rem;
  }

  .about-section p,
  .sss-section .accordion-button,
  .sss-section .accordion-body {
    font-size: 0.98rem;
  }

  .contact-card h3 {
    font-size: 1.7rem;
  }

  .about-timeline-item {
    gap: 12px;
  }

  .about-stat-value {
    font-size: 2.4rem;
  }
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card .team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #dcdb00;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #111;
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #111;
}

.team-card span {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.contact-card {
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 40px;
}

.contact-card h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #dcdb00;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #ccc;
}

.contact-item i {
  font-size: 1.3rem;
  color: #dcdb00;
  width: 24px;
  flex-shrink: 0;
}

.sss-section .accordion-button {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  background: transparent;
  padding: 20px 0;
  box-shadow: none;
}

.sss-section .accordion-button:not(.collapsed) {
  color: #111;
  background: transparent;
}

.sss-section .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: transparent;
}

.sss-section .accordion-body {
  color: #555;
  padding: 0 0 20px;
  font-size: 0.97rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .race-row {
    flex-direction: column;
    gap: 16px;
  }

  .race-row-image {
    width: 100%;
    height: 200px;
  }

  .race-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .race-row-date {
    order: -1;
  }

  .race-row-actions {
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .action-pill {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }

  .race-hero-info {
    position: static;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 15px;
    justify-content: flex-start !important;
    left: 0 !important;
  }

  .info-box {
    flex: 1 1 calc(50% - 10px);
    min-width: 130px;
  }

  .race-hero-content-head {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 992px) {
  .race-info-section {
    padding: 60px 0;
  }

  .race-info-text h2 {
    font-size: 2.5rem;
  }

  .race-info-grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .equipment-content {
    padding: 60px 30px;
  }

  .equipment-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .race-nav .container-fluid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

#chartTooltip {
  position: absolute;
  background: rgba(0,0,0,0.8);
  color: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  pointer-events: none;
  transform: translate(-50%, -120%);
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 10;
}

#chartTooltip .tt-val {
  font-weight: 700;
  color: #dcdb00;
}

.chart-area {
  position: relative;
}

.map-panel-note {
  color: #6f6f6f;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.map-empty-state {
  min-height: 450px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #ffffff 0%, #f6f3db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

.static-route-map {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.race-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.race-highlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.race-highlight-card:hover,
.race-highlight-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(220,219,0,0.55);
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  outline: none;
}

.race-highlight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.race-highlight-body {
  padding: 20px 20px 22px;
}

.race-highlight-body h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.race-highlight-body p {
  color: #b7b7b7;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

#chartTooltip {
  display: none;
}

@media (max-width: 1199px) {
  .race-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .raceSwiper {
    padding: 20px 0 42px;
  }

  .race-highlights-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .race-highlight-image img,
  .static-route-map,
  #trailMap,
  .map-empty-state {
    height: 320px;
  }
}

.kut-kayit-tablo table{width:100%;min-width:0;border-collapse:separate;border-spacing:0;background:#fff;border:1px solid #d8d8d8;border-radius:8px;overflow:hidden;box-shadow:0 14px 32px rgba(0,0,0,.08)}
.kut-kayit-tablo td{padding:14px 16px;border-bottom:1px solid #e4e4e4;color:#171717;vertical-align:middle}
.kut-kayit-tablo tr:first-child td{background:#dcdb00;color:#111;font-weight:900;text-transform:uppercase;letter-spacing:.5px}
.kut-kayit-tablo tr:last-child td{border-bottom:0}
.kut-kayit-tablo td a{display:inline-flex;align-items:center;gap:7px;padding:8px 16px;border-radius:999px;background:#111;color:#dcdb00;font-weight:800;text-decoration:none;transition:transform .2s ease,background .2s ease,color .2s ease}
.kut-kayit-tablo td a:hover{background:#dcdb00;color:#111;transform:translateY(-1px)}
@media(max-width:767px){
.kut-kayit-tablo table,.kut-kayit-tablo tbody,.kut-kayit-tablo tr,.kut-kayit-tablo td{display:block;width:100%}
.kut-kayit-tablo table{border:0;box-shadow:none;background:transparent}
.kut-kayit-tablo tr:first-child{display:none}
.kut-kayit-tablo tr{background:#fff;border:1px solid #e4e4e4;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,.06);padding:18px 18px 16px;margin-bottom:16px;text-align:center}
.kut-kayit-tablo td{border:0;padding:0}
.kut-kayit-tablo td:first-child{font-size:1.05rem;font-weight:900;color:#111;text-transform:uppercase;letter-spacing:.5px;margin-bottom:14px}
.kut-kayit-tablo td:last-child a{display:flex;justify-content:center;width:100%}
}
