@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --dark: #080C1A;
  --dark2: #0E1528;
  --dark3: #1A2744;
  --yellow: #F5C518;
  --yellow2: #E6B800;
  --white: #FFFFFF;
  --gray: #8B95A8;
  --light: #F4F6FA;
  --border: rgba(255,255,255,0.08);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 70px;
  background: rgba(8,12,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8,12,26,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-logo span { color: var(--yellow); }

.navbar-logo-sub {
  font-size: 9px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
  margin-right: 20px;
}

.navbar-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--yellow);
  background: rgba(245,197,24,0.08);
}

.navbar-cta {
  background: var(--yellow);
  color: var(--dark) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-cta:hover {
  background: var(--yellow2) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}

.navbar-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== MOBILE NAV MENU - GLOBAL ========== */
/* Her zaman gizli, sadece JS ile .open class eklenince görünür */
.mobile-nav-menu {
  display: none !important;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: rgba(8,12,26,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  z-index: 999;
  flex-direction: column;
  padding: 8px 20px 20px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-menu.open {
  display: flex !important;
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  min-height: 52px;
  transition: color .2s;
  -webkit-tap-highlight-color: rgba(245,197,24,.15);
}

.mobile-nav-menu a:last-child { border-bottom: none; }
.mobile-nav-menu a:hover,
.mobile-nav-menu a:active { color: var(--yellow); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,26,0.92) 0%, rgba(8,12,26,0.4) 60%, rgba(8,12,26,0.7) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0E1528 0%, #1a3a5c 50%, #0a1a2e 100%);
  z-index: 0;
}

.hero-dots {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--yellow);
  width: 6px;
  height: 20px;
  border-radius: 3px;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 100px 80px 80px;
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 0.9;
  color: var(--white);
  font-style: italic;
}

.hero-title .line1 {
  display: block;
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 900;
  color: var(--white);
}

.hero-title .line2 {
  display: block;
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 900;
  color: var(--yellow);
}

.hero-title .line3 {
  display: block;
  font-size: clamp(30px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: 12px;
  color: var(--white);
  margin-top: 5px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 24px 0 36px;
  max-width: 400px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--yellow2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,197,24,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

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

.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 5;
  text-align: center;
}

.hero-badge-inner {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 8px;
}

.hero-badge-inner .badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
}

.hero-badge-inner .badge-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--white);
  padding: 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 28px 40px;
  border-bottom: 3px solid var(--yellow);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(0,0,0,0.08);
}

.stat-icon {
  font-size: 24px;
  color: var(--yellow);
  flex-shrink: 0;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.section-title span { color: var(--yellow); }

.section-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 400px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.section-link:hover { color: var(--yellow); }

/* ========== LIG YAPISI ========== */
.lig-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.lig-left .section-tag { display: block; }
.lig-left .section-title { font-size: 48px; margin-bottom: 16px; }
.lig-left .section-desc { margin-bottom: 28px; }
.lig-left .btn-outline {
  color: var(--dark);
  border-color: rgba(0,0,0,0.2);
  font-size: 12px;
}
.lig-left .btn-outline:hover {
  color: var(--dark);
  border-color: var(--dark);
  background: rgba(0,0,0,0.04);
}

.lig-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stage-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.stage-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--dark3);
}

.stage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.stage-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.stage-icon {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(245,197,24,0.4);
}

.stage-body {
  padding: 28px 20px 20px;
}

.stage-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stage-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ========== MAÇ TAKVİMİ ========== */
.fixtures-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.fixtures-left .section-title { font-size: 42px; }

.fixtures-left .btn-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fixtures-left .btn-link:hover { color: var(--yellow); }

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.1);
  color: #DC2626;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
  transition: var(--transition);
}

.btn-live:hover { background: rgba(220,38,38,0.2); }

.btn-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DC2626;
  animation: pulse 1s infinite;
}

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

.fixtures-table { width: 100%; border-collapse: collapse; }

.fixtures-table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 0 12px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.fixtures-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.fixtures-table tbody tr:hover { background: rgba(245,197,24,0.03); }

.fixtures-table td {
  padding: 16px 8px;
  font-size: 14px;
  vertical-align: middle;
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.vs-badge {
  background: rgba(0,0,0,0.06);
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  flex-shrink: 0;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #DC2626;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-live::before {
  content: '●';
  animation: pulse 1s infinite;
}

.status-scheduled { color: var(--gray); font-size: 13px; }

/* ========== TAKIMLAR ========== */
.teams-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.teams-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.teams-carousel::-webkit-scrollbar { display: none; }
.teams-carousel {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.teams-carousel .team-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(245,197,24,0.15);
}

.team-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  color: var(--dark);
}

.team-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 30px rgba(245,197,24,0.15);
  transform: translateY(-4px);
}

.team-logo-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.team-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-card-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--gray);
}

.team-card-stats strong {
  color: var(--yellow);
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 5;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.carousel-btn:hover { background: var(--yellow); border-color: var(--yellow); }
.carousel-btn-prev { left: -20px; }
.carousel-btn-next { right: -20px; }

/* ========== GALERİ ========== */
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  align-items: center;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(0,0,0,0.06);
  color: var(--gray);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--yellow);
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--dark3);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 2; }

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,26,0.5);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
}

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

.gallery-empty {
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--gray);
  font-size: 14px;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  border: 2px dashed rgba(0,0,0,0.1);
}

/* ========== SPONSORS ========== */
.sponsors-section {
  padding: 50px 0;
  background: var(--light);
  overflow: hidden;
}

.sponsors-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sponsors-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  padding: 0 20px;
  text-align: center;
  flex-shrink: 0;
}

.sponsors-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.sponsors-track-wrap::before,
.sponsors-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}

.sponsors-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}

.sponsors-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.sponsors-track {
  display: flex;
  gap: 50px;
  animation: scroll-sponsors 20s linear infinite;
}

@keyframes scroll-sponsors {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.sponsor-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition);
}

.sponsor-logo:hover { filter: grayscale(0%); opacity: 1; }

.sponsor-logo img {
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
}

.sponsor-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark3);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/cta-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.cta-title span { color: var(--yellow); }

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .navbar-logo { font-size: 24px; }
.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray);
}

/* ========== PAGES ========== */
.page-hero {
  background: var(--dark);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}

.page-hero-title span { color: var(--yellow); }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.page-hero-breadcrumb a { color: var(--yellow); text-decoration: none; }

/* Standings Table */
.standings-table { width: 100%; border-collapse: collapse; }

.standings-table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 16px;
  text-align: center;
  background: var(--light);
  border-bottom: 2px solid var(--yellow);
}

.standings-table thead th:first-child { text-align: left; }

.standings-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.standings-table tbody tr:hover { background: rgba(245,197,24,0.04); }

.standings-table td {
  padding: 14px 16px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}

.standings-table td:first-child { text-align: left; }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  background: rgba(0,0,0,0.06);
  color: var(--gray);
}

.rank-badge.rank-1 { background: var(--yellow); color: var(--dark); }
.rank-badge.rank-2 { background: #C0C0C0; color: var(--dark); }
.rank-badge.rank-3 { background: #CD7F32; color: var(--white); }

.points-cell { font-weight: 700; color: var(--yellow); font-size: 16px; }

/* Contact Form */
.contact-form { max-width: 600px; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
}

textarea.form-control { resize: vertical; min-height: 120px; }

/* Alert */
.alert {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}

.alert-success { background: rgba(34,197,94,0.1); color: #166534; border: 1px solid rgba(34,197,94,0.2); }
.alert-error { background: rgba(220,38,38,0.1); color: #991B1B; border: 1px solid rgba(220,38,38,0.2); }

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
  .lig-layout { grid-template-columns: 1fr; }
  .lig-stages { grid-template-columns: repeat(3, 1fr); }
  .fixtures-layout { grid-template-columns: 1fr; }
  .fixtures-left .section-title { font-size: 36px; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }
  
  .hero-content { padding: 80px 24px 60px; }
  .hero-badge { display: none; }
  .hero-title .line1, .hero-title .line2 { font-size: 72px; }
  
  .stats-inner {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .stat-item { border-left: none !important; }
  
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  
  .lig-stages { grid-template-columns: 1fr; }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .fixtures-table thead th:nth-child(3),
  .fixtures-table td:nth-child(3) { display: none; }
  
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  /* mobile-nav-menu artık global olarak tanımlı */
}

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

.lightbox.open { display: flex; }

.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
}

.lightbox-close:hover { opacity: 1; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Hero Slider Background */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}


/* ================================================================
   NCL — TAM MOBİL UYUM (iOS + Android + Tüm Ekranlar)
   320px'den 4K'ya kadar responsive
   ================================================================ */

/* ── GLOBAL TEMEL ── */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #080C1A;
}

body {
  overflow-x: hidden;
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* iOS notch safe area değişkenleri */
:root {
  --safe-top:   env(safe-area-inset-top, 0px);
  --safe-bot:   env(safe-area-inset-bottom, 0px);
  --safe-left:  env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --nav-h: 70px;
}

/* ── iOS LINK FIX ── */
a {
  -webkit-tap-highlight-color: rgba(245,197,24,.12);
  touch-action: manipulation;
  cursor: pointer;
}
button {
  touch-action: manipulation;
  cursor: pointer;
}

/* ── iOS INPUT ZOOM ENGELİ (font < 16px zoom yapar) ── */
input, select, textarea,
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], input[type="search"] {
  font-size: 16px !important;
  -webkit-appearance: none;
}
select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px !important;
}

/* ── SCROLLBAR GİZLE ── */
::-webkit-scrollbar { width: 0; height: 0; background: transparent; }
* { scrollbar-width: none; }

/* ── NAVBAR — FIXED + SAFE AREA ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  padding-left: max(40px, var(--safe-left));
  padding-right: max(40px, var(--safe-right));
  background: rgba(8,12,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}

/* Body padding — fixed navbar altında içerik */
body {
  padding-top: calc(var(--nav-h) + var(--safe-top));
}
/* Hero ve hero benzeri ilk bölümler — padding-top ile birlikte */
.hero { margin-top: 0; min-height: calc(100svh - var(--nav-h) - var(--safe-top)); }
.page-hero, .tk-hero, .op-hero { margin-top: 0; }

/* ── MOBİL NAV MENU — HER ZAMAN GİZLİ ── */
.mobile-nav-menu {
  display: none !important;
  position: fixed;
  top: calc(var(--nav-h) + var(--safe-top));
  left: 0; right: 0;
  bottom: 0;
  background: rgba(8,12,26,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px max(20px, var(--safe-left)) calc(20px + var(--safe-bot)) max(20px, var(--safe-right));
}
.mobile-nav-menu.open {
  display: flex !important;
}
.mobile-nav-menu a {
  display: flex !important;
  align-items: center;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-height: 56px;
  transition: color .15s;
}
.mobile-nav-menu a:last-child { border-bottom: none; }
.mobile-nav-menu a:active { color: var(--yellow); }

/* ── HAMBURGER ── */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  flex-shrink: 0;
}
.navbar-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.navbar-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HOVER: SADECE MOUSE CİHAZLARDA ── */
@media (hover: none) and (pointer: coarse) {
  .team-card:hover, .team-page-card:hover,
  .news-card:hover, .stage-card:hover { transform: none !important; }
  .team-card:active, .team-page-card:active {
    transform: scale(0.97) !important;
    transition: transform .1s !important;
  }
  .navbar-cta:hover { transform: none !important; }
}

/* ── FOOTER SAFE AREA ── */
.footer {
  padding-bottom: max(24px, calc(24px + var(--safe-bot)));
}
footer {
  padding-bottom: calc(16px + var(--safe-bot));
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; opacity: .7;
}

/* ── HERO SLIDER ── */
.hero-slider-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }

/* ================================================================
   TABLET  (768px — 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .navbar { padding-left: 24px; padding-right: 24px; }
  .hero-content { padding: 80px 32px 60px; }
  .hero-title .line1, .hero-title .line2 { font-size: 80px; }
  .hero-badge { display: none; }
  .lig-layout { grid-template-columns: 1fr; }
  .lig-stages { grid-template-columns: repeat(3, 1fr); }
  .fixtures-layout { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .tk-grid { grid-template-columns: 1fr 280px; gap: 16px; }
  .op-grid { grid-template-columns: 1fr 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}

/* ================================================================
   MOBİL  (max 768px) — iPhone / Android telefon yatay
   ================================================================ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar {
    padding-left: max(16px, var(--safe-left));
    padding-right: max(16px, var(--safe-right));
  }
  .navbar-nav { display: none !important; }
  .navbar-hamburger { display: flex; }

  /* ── Container / Section ── */
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title { font-size: 28px !important; }

  /* ── Page Hero ── */
  .page-hero { padding: 32px 0 28px; }
  .page-hero-title { font-size: 2rem; }

  /* ── Ana Hero ── */
  .hero-content { padding: 32px 16px 40px; max-width: 100%; }
  .hero-title .line1, .hero-title .line2 { font-size: 52px; line-height: 1; }
  .hero-title .line3 { font-size: 20px; letter-spacing: 6px; }
  .hero-desc { font-size: 14px; margin: 16px 0 24px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons a, .hero-buttons button { width: 100%; text-align: center; justify-content: center; }
  .hero-badge { display: none; }
  .hero-dots { display: none; }

  /* ── Stats Bar ── */
  .stats-inner { flex-wrap: wrap; gap: 16px; justify-content: center; padding: 20px 16px; }
  .stat-item { border-left: none !important; padding: 0 12px; }
  .stat-number { font-size: 28px; }

  /* ── Takımlar ── */
  .teams-page-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .tpc-logo { width: 60px; height: 60px; }
  .tpc-name { font-size: 14px; }
  .tpc-stats { gap: 8px; }

  /* ── Takım Sayfası ── */
  .tk-grid { grid-template-columns: 1fr !important; }
  .tk-right { order: -1; }
  .tk-hero-content { flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 20px; }
  .tk-logo-wrap { width: 90px; height: 90px; border-radius: 12px; }
  .tk-name { font-size: 2rem !important; }
  .tk-stats-band { flex-wrap: wrap; }
  .tk-stat { flex: 0 0 33.33%; padding: 10px 4px; }
  .tk-stat-div { display: none; }
  .tk-stat-n { font-size: 1.35rem; }
  .tk-players-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .tk-player-card { padding: 10px 12px; }
  .tk-player-name { font-size: .82rem; }

  /* ── Oyuncu Sayfası ── */
  .op-grid { grid-template-columns: 1fr !important; }
  .op-right { order: -1; }
  .op-hero-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .op-avatar { width: 90px; height: 90px; border-radius: 12px; }
  .op-no { font-size: 2.8rem; }
  .op-name { font-size: 1.8rem; }
  .op-band { flex-wrap: wrap; }
  .op-band-stat { flex: 0 0 25%; padding: 10px 4px; }
  .op-band-div { display: none; }
  .op-band-n, .op-band-n-red { font-size: 1.35rem; }
  .op-sg { grid-template-columns: repeat(3, 1fr); }
  .op-mt th:nth-child(n+7), .op-mt td:nth-child(n+7) { display: none; }

  /* ── Fikstür ── */
  .fixtures-table { font-size: 13px; }
  .fixtures-table th, .fixtures-table td { padding: 8px 6px; }
  .fixtures-table thead th:nth-child(4), .fixtures-table td:nth-child(4),
  .fixtures-table thead th:nth-child(6), .fixtures-table td:nth-child(6),
  .fixtures-table thead th:nth-child(7), .fixtures-table td:nth-child(7) { display: none; }

  /* ── Puan Tablosu ── */
  .standings-table { font-size: 13px; }
  .standings-table th, .standings-table td { padding: 8px 6px; }
  .tk-standings-table th, .tk-standings-table td { padding: 8px 6px; font-size: 12px; }

  /* ── İstatistik ── */
  .stat-filter-form { flex-direction: column; gap: 8px; }
  .stat-filter-group select { width: 100% !important; max-width: 100% !important; }
  .stat-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .stat-table { min-width: 500px; font-size: .8rem; }
  .stat-table th, .stat-table td { padding: 7px 6px; }
  .leaders-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── Haberler ── */
  .news-grid { grid-template-columns: 1fr !important; gap: 14px; }

  /* ── Galeri ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 130px !important;
  }
  .gallery-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item:nth-child(1) { grid-column: span 2 !important; }

  /* ── Hakkımızda ── */
  .about-grid { grid-template-columns: 1fr !important; }
  .lig-layout { grid-template-columns: 1fr; }
  .lig-stages { grid-template-columns: 1fr; }

  /* ── İletişim / Başvuru ── */
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }

  /* ── CTA ── */
  .cta-inner { text-align: center; }
  .cta-title { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-actions a { width: 100%; text-align: center; justify-content: center; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* ── Tablo yatay scroll genel ── */
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* ── Minimal tap hedefi ── */
  .btn-primary, .btn-outline, .navbar-cta,
  .team-page-card, .news-card, .op-mate, .tk-player-card {
    min-height: 44px;
  }
}

/* ================================================================
   KÜÇÜK MOBİL  (max 480px) — iPhone SE, küçük Android
   ================================================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-title .line1, .hero-title .line2 { font-size: 40px; }
  .page-hero-title { font-size: 1.7rem; }
  .section-title { font-size: 24px !important; }
  .teams-page-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .tpc-name { font-size: 13px; }
  .tk-name { font-size: 1.7rem !important; }
  .op-name { font-size: 1.6rem !important; }
  .op-band-stat { flex: 0 0 25%; }
  .op-sg { grid-template-columns: repeat(2, 1fr); }
  .leaders-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .stat-table { min-width: 420px; font-size: .75rem; }
}

/* ================================================================
   ÇOK KÜÇÜK  (max 360px) — Galaxy S5, eski Android
   ================================================================ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title .line1, .hero-title .line2 { font-size: 34px; }
  .teams-page-grid { grid-template-columns: 1fr !important; }
  .op-band-stat { flex: 0 0 33.33%; }
  .tk-stat { flex: 0 0 50%; }
  .op-name { font-size: 1.4rem !important; }
  .tk-name { font-size: 1.5rem !important; }
  .op-sg { grid-template-columns: repeat(2, 1fr); }
  .stat-table { min-width: 360px; }
}

/* ================================================================
   SADECE MOBİL YATAY  (landscape + kısa ekran)
   ================================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 20px 0; }
  .hero-content { padding: 20px 16px; }
  .hero-title .line1, .hero-title .line2 { font-size: 36px; }
  .mobile-nav-menu {
    overflow-y: auto;
    padding-bottom: max(12px, var(--safe-bot));
  }
}

/* ================================================================
   TABLET PORTRAIT  (481px — 768px)
   ================================================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .teams-page-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .news-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .op-band-stat { flex: 0 0 12.5%; }
}

/* ================================================================
   iOS SAFARI ÖZEL DÜZELTMELER
   ================================================================ */
@supports (-webkit-touch-callout: none) {
  /* Notch padding navbar'da */
  .navbar {
    padding-top: env(safe-area-inset-top);
    height: calc(70px + env(safe-area-inset-top));
  }
  body { padding-top: calc(70px + env(safe-area-inset-top)); }

  /* iOS'ta fixed position scroll bug — transform kullan */
  .mobile-nav-menu {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* Bounce scroll önle */
  .mobile-nav-menu {
    overscroll-behavior: contain;
  }
}

/* ================================================================
   ANDROID CHROME ÖZEL
   ================================================================ */
@supports not (-webkit-touch-callout: none) {
  /* Android'de theme color */
  html { background-color: #080C1A; }
}

/* ================================================================
   GENEL YARDIMcı SINIFLAR
   ================================================================ */
.overflow-scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.overflow-scroll-x::-webkit-scrollbar { display: none; }

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