 :root {
  color-scheme: light;
  --bg: #fafaf9;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  /* Anayol Partisi: sarı + siyah + mavi */
  --primary: #F5C518;
  --primary-600: #CA8A04;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --border: #e7e5e4;
  --shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --container: 1600px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

/* Footer altında beyazlık olmaması için: sayfa dibi footer ile aynı renk */
html {
  background: #1a1a1a;
  overflow-x: hidden;
}

/* Logo paleti: sarı (primary), siyah, mavi (accent) */

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #f8fafc 0%, #f1f5f9 45%, #eef2f7 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

.container {
  width: 100%;
  max-width: min(1600px, 100vw);
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.topbar {
  background: #1a1a1a;
  color: #F5C518;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  background: rgba(245, 197, 24, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  color: #fef3c7;
}

header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 33px;
  z-index: 25;
  backdrop-filter: blur(12px);
}

.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
}

.logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  display: block;
}

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

.search {
  flex: 1;
  display: flex;
  max-width: 420px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 15px;
}

.search input {
  border: none;
  background: transparent;
  padding: 8px 12px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.search button {
  border: none;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.search button:hover {
  background: var(--primary-600);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sosyal Medya Iconları */
.social-media-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 15px;
  flex-shrink: 0;
  order: 0;
}

.social-media-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #64748b;
}

.social-media-icons .social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.social-media-icons .social-icon i {
  font-size: 18px;
}

.social-media-icons .social-icon--facebook {
  color: #1877f2;
}

.social-media-icons .social-icon--facebook:hover {
  background: #1877f2;
  color: white;
}

.social-media-icons .social-icon--twitter {
  color: #1da1f2;
}

.social-media-icons .social-icon--twitter:hover {
  background: #1da1f2;
  color: white;
}

.social-media-icons .social-icon--instagram {
  color: #e4405f;
}

.social-media-icons .social-icon--instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-media-icons .social-icon--youtube {
  color: #ff0000;
}

.social-media-icons .social-icon--youtube:hover {
  background: #ff0000;
  color: white;
}

.social-media-icons .social-icon--whatsapp {
  color: #25d366;
}

.social-media-icons .social-icon--whatsapp:hover {
  background: #25d366;
  color: white;
}

.social-media-icons .social-icon--telegram {
  color: #0088cc;
}

.social-media-icons .social-icon--telegram:hover {
  background: #0088cc;
  color: white;
}

.btn {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.btn.primary {
  background: var(--primary);
  color: var(--accent);
  border-color: transparent;
}

.btn.primary:hover {
  background: var(--primary-600);
  color: var(--accent);
}

.btn--company {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
  color: white;
  border-color: transparent;
}

.btn--company:hover {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(75, 85, 99, 0.3);
}

.btn--classified {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border-color: transparent;
}

.btn--classified:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn i {
  margin-right: 6px;
  font-size: 12px;
}

/* Masaüstü görünümü - Sosyal medya ikonları arama kutusu ile giriş butonu arasında */
@media (min-width: 901px) {
  .header__main {
    flex-wrap: nowrap;
  }
  
  .social-media-icons {
    order: 0;
    margin: 0 15px;
  }
  
  .search {
    order: 0;
    margin: 0 15px;
  }
  
  .header__actions {
    order: 0;
  }
}

@media (max-width: 968px) {
  .header__actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .btn--company,
  .btn--classified {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .btn--company i,
  .btn--classified i {
    margin-right: 4px;
  }
}

.nav {
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--primary);
  background: #fffbeb;
  position: sticky;
  top: 113px;
  z-index: 20;
}

.nav .container {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  overflow-x: auto;
}

.nav a {
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.nav a.active {
  color: var(--primary-600);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.nav__toggle {
  display: none;
  border: none;
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobil/tablet menü overlay - menü dışına tıklayınca kapanır */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .nav-overlay {
    display: none !important;
  }
}

.ticker {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  color: white;
  overflow: hidden;
  position: sticky;
  top: 153px;
  border-bottom: 2px solid var(--primary);
  z-index: 15;
  min-height: 40px;
  display: block;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.ticker__label {
  background: var(--primary);
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 197, 24, 0.4);
  position: relative;
  z-index: 2;
}

.ticker__track {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker__inner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent, #1e293b);
  z-index: 3;
  pointer-events: none;
}

.ticker__inner::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, #1e293b, transparent);
  z-index: 3;
  pointer-events: none;
}

.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__track a {
  display: inline-block;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
  transition: color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.ticker__track a:hover {
  color: var(--primary);
}

.ticker__track a span {
  display: inline-block;
}

.ticker__track a span::before {
  content: '•';
  color: var(--primary);
  margin-right: 16px;
  font-weight: 900;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.emphasis-badge {
  animation: blink 1.5s infinite;
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}

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

main {
  padding: 24px 0 32px;
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.card__image {
  background: linear-gradient(120deg, #94a3b8, #e2e8f0);
  background-image: url("https://picsum.photos/seed/default-card/1200/675");
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
}

.card__body {
  padding: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #1a1a1a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Manşet, galeri, kategori kartlarındaki etiketler – hepsi sarı zemin mavi yazı */
.grid-card .badge,
.gallery-card .badge,
.gallery-body .badge,
.card .badge,
.article .badge,
.mini-card .badge {
  background: var(--primary) !important;
  color: var(--accent) !important;
}

.headline {
  font-size: 20px;
  margin: 12px 0 8px;
  font-weight: 700;
  color: #1a1a1a;
}

.headline a {
  color: #1a1a1a;
  font-weight: 700;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.side-list {
  display: grid;
  gap: 16px;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.mini-card .thumb {
  width: 92px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #cbd5f5, #bfdbfe);
  flex-shrink: 0;
}

.section {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch; /* Her iki kolonun da aynı yüksekliğe ulaşması için */
}

/* Kim Kimdir: başlık solda, slider tam genişlikte hemen altında */
.section--whois {
  grid-template-columns: 1fr;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.section--whois .section__title {
  margin-bottom: 12px;
  justify-content: flex-start;
  text-align: left;
}
.section--whois .section__title h2 {
  text-align: left;
}
.section--whois .whois-slider-container {
  width: 100%;
}
.section--whois {
  margin-bottom: 8px;
}

/* Gündem + Anket bölümü için özel hizalama */
.section > div:first-child {
  display: flex;
  flex-direction: column;
  height: 100%; /* Grid'in tam yüksekliğini alması için */
}

.section > div:first-child .section__title {
  margin-bottom: 16px;
}

.section > div:first-child .section__grid {
  flex: 1;
}

/* Anket sidebar'ı Gündem grid'i ile hizalı - Bu kural aşağıda daha spesifik olarak tanımlanmış */

.section--equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section--stack {
  grid-template-columns: 1fr;
}

/* Firma Rehberi / İlan Rehberi: başlık üstte, kutular hemen altında (Kim Kimdir / Manşet gibi) */
.section--fullwidth {
  grid-template-columns: 1fr;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.section--fullwidth .section__inner {
  width: 100%;
  min-width: 0;
}
.section--fullwidth .section__title {
  margin-bottom: 12px;
  justify-content: flex-start;
  text-align: left;
}
.section--fullwidth .section__title h2 {
  text-align: left;
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.section__grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section__grid .card__body {
  flex: 1;
}

.card__body .headline,
.card__body .headline a {
  font-weight: 700;
  color: #1a1a1a;
}

.section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  margin-top: 0;
}

.section__title h2 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}

.section__title a {
  display: inline-block;
  background: var(--primary);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s;
  text-decoration: none;
}

.section__title a:hover {
  opacity: 0.9;
  color: #1a1a1a;
}

/* Galeri / kart badge – sarı zemin, kalın siyah yazı */
.gallery-body .badge,
.gallery-card .badge,
.grid-card .badge,
.card .badge,
.article .badge {
  background: var(--primary);
  color: #1a1a1a;
  font-weight: 700;
}

.sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section > div:first-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section > aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.section > div:first-child .section__title {
  margin-top: 0;
  margin-bottom: 16px;
}

.section > aside .section__title {
  margin-top: 0;
}

.sidebar .card {
  width: 100%;
  overflow: hidden;
}

.list {
  display: grid;
  gap: 12px;
}

.list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list__item .headline,
.list__item .headline a {
  font-weight: 700;
  color: #1a1a1a;
}

.list__index {
  font-weight: 700;
  color: var(--primary);
  min-width: 22px;
}

.video-card {
  position: relative;
}

.video-card::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-size: 42px;
  background: rgba(15, 23, 42, 0.45);
}

.newsletter {
  display: grid;
  gap: 12px;
}

.newsletter input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.banner-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.banner {
  border-radius: 16px;
  min-height: 120px;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #7f1d1d;
  border: 1px solid #fecaca;
}

.slider-section {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

.slider {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.slider[data-slider="main"] {
  min-height: 420px;
}

.slider[data-slider="main"] .slide__media {
  height: 420px;
  min-height: 420px;
}

.slider__track {
  display: flex;
  transition: transform 0.4s ease;
  flex: 1;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slide__media {
  position: relative;
  height: 420px;
  min-height: 420px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  overflow: hidden;
}

.slide__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.slide__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.75) 70%);
  color: white;
}

.slide__content .headline {
  color: white;
  font-size: 26px;
  margin: 8px 0 6px;
}

.slide__content .meta {
  color: #e2e8f0;
}

.slider__nav {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider__btn {
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.slider__dots {
  position: absolute;
  left: 16px;
  top: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: white;
  width: 18px;
}

.slider__thumbs {
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  gap: 6px;
  padding: 10px 12px 14px;
  background: #0f172a;
  min-height: 44px;
  align-items: center;
}

.thumb-btn {
  border: none;
  background: #1f2937;
  color: #e2e8f0;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

.thumb-btn.active {
  background: var(--primary);
  color: white;
}

.side-tabs {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.side-tab {
  background: rgba(15, 23, 42, 0.75);
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.side-tab.active {
  background: var(--primary);
}

.slider[data-slider="main"] .slider__dots {
  display: none;
}

.slider[data-slider="side"] {
  min-height: 420px;
}

.slider[data-slider="side"] .slide {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slider[data-slider="side"] .slide__media {
  height: 420px;
  min-height: 420px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.slider[data-slider="side"] .slide__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.slider[data-slider="side"] .slider__dots {
  display: none;
}

.spotlight-slider {
  position: relative;
  overflow: hidden;
}

.spotlight-track {
  display: flex;
  transition: transform 0.4s ease;
}

.spotlight-slide {
  min-width: 100%;
}

.spotlight-nav {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

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

.grid-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.grid-card .thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #c7d2fe, #e0f2fe);
  background-size: cover;
  background-position: center;
}

.grid-card .content {
  padding: 10px;
}

.grid-card .content .headline {
  font-size: 14px;
  margin: 6px 0;
  font-weight: 700;
  color: #1a1a1a;
}

.grid-card .content .headline a {
  color: #1a1a1a;
  font-weight: 700;
}

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

.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  min-height: 400px;
  background-color: #f8fafc;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.gallery-thumb.video {
  position: relative;
}

.gallery-thumb.video::after {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.35);
  z-index: 1;
}

.video-play-icon,
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(225, 29, 72, 0.9);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-hero .video-play-overlay {
  width: 100px;
  height: 100px;
  background: rgba(225, 29, 72, 0.95);
}

.video-play-overlay:hover,
.video-play-icon:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration-badge,
.video-duration-small {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.video-duration-small {
  bottom: 8px;
  right: 8px;
  padding: 4px 8px;
  font-size: 11px;
}

.video-hero .video-duration-badge {
  bottom: 100px;
  font-size: 14px;
  padding: 8px 12px;
}

.video-hero {
  position: relative;
}

.video-side {
  position: relative;
}

.video-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  z-index: 1;
}

.gallery-hero-image.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
  z-index: 1;
}

.gallery-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.gallery-body .headline {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Foto Galeri Sayfa Layout */
.gallery-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  margin-top: 24px;
}

.gallery-page-main {
  min-width: 0;
}

.gallery-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-sidebar-ad {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

/* Hero Section */
.gallery-hero-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.gallery-hero-main {
  min-width: 0;
}

.gallery-hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
}

.gallery-hero-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.gallery-hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.gallery-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 2;
}

.gallery-hero-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 12px 0 0 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-side-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-side-card a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.gallery-side-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-side-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.gallery-side-body .headline {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Yatay Reklam Alanı */
.gallery-ad-horizontal {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 32px 0;
  text-align: center;
}

.gallery-ad-horizontal img {
  max-width: 100%;
  height: auto;
}

/* Grid Section */
.gallery-grid-section {
  margin-top: 32px;
}

.gallery-section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--text);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.piyasalar-section .market-grid--live {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.market-card {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  display: grid;
  gap: 8px;
  min-height: 110px;
}

.market-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #0f172a;
}

.market-card__value {
  font-size: 20px;
  font-weight: 700;
}

.change {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.change.up {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}

.change.down {
  background: rgba(239, 68, 68, 0.16);
  color: #b91c1c;
}

/* Piyasalar – Doviz.com tarzı (koyu mavi şerit, yatay kartlar) */
.piyasalar-doviz {
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.piyasalar-doviz__bar {
  display: flex;
  align-items: stretch;
  background: #1a3366;
  min-height: 72px;
}

.piyasalar-doviz__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.piyasalar-doviz__brand i {
  font-size: 18px;
  opacity: 0.95;
}

.piyasalar-doviz__strip {
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  -webkit-overflow-scrolling: touch;
}

.piyasalar-doviz__strip::-webkit-scrollbar {
  height: 6px;
}

.piyasalar-doviz__strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.piyasalar-doviz__card {
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 180px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.piyasalar-doviz__card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.piyasalar-doviz__card-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.piyasalar-doviz__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

.piyasalar-doviz__icon.fa-dollar-sign { background: rgba(34, 197, 94, 0.3); color: #86efac; }
.piyasalar-doviz__icon.fa-euro-sign   { background: rgba(59, 130, 246, 0.35); color: #93c5fd; }
.piyasalar-doviz__icon.fa-coins       { background: rgba(245, 158, 11, 0.4); color: #fcd34d; }
.piyasalar-doviz__icon.fa-chart-line  { background: rgba(139, 92, 246, 0.35); color: #c4b5fd; }
.piyasalar-doviz__icon.fa-sterling-sign { background: rgba(20, 184, 166, 0.3); color: #5eead4; }
.piyasalar-doviz__icon.fa-oil-well   { background: rgba(239, 68, 68, 0.25); color: #fca5a5; }
.piyasalar-doviz__icon--btc { background: rgba(247, 147, 26, 0.4); color: #fbbf24; font-weight: 700; font-size: 16px; }
.piyasalar-doviz__icon--eth { background: rgba(129, 74, 230, 0.4); color: #a78bfa; font-weight: 700; font-size: 16px; }

.piyasalar-doviz__name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.piyasalar-doviz__value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.piyasalar-doviz__unit {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 2px;
}

.piyasalar-doviz__change {
  font-size: 12px;
  font-weight: 700;
}

.piyasalar-doviz__change--up {
  color: #4ade80;
}

.piyasalar-doviz__change--down {
  color: #f87171;
}

.piyasalar-doviz__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.piyasalar-doviz__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.piyasalar-doviz__link i {
  font-size: 12px;
}

.piyasalar-doviz__empty {
  padding: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .piyasalar-doviz__bar {
    flex-wrap: wrap;
  }
  .piyasalar-doviz__brand {
    padding: 12px 16px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .piyasalar-doviz__strip {
    flex: 1 1 100%;
    min-height: 80px;
  }
  .piyasalar-doviz__card {
    min-width: 130px;
    padding: 10px 14px;
  }
  .piyasalar-doviz__value {
    font-size: 16px;
  }
}

/* Eski piyasalar grid (başka sayfalarda kullanılıyorsa) */
.piyasalar-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.piyasalar-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.piyasalar-section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.piyasalar-section__title i {
  opacity: 0.9;
}

.piyasalar-section__link {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, color 0.2s;
}

.piyasalar-section__link:hover {
  background: var(--primary);
  color: #1a1a1a;
}

.market-grid--live {
  margin-top: 0;
  gap: 16px;
}

.market-card--live {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  min-height: auto;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.market-card--live:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.market-card--live:hover .market-card__icon {
  transform: scale(1.08);
}

.market-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.market-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.market-card--live:hover .market-card__icon {
  transform: scale(1.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.market-card__icon.fa-dollar-sign { background: rgba(34, 197, 94, 0.25); color: #4ade80; }
.market-card__icon.fa-euro-sign   { background: rgba(59, 130, 246, 0.3); color: #60a5fa; }
.market-card__icon.fa-coins       { background: rgba(245, 158, 11, 0.35); color: #fbbf24; }
.market-card__icon.fa-chart-line  { background: rgba(139, 92, 246, 0.3); color: #a78bfa; }
.market-card__icon.fa-sterling-sign { background: rgba(20, 184, 166, 0.25); color: #2dd4bf; }
.market-card__icon.fa-oil-well    { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.market-card__icon--btc          { background: rgba(247, 147, 26, 0.35); color: #f7931a; font-weight: 700; font-size: 20px; }
.market-card__icon--eth          { background: rgba(129, 74, 230, 0.35); color: #a78bfa; font-weight: 700; font-size: 20px; }

.market-card__name {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.market-card__header + .market-card__value {
  margin-top: 2px;
}

.market-card--live .market-card__value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.market-card__unit {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

.market-card__change {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 8px;
  width: fit-content;
}

.market-card__change .change__icon {
  font-size: 10px;
}

.change--up {
  background: rgba(34, 197, 94, 0.25);
  color: #4ade80;
}

.change--down {
  background: rgba(239, 68, 68, 0.25);
  color: #f87171;
}

.market-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  color: #94a3b8;
  margin: 0;
}

@media (max-width: 1024px) {
  .piyasalar-section .market-grid--live {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .piyasalar-section {
    padding: 16px;
  }
  .piyasalar-section .market-grid--live {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .market-card--live {
    padding: 12px;
  }
  .market-card--live .market-card__value {
    font-size: 18px;
  }
  .market-card__icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .market-card__icon--btc,
  .market-card__icon--eth {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .piyasalar-section .market-grid--live {
    grid-template-columns: 1fr;
  }
}

/* Süper Lig – PUAN DURUMU (sporx birebir, 18 takım logolu, masaüstü düzgün) */
.puan-durumu {
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.puan-durumu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #1a3366;
  border-bottom: none;
}

.puan-durumu__title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.04em;
}

.puan-durumu__tab {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.puan-durumu__tab:hover {
  background: #fff;
  color: #1a3366;
}

.puan-durumu__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.puan-durumu__tab--primary {
  background: var(--primary, #F5C518);
  color: #1a1a1a;
}

.puan-durumu__tab--primary:hover {
  background: #e5b508;
  color: #1a1a1a;
}

.puan-durumu__wrap {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 560px;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
}

.puan-durumu__table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 12px;
}

.puan-durumu__table th,
.puan-durumu__table td {
  padding: 8px 6px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  vertical-align: middle;
}

.puan-durumu__table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f1f5f9;
}

.puan-durumu__table th {
  color: #475569;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 6px;
}

.puan-durumu__table th:first-child,
.puan-durumu__table td:first-child { text-align: left; padding-left: 10px; width: 32px; }
.puan-durumu__table th:nth-child(2),
.puan-durumu__table td:nth-child(2) { text-align: left; padding-left: 8px; min-width: 130px; }
.puan-durumu__table .puan-durumu__pts { font-weight: 800; color: #1a1a1a; font-size: 13px; }

.puan-durumu__row {
  transition: background 0.15s;
}

.puan-durumu__row:hover {
  background: #f8fafc;
}

.puan-durumu__row--first {
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.15) 0%, transparent 100%);
}

.puan-durumu__row--top {
  background: rgba(245, 197, 24, 0.06);
}

.puan-durumu__row--gs { border-left: 3px solid #fdb913; }
.puan-durumu__row--fb { border-left: 3px solid #ffed00; }
.puan-durumu__row--bjk { border-left: 3px solid #000; }

.puan-durumu__rank {
  white-space: nowrap;
  font-weight: 700;
  color: #64748b;
}

.puan-durumu__trophy {
  color: #eab308;
  margin-left: 3px;
  font-size: 11px;
}

.puan-durumu__team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.puan-durumu__logo {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f1f5f9;
  padding: 2px;
}

.puan-durumu__team-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 12px;
}

.puan-durumu__av {
  font-weight: 700;
  color: #0f172a;
}

.puan-durumu__empty {
  text-align: center;
  padding: 24px 16px;
  color: #64748b;
  margin: 0;
  font-size: 14px;
}

.puan-durumu__empty a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .puan-durumu__wrap {
    margin: 0 -12px;
    padding: 0 12px;
  }
  .puan-durumu__table {
    min-width: 480px;
    font-size: 12px;
  }
  .puan-durumu__table th,
  .puan-durumu__table td {
    padding: 6px 4px;
  }
  .puan-durumu__logo {
    width: 20px;
    height: 20px;
  }
}

/* Puan durumu – Süper Lig (sporx tarzı, mobil uyumlu) */
.puan-durumu {
  overflow: hidden;
  padding: 0;
}

.puan-durumu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 2px solid var(--primary);
}

.puan-durumu__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.puan-durumu__tab {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, color 0.2s;
}

.puan-durumu__tab:hover {
  background: var(--primary);
  color: #1a1a1a;
}

.puan-durumu__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.puan-durumu__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
}

.puan-durumu__table th,
.puan-durumu__table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.puan-durumu__table th {
  color: var(--muted);
  font-weight: 700;
  background: #f8fafc;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.puan-durumu__table th:first-child,
.puan-durumu__table td:first-child { text-align: left; padding-left: 12px; }
.puan-durumu__table th:nth-child(2),
.puan-durumu__table td:nth-child(2) { text-align: left; }
.puan-durumu__table td:last-child,
.puan-durumu__table th:last-child { font-weight: 700; color: #1a1a1a; }

.puan-durumu__row {
  transition: background 0.15s;
}

.puan-durumu__row:hover {
  background: #f8fafc;
}

.puan-durumu__row--top {
  background: rgba(245, 197, 24, 0.08);
}

.puan-durumu__row--first {
  background: rgba(245, 197, 24, 0.14);
  font-weight: 600;
}

.puan-durumu__row--gs { background: rgba(255, 215, 0, 0.12); }
.puan-durumu__row--fb { background: rgba(0, 51, 153, 0.08); }
.puan-durumu__row--bjk { background: rgba(0, 0, 0, 0.06); }

.puan-durumu__rank {
  white-space: nowrap;
}

.puan-durumu__trophy {
  color: var(--primary);
  margin-left: 4px;
  font-size: 12px;
}

.puan-durumu__team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.puan-durumu__logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.puan-durumu__team-name {
  font-weight: 600;
  color: #1a1a1a;
}

.puan-durumu__av {
  font-weight: 600;
}

.puan-durumu__pts {
  font-weight: 800;
  color: #1a1a1a;
}

.puan-durumu__empty {
  padding: 24px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.puan-durumu__empty a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .puan-durumu__head {
    padding: 12px 14px;
  }
  .puan-durumu__title {
    font-size: 14px;
  }
  .puan-durumu__table th,
  .puan-durumu__table td {
    padding: 8px 6px;
    font-size: 12px;
  }
  .puan-durumu__logo {
    width: 22px;
    height: 22px;
  }
}

/* Puan durumu – bölge renkleri ve legend (Şampiyonlar Ligi, Avrupa, Konferans, Küme düşme) */
.puan-durumu__table--full .puan-durumu__th-zone,
.puan-durumu__table--full .puan-durumu__zone { width: 28px; min-width: 28px; text-align: center; padding-left: 6px; padding-right: 6px; }
.puan-durumu__table--full th:nth-child(2),
.puan-durumu__table--full td:nth-child(2) { width: 36px; text-align: center; }
.puan-durumu__table--full th:nth-child(3),
.puan-durumu__table--full td:nth-child(3) { text-align: left; padding-left: 10px; min-width: 130px; }
.puan-durumu__table--full .puan-durumu__th-l5,
.puan-durumu__table--full .puan-durumu__l5 { min-width: 88px; font-size: 11px; }
/* Son 5 maç: galibiyet (yeşil ✓), berabere (gri –), mağlubiyet (kırmızı ✗) */
.puan-l5 { display: inline-flex; align-items: center; gap: 4px; }
.puan-l5__dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0; border: 2px solid transparent;
}
.puan-l5__dot--w { background: #34A853; color: #fff; }
.puan-l5__dot--d { background: #9E9E9E; color: #fff; }
.puan-l5__dot--l { background: #EA4335; color: #fff; }
.puan-l5__dot--last { border-color: #1a1a1a; box-shadow: 0 0 0 1px rgba(0,0,0,0.2); }
.puan-l5__icon {
  font-size: 11px; font-weight: 700; line-height: 1;
}
.puan-l5__dot--w .puan-l5__icon { font-size: 12px; }
.puan-l5__dot--l .puan-l5__icon { font-size: 10px; }
.puan-durumu__zone-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  vertical-align: middle;
}
.puan-durumu__zone-dot.puan-zone--sampiyonlar { background: #4285F4; }
.puan-durumu__zone-dot.puan-zone--avrupa { background: #FA7B17; }
.puan-durumu__zone-dot.puan-zone--konferans { background: #34A853; }
.puan-durumu__zone-dot.puan-zone--kume { background: #EA4335; }
.puan-durumu__row.puan-zone--kume .puan-durumu__team-name { font-weight: 700; }
.puan-durumu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding: 16px 18px;
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: #f8fafc;
  font-size: 12px;
  color: var(--muted);
}
.puan-durumu-legend__group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; }
.puan-durumu-legend__title { font-weight: 700; color: var(--text); margin-right: 4px; }
.puan-durumu-legend__item { display: inline-flex; align-items: center; gap: 6px; }
.puan-durumu-legend__box {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 2px;
}
.puan-durumu-legend__box.puan-zone--sampiyonlar { background: #4285F4; }
.puan-durumu-legend__box.puan-zone--avrupa { background: #FA7B17; }
.puan-durumu-legend__box.puan-zone--konferans { background: #34A853; }
.puan-durumu-legend__box.puan-zone--kume { background: #EA4335; }
.puan-durumu-legend__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.puan-durumu-legend__circle--g { background: #34A853; }
.puan-durumu-legend__circle--b { background: #9E9E9E; }
.puan-durumu-legend__circle--m { background: #EA4335; }
.puan-durumu-legend__circle-icon { line-height: 1; }
@media (max-width: 768px) {
  .puan-durumu__table--full { min-width: 520px; }
  .puan-durumu-legend { flex-direction: column; gap: 12px; padding: 12px; font-size: 11px; }
}

.league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.league-table th,
.league-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.league-table th {
  color: var(--muted);
  font-weight: 600;
}

.league-table td:last-child,
.league-table th:last-child {
  text-align: right;
}

.team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
}

footer {
  background: #1a1a1a;
  color: #cbd5e1;
  padding: 40px 0;
  margin-top: 0;
  margin-bottom: 0;
  border-top: 3px solid var(--primary);
}

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

.footer__grid h4 {
  margin-top: 0;
  color: #F5C518;
}

.footer__grid a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__grid a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .section--equal {
    grid-template-columns: 1fr;
  }

  .market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slider-section {
    grid-template-columns: 1fr;
  }

  .grid-news {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .banner-strip {
    grid-template-columns: 1fr;
  }

  .slider__thumbs {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .gallery-page-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-hero-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-hero-side {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-sidebar-ad {
    position: static;
  }

  .slider {
    min-height: 360px;
  }
  
  .category-grid-3x5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-slider-small__image {
    height: 300px;
  }
  
}

@media (max-width: 900px) {
  .header__main {
    flex-wrap: wrap;
  }

  .search {
    order: 2;
    max-width: none;
    width: 100%;
    margin: 10px 0;
  }
  
  .social-media-icons {
    order: 3;
    margin: 10px auto;
    gap: 8px;
    width: 100%;
    justify-content: center;
    display: flex;
  }
  
  .social-media-icons .social-icon {
    width: 32px;
    height: 32px;
  }
  
  .social-media-icons .social-icon i {
    font-size: 16px;
  }
  
  .header__actions {
    order: 4;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
  }

  .header__actions .btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 13px;
  }

  /* Mobilde header/topbar sabit kalmasın, aşağı kayınca haberleri kapatmasın */
  .topbar {
    position: relative;
    top: auto;
  }

  header {
    position: relative;
    top: auto;
  }

  /* Mobilde index ile aynı sıra: hamburger solda, logo yanında */
  .header__main .nav__toggle {
    order: -1;
  }
  .header__main .logo {
    order: 0;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 26;
    pointer-events: auto;
    min-width: 44px;
    min-height: 44px;
  }
  .nav__toggle i.fa-bars {
    font-size: 1.25rem;
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .nav[data-open="false"] .container {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }

  .nav[data-open="true"] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: none;
  }

  .nav[data-open="true"] .container {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    background: #ffffff;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
  }

  /* Mobil menü başlığı: Son Dakika + çarpı (kapat) butonu */
  .nav__mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
  }

  .nav__mobile-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
  }

  .nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s, color 0.2s;
  }

  .nav__close:hover {
    background: #e2e8f0;
    color: #1e293b;
  }

  .nav__close:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  .nav[data-open="false"] .nav__mobile-header {
    display: none;
  }

  .nav[data-open="false"] .container a {
    display: none;
  }

  .nav[data-open="true"] .container a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 15px;
  }

  .nav[data-open="true"] .container a:last-child {
    border-bottom: none;
  }

  /* Mobilde topbar ve header sticky kaldır – aşağı kaydırınca logo haberleri kapatmasın */
  .topbar {
    position: relative;
    top: auto;
  }

  header {
    position: relative;
    top: auto;
  }

  /* Mobilde detay sayfalarında da header aşağı kaydırınca gitsin (index gibi) */
  body.page-detail .topbar,
  body.page-detail header {
    position: relative;
    top: auto;
  }

  .ticker {
    position: relative;
    top: auto;
  }

  .nav {
    position: relative;
    top: auto;
  }
}

/* Desktop'ta mobil menü başlığı ve çarpı gizli */
@media (min-width: 769px) {
  .nav__mobile-header {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .header__main {
    gap: 10px;
  }
  
  .social-media-icons {
    margin: 0 5px;
    gap: 6px;
  }
  
  .social-media-icons .social-icon {
    width: 28px;
    height: 28px;
  }
  
  .social-media-icons .social-icon i {
    font-size: 14px;
  }
  
  .section__grid {
    grid-template-columns: 1fr;
  }

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

  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slider__thumbs {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .category-grid-3x5 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .category-slider-small__image {
    height: 250px;
  }
  
  .category-slide-small__title {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .topbar__left,
  .topbar__right {
    flex-wrap: wrap;
  }

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

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

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

  .slider__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Admin Panel Styles */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-nav a {
  margin-right: 12px;
}

.admin-container {
  padding: 24px 0;
}

/* Admin Login Styles */
.admin-login-body {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.admin-login-form {
  max-width: 360px;
  width: 100%;
}

.admin-login-form input {
  width: 100%;
  margin-bottom: 10px;
}

.admin-note {
  font-size: 12px;
  color: #64748b;
}

/* Category Page Styles */
.category-hero {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.category-hero__content {
  grid-column: 1;
  min-width: 0;
}

.category-hero__ad {
  width: 200px;
  max-height: 600px;
  overflow: hidden;
}

.category-hero__ad img {
  width: 100%;
  height: auto;
  display: block;
}

.category-slider {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.category-slider__track {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .category-slider__track {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .category-slider__track {
    height: 400px;
  }
}

.category-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.category-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.category-slide__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.category-slide__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.category-slide__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.category-slide__badge.emphasis-badge {
  background: var(--primary);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-slide__category {
  position: absolute;
  bottom: 80px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.category-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 2;
}

.category-slide__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: white;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.category-slide__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.category-slider__nav {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: calc(100% - 40px);
  padding: 0 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.category-slider__nav::-webkit-scrollbar {
  height: 4px;
}

.category-slider__nav::-webkit-scrollbar-track {
  background: transparent;
}

.category-slider__nav::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.category-slider__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-slider__dot:hover,
.category-slider__dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.category-slider__prev,
.category-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 32px;
  color: var(--text);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-slider__prev:hover,
.category-slider__next:hover {
  background: var(--primary);
  color: white;
}

.category-slider__prev {
  left: 20px;
}

.category-slider__next {
  right: 20px;
}

.category-slider__empty {
  background: var(--card);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  color: var(--muted);
}

/* Economy Rates */
.economy-rates {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.economy-rates__main {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .economy-rates__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .economy-rates__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .economy-rates__main {
    grid-template-columns: 1fr;
  }
}

.economy-rate-card {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  display: grid;
  gap: 8px;
  min-height: 110px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.economy-rate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.economy-rate-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #0f172a;
}

.economy-rate-card__value {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.economy-rate-card__unit {
  font-size: 13px;
  color: var(--muted);
}

.economy-rates__crypto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-width: 100%;
}

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

@media (max-width: 480px) {
  .economy-rates__crypto {
    grid-template-columns: 1fr;
  }
}

.economy-crypto-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}

.economy-crypto-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.economy-crypto-card__symbol {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.economy-crypto-card__info {
  flex: 1;
  min-width: 0;
}

.economy-crypto-card__name {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.economy-crypto-card__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.economy-crypto-card__change {
  font-size: 12px;
  font-weight: 600;
}

.economy-crypto-card__change.positive {
  color: #10b981;
}

.economy-crypto-card__change.negative {
  color: #ef4444;
}

/* Category Ad Between */
.category-ad-between {
  margin: 32px 0;
  text-align: center;
}

.category-ad-between img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Category Grid */
.category-grid {
  margin-bottom: 32px;
}

.category-grid__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.category-grid__items {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
  width: 100%;
}

@media (max-width: 1024px) {
  .category-grid__items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .category-grid__items {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

.category-grid-item {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.category-grid-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-grid-item__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.category-grid-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-grid-item:hover .category-grid-item__image img {
  transform: scale(1.05);
}

.category-grid-item__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.category-grid-item__content {
  padding: 16px;
}

.category-grid-item__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-grid-item__meta {
  font-size: 12px;
  color: var(--muted);
}

/* Category Section on Homepage */
.category-section {
  margin: 48px 0;
}

.category-section__header {
  margin-bottom: 24px;
}

.category-slider-small {
  position: relative;
  margin-bottom: 32px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.category-slider-small__track {
  display: flex;
  transition: transform 0.4s ease;
}

.category-slide-small {
  min-width: 100%;
  display: none;
}

.category-slide-small.active {
  display: block;
}

.category-slide-small__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-slide-small__image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.category-slide-small__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-slide-small__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  animation: blink 1.5s infinite;
}

.category-slide-small__content {
  padding: 24px;
}

.category-slide-small__title {
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0 8px 0;
  line-height: 1.3;
  color: var(--text);
}

.category-slider-small__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.category-slider-small__prev,
.category-slider-small__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: all;
  transition: background 0.2s;
}

.category-slider-small__prev:hover,
.category-slider-small__next:hover {
  background: white;
}

.category-slider-small__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg);
}

.category-slider-small__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.category-slider-small__dot.active {
  background: var(--primary);
}

.category-grid-3x5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .category-grid-3x5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-slider-small__image {
    height: 350px;
  }
}

@media (max-width: 720px) {
  .category-grid-3x5 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .category-slider-small__image {
    height: 250px;
  }
  
  .category-slide-small__title {
    font-size: 18px;
  }
  
  .category-slide-small__content {
    padding: 16px;
  }
  
  .gallery-hero-side {
    grid-template-columns: 1fr;
  }
  
  .gallery-hero-title {
    font-size: 18px;
  }
  
  .gallery-hero-overlay {
    padding: 16px;
  }
  
  .video-play-overlay {
    width: 60px !important;
    height: 60px !important;
  }
  
  .video-play-overlay svg {
    width: 30px;
    height: 30px;
  }
  
  .video-hero .video-duration-badge {
    bottom: 80px;
    font-size: 12px;
    padding: 6px 10px;
  }
}


/* Responsive */
@media (max-width: 1200px) {
  .category-hero {
    grid-template-columns: 1fr;
  }
  
  .category-hero__ad {
    display: none;
  }
}

/* Authors Section - Full Width (Piyasalar gibi) */
.authors-section {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

.authors-section .section__title {
  margin-bottom: 25px;
  padding: 0;
}

.authors-section .section__title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 25px 0;
  text-align: left;
  padding: 0;
}

.authors-slider-full {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.authors-slider-full__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
  width: 100%;
}

.author-slide-full {
  min-width: calc(33.333% - 14px);
  flex-shrink: 0;
  width: calc(33.333% - 14px);
}

.author-card-full {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
  position: relative;
}

.author-card-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.author-card-full__image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.author-card-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card-full__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-card-full__name {
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: #333;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.author-card-full__headline {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.author-card-full__bio {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.authors-slider-full__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  left: 0;
  right: 0;
  padding: 0 20px;
}

.authors-slider-full__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  pointer-events: all;
}

.authors-slider-full__btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.authors-slider-full__btn[data-prev] {
  left: 20px;
}

.authors-slider-full__btn[data-next] {
  right: 20px;
}

.authors-slider-full__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  padding: 0;
}

.authors-dot-full {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.authors-dot-full.active {
  background: var(--primary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Author Detail Page */
.author-detail-page {
  margin-top: 28px;
}

.author-detail-header {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.author-detail-image {
  width: 150px;
  height: 150px;
  min-width: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
}

.author-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-detail-info {
  flex: 1;
}

.author-detail-info h1 {
  margin: 0 0 12px 0;
  font-size: 28px;
  color: var(--text);
}

.author-detail-bio {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.author-detail-social {
  display: flex;
  gap: 12px;
}

@media (max-width: 1024px) {
  .author-slide-full {
    min-width: calc(50% - 10px);
  }
  
  .authors-slider-full__nav {
    padding: 0 15px;
  }
  
  .authors-slider-full__btn[data-prev] {
    left: 15px;
  }
  
  .authors-slider-full__btn[data-next] {
    right: 15px;
  }
  
  .authors-section .section__title h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .author-slide-full {
    min-width: 100%;
  }
  
  .authors-slider-full__nav {
    padding: 0 10px;
  }
  
  .authors-slider-full__btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .authors-slider-full__btn[data-prev] {
    left: 10px;
  }
  
  .authors-slider-full__btn[data-next] {
    right: 10px;
  }
  
  .authors-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .authors-section .section__title h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .author-card-full {
    padding: 15px;
    gap: 15px;
  }
  
  .author-card-full__image {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .author-card-full__name {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .author-card-full__headline {
    font-size: 16px;
  }
  
  .authors-slider-full__dots {
    margin-top: 20px;
  }
  
  .authors-dot-full {
    width: 8px;
    height: 8px;
  }
  
  .authors-dot-full.active {
    width: 8px;
    height: 8px;
  }
}
  
  .author-detail-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

/* Gazeteler Slider */
.newspapers-slider-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.newspapers-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.newspapers-slider::-webkit-scrollbar {
  display: none;
}

.newspaper-slide {
  min-width: 200px;
  flex-shrink: 0;
  width: 200px;
}

.newspaper-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.newspaper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newspaper-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newspaper-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newspaper-card__title {
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.newspapers-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #dc2626;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.newspapers-slider-btn:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.newspapers-slider-btn--prev {
  left: -20px;
}

.newspapers-slider-btn--next {
  right: -20px;
}

.newspapers-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.newspapers-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.newspapers-pagination-dot.active {
  background: #dc2626;
  width: 24px;
  border-radius: 12px;
}

@media (max-width: 968px) {
  .newspaper-slide {
    min-width: 160px;
    width: 160px;
  }
  
  .newspaper-card__image {
    height: 220px;
  }
  
  .newspapers-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .newspapers-slider-btn--prev {
    left: -15px;
  }
  
  .newspapers-slider-btn--next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .newspaper-slide {
    min-width: 140px;
    width: 140px;
  }
  
  .newspaper-card__image {
    height: 200px;
  }
  
  .newspaper-card__title {
    padding: 12px;
    font-size: 13px;
  }
  
  .newspapers-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .newspapers-slider-btn--prev {
    left: -10px;
  }
  
  .newspapers-slider-btn--next {
    right: -10px;
  }
  
  .newspapers-pagination {
    margin-top: 15px;
  }
}

/* Sinemalar Slider */
.cinemas-slider-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.cinemas-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cinemas-slider::-webkit-scrollbar {
  display: none;
}

.cinema-slide {
  min-width: 200px;
  flex-shrink: 0;
  width: 200px;
}

.cinema-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.cinema-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cinema-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinema-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-card__title {
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.cinemas-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #dc2626;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.cinemas-slider-btn:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.cinemas-slider-btn--prev {
  left: -20px;
}

.cinemas-slider-btn--next {
  right: -20px;
}

.cinemas-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cinemas-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.cinemas-pagination-dot.active {
  background: #dc2626;
  width: 24px;
  border-radius: 12px;
}

@media (max-width: 968px) {
  .cinema-slide {
    min-width: 160px;
    width: 160px;
  }
  
  .cinema-card__image {
    height: 220px;
  }
  
  .cinemas-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .cinemas-slider-btn--prev {
    left: -15px;
  }
  
  .cinemas-slider-btn--next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .cinema-slide {
    min-width: 140px;
    width: 140px;
  }
  
  .cinema-card__image {
    height: 200px;
  }
  
  .cinema-card__title {
    padding: 12px;
    font-size: 13px;
  }
  
  .cinemas-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .cinemas-slider-btn--prev {
    left: -10px;
  }
  
  .cinemas-slider-btn--next {
    right: -10px;
  }
  
  .cinemas-pagination {
    margin-top: 15px;
  }
}

/* Burçlar Slider */
.horoscopes-slider-container {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.horoscopes-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horoscopes-slider::-webkit-scrollbar {
  display: none;
}

.horoscope-slide {
  min-width: 120px;
  flex-shrink: 0;
  width: 120px;
}

.horoscope-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding: 15px;
}

.horoscope-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.horoscope-card__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #6b21a8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  box-sizing: border-box;
}

.horoscope-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.horoscope-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.horoscopes-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #dc2626;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.horoscopes-slider-btn:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.horoscopes-slider-btn--prev {
  left: -20px;
}

.horoscopes-slider-btn--next {
  right: -20px;
}

.horoscopes-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.horoscopes-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.horoscopes-pagination-dot.active {
  background: #dc2626;
  width: 24px;
  border-radius: 12px;
}

@media (max-width: 968px) {
  .horoscope-slide {
    min-width: 100px;
    width: 100px;
  }
  
  .horoscope-card__image {
    width: 70px;
    height: 70px;
    padding: 8px;
  }
  
  .horoscopes-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .horoscopes-slider-btn--prev {
    left: -15px;
  }
  
  .horoscopes-slider-btn--next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .horoscope-slide {
    min-width: 90px;
    width: 90px;
  }
  
  .horoscope-card {
    padding: 12px;
  }
  
  .horoscope-card__image {
    width: 60px;
    height: 60px;
    padding: 7px;
  }
  
  .horoscope-card__name {
    font-size: 12px;
  }
  
  .horoscopes-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .horoscopes-slider-btn--prev {
    left: -10px;
  }
  
  .horoscopes-slider-btn--next {
    right: -10px;
  }
  
  .horoscopes-pagination {
    margin-top: 15px;
  }
}

/* Kim Kimdir? Slider */
.whois-slider-container {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: 20px;
  margin-bottom: 28px;
}

.whois-slider {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.whois-slider::-webkit-scrollbar {
  display: none;
}

.whois-slide {
  min-width: 200px;
  flex-shrink: 0;
  width: 200px;
}

/* Masaüstü: tam 5 kart sığsın, 6. ve sonrası kayarak gelsin */
@media (min-width: 1025px) {
  .whois-slider-container .whois-slide {
    width: calc((100% - 80px) / 5);
    min-width: calc((100% - 80px) / 5);
  }
}

/* Tablet: 3 kart görünsün, kaydırma düzgün çalışsın */
@media (min-width: 769px) and (max-width: 1024px) {
  .section--whois .whois-slider-container {
    width: 100%;
    min-width: 0;
  }
  .whois-slider-container .whois-slide {
    width: calc((100% - 40px) / 3);
    min-width: 160px;
  }
}

/* Küçük tablet / büyük mobil: 2 kart yan yana */
@media (min-width: 481px) and (max-width: 768px) {
  .section--whois .whois-slider-container {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }
  .whois-slider-container .whois-slide {
    width: calc((100% - 20px) / 2);
    min-width: 140px;
  }
  .whois-slider {
    padding: 10px 4px;
  }
  .whois-slider-container .whois-card__image {
    height: 140px;
  }
  .whois-slider-container .whois-card__name {
    font-size: 13px;
  }
}

/* Mobil: kartlar alt alta, düzgün liste */
@media (max-width: 480px) {
  .section--whois {
    width: 100%;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .section--whois .section__title {
    margin-bottom: 12px;
    padding: 0;
  }
  .section--whois .section__title h2 {
    font-size: 18px;
  }
  .section--whois .whois-slider-container {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
    margin-bottom: 20px;
    padding: 0;
  }
  .whois-slider-container .whois-slider {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: visible;
    gap: 16px;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  .whois-slider-container .whois-slide {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .whois-slider-container .whois-card__image {
    height: 200px;
  }
  .whois-slider-container .whois-card__name {
    font-size: 15px;
  }
  .whois-slider-container .whois-slider-btn,
  .whois-slider-container .whois-pagination {
    display: none;
  }
}

.whois-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.whois-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.whois-card__content {
  padding: 12px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e5e7eb;
}

.whois-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.whois-card__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

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

.whois-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 48px;
}

.whois-card__profession {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
  font-weight: 500;
}

.whois-card__bio {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

.whois-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #dc2626;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.whois-slider-btn:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.whois-slider-btn--prev {
  left: -20px;
}

.whois-slider-btn--next {
  right: -20px;
}

.whois-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.whois-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.whois-pagination-dot.active {
  background: #dc2626;
  width: 24px;
  border-radius: 12px;
}

@media (max-width: 968px) {
  .whois-slide {
    min-width: 200px;
    width: 200px;
  }
  
  .whois-card__image {
    height: 180px;
  }
  
  .whois-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .whois-slider-btn--prev {
    left: -15px;
  }
  
  .whois-slider-btn--next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .whois-slide {
    min-width: 200px;
    width: 200px;
  }
  
  .whois-card__image {
    height: 160px;
  }
  
  .whois-card__content {
    padding: 12px;
  }
  
  .whois-card__name {
    font-size: 16px;
  }
  
  .whois-card__profession {
    font-size: 13px;
  }
  
  .whois-card__bio {
    font-size: 12px;
  }
  
  .whois-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .whois-slider-btn--prev {
    left: -10px;
  }
  
  .whois-slider-btn--next {
    right: -10px;
  }
  
  .whois-pagination {
    margin-top: 15px;
  }
}

/* Burç Detay Sayfası */
.horoscope-detail-page {
  max-width: 1200px;
  margin: 0 auto;
}

.horoscope-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.horoscope-nav__item {
  padding: 8px 16px;
  background: #f3f4f6;
  color: #4b5563;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.horoscope-nav__item:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.horoscope-nav__item.active {
  background: #6b21a8;
  color: white;
}

.horoscope-detail-header {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.horoscope-detail-header__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #6b21a8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
  flex-shrink: 0;
  padding: 15px;
  box-sizing: border-box;
}

.horoscope-detail-header__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.horoscope-detail-header__title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 10px 0;
}

.horoscope-detail-header__meta {
  color: #6b7280;
  font-size: 16px;
}

.horoscope-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e5e7eb;
}

.horoscope-tab {
  padding: 15px 25px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #6b7280;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.horoscope-tab:hover {
  color: #dc2626;
  background: #f9fafb;
}

.horoscope-tab.active {
  color: #dc2626;
  border-bottom-color: #dc2626;
}

.horoscope-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  min-height: 400px;
}

.horoscope-tab-content {
  display: none;
}

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

.horoscope-comment {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.horoscope-comment h3 {
  color: #1f2937;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 20px;
}

.horoscope-comment p {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .horoscope-detail-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .horoscope-detail-header__icon {
    width: 100px;
    height: 100px;
    padding: 12px;
  }
  
  .horoscope-detail-header__title {
    font-size: 24px;
  }
  
  .horoscope-tabs {
    flex-direction: column;
    gap: 0;
  }
  
  .horoscope-tab {
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
    border-left: 3px solid transparent;
  }
  
  .horoscope-tab.active {
    border-left-color: #dc2626;
    border-bottom-color: #e5e7eb;
  }
  
  .horoscope-content {
    padding: 20px;
  }
  
  .horoscope-nav {
    padding: 15px;
    gap: 8px;
  }
  
  .horoscope-nav__item {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Anket Sidebar (Gündem yanında) */
.poll-sidebar {
  width: 100%;
  max-width: 100%;
  align-self: start;
}

.poll-sidebar-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 0;
  padding-bottom: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(229, 231, 235, 0.8);
  margin-top: 0;
  height: auto; /* Sadece içeriğin yüksekliği kadar */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.poll-sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
  z-index: 1;
}

/* Anket sidebar'ı Gündem'in section__grid'i ile hizalı yapmak için */
.section > div:first-child .section__title {
  margin-bottom: 16px;
}

/* Anket sidebar'ı Gündem grid'i ile aynı seviyede başlat - section__title yüksekliği + margin-bottom kadar üstten boşluk */
.section > aside.poll-sidebar {
  margin-top: 52px; /* section__title yüksekliği (36px) + margin-bottom (16px) = 52px */
  padding-top: 0;
  align-self: stretch; /* Sol taraftaki grid ile aynı yüksekliğe ulaş */
  display: flex;
  flex-direction: column;
  height: calc(100% - 52px); /* Grid yüksekliğinden margin-top'u çıkar */
}

/* Anket kartını Gündem grid'i ile tam hizalı yap - sol taraftaki grid'in tam yüksekliği kadar */
.section > aside.poll-sidebar .poll-sidebar-card {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%; /* Sol taraftaki grid ile aynı yüksekliğe ulaş */
  display: flex;
  flex-direction: column;
  flex: 1; /* Kalan alanı doldur */
}

/* Anket içeriğinin alt padding'ini ayarla - Gündem'in son resmi ile hizalı olsun */
.section > aside.poll-sidebar .poll-sidebar-content {
  padding-bottom: 18px; /* Sol taraftaki card__body padding'i ile aynı (18px) - alt hizalama için */
  flex: 1; /* Kalan alanı doldur, alt kısım sol taraftaki kartlar ile hizalı olsun */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Teşekkür mesajından sonra boşluk olmaması için - Gündem'in son resmi ile hizalı */
.section > aside.poll-sidebar .poll-sidebar-thank-you {
  margin-bottom: 0;
  margin-top: 0;
}

/* Anket kartının alt kısmında boşluk olmaması için */
.section > aside.poll-sidebar .poll-sidebar-card {
  margin-bottom: 0;
}

/* Anket header'ı göster */
.poll-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 14px 8px 14px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.poll-sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.poll-sidebar-link {
  font-size: 14px;
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.poll-sidebar-link:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.poll-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 1 auto; /* İçeriğe göre yükseklik - section içinde flex: 1 override edilecek */
  justify-content: flex-start;
  padding: 12px 14px;
  padding-top: 10px;
  padding-bottom: 0; /* Genel padding - section içinde 18px override edilecek */
}

.poll-sidebar-question {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.poll-sidebar-expired {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.poll-sidebar-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.poll-sidebar-option {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 38px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.poll-sidebar-option:hover {
  border-color: #dc2626;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.poll-sidebar-radio {
  margin-right: 12px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: #dc2626;
}

.poll-sidebar-option--results {
  cursor: default;
  border: none;
  background: transparent;
  padding: 0;
}

.poll-sidebar-option--results:hover {
  border-color: transparent;
  background: transparent;
}

.poll-sidebar-option__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  opacity: 0.12;
  border-radius: 12px;
}

.poll-sidebar-option__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
}

.poll-sidebar-option__text {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  flex: 1;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.poll-sidebar-option__percentage {
  font-size: 13px;
  font-weight: 800;
  color: #dc2626;
  margin-left: 8px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.poll-sidebar-thank-you {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  padding: 7px 9px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 0;
  margin-bottom: 0;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

/* Anket Kartı (Eski - Detay sayfası için) */
.poll-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.poll-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.4;
}

.poll-expired {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.poll-option {
  position: relative;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.poll-option:hover {
  border-color: #dc2626;
  background: #fef2f2;
}

.poll-option input[type="radio"] {
  margin-right: 12px;
  cursor: pointer;
}

.poll-option input[type="radio"]:checked + label {
  color: #dc2626;
  font-weight: 600;
}

.poll-option--results {
  cursor: default;
  padding: 0;
  border: none;
  background: transparent;
}

.poll-option--results:hover {
  border-color: transparent;
  background: transparent;
}

.poll-option__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  transition: width 0.5s ease;
  z-index: 0;
}

.poll-option__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.poll-option__text {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  flex: 1;
}

.poll-option__percentage {
  font-size: 16px;
  font-weight: 700;
  color: #dc2626;
  margin-left: 15px;
}

.poll-submit-btn {
  width: 100%;
  padding: 15px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.poll-submit-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.poll-thank-you {
  background: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Anket Detay Sayfası */
.poll-detail-page {
  max-width: 900px;
  margin: 0 auto;
}

.poll-detail-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.poll-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  line-height: 1.3;
}

.poll-expired-large {
  background: #fee2e2;
  color: #991b1b;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.poll-detail-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.poll-detail-option {
  position: relative;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 60px;
}

.poll-detail-option:hover {
  border-color: #dc2626;
  background: #fef2f2;
}

.poll-detail-option input[type="radio"] {
  margin-right: 15px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.poll-detail-option input[type="radio"]:checked + label {
  color: #dc2626;
  font-weight: 600;
}

.poll-detail-option--results {
  cursor: default;
  border: none;
  background: transparent;
}

.poll-detail-option--results:hover {
  border-color: transparent;
  background: transparent;
}

.poll-detail-option__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  transition: width 0.8s ease;
  z-index: 0;
  opacity: 0.15;
}

.poll-detail-option__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.poll-detail-option__text {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  flex: 1;
}

.poll-detail-option__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.poll-detail-option__percentage {
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
}

.poll-detail-option__votes {
  font-size: 14px;
  color: #6b7280;
}

.poll-detail-submit-btn {
  width: 100%;
  padding: 18px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.poll-detail-submit-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.poll-detail-thank-you {
  background: #d1fae5;
  color: #065f46;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.poll-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 14px;
}

.poll-detail-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 968px) {
  .section > aside.poll-sidebar {
    margin-top: 30px;
  }
  
  .poll-sidebar {
    max-width: 100%;
  }
  
  .poll-sidebar-card {
    position: static;
    margin-top: 0;
    border-radius: 16px;
  }
  
  .poll-sidebar-header {
    padding: 14px 16px 12px 16px;
  }
  
  .poll-sidebar-content {
    padding: 16px;
    padding-top: 14px;
    padding-bottom: 16px;
    gap: 12px;
  }
  
  .poll-sidebar-options {
    gap: 6px;
  }
  
  .poll-sidebar-option {
    min-height: 44px;
  }
  
  .poll-sidebar-option__content {
    padding: 10px 12px;
  }
  
  .poll-sidebar-thank-you {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .poll-sidebar-question {
    font-size: 16px;
  }
  
  .poll-sidebar-option {
    min-height: 50px;
    border-radius: 10px;
  }
  
  .poll-sidebar-option__content {
    padding: 12px 14px;
  }
  
  .poll-sidebar-option__text {
    font-size: 13px;
  }
  
  .poll-sidebar-option__percentage {
    font-size: 15px;
  }
  
  .poll-sidebar-thank-you {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .poll-card {
    padding: 20px;
  }
  
  .poll-card__title {
    font-size: 18px;
  }
  
  .poll-option__content {
    padding: 12px;
  }
  
  .poll-option__text {
    font-size: 14px;
  }
  
  .poll-sidebar-card {
    padding: 18px;
  }
  
  .poll-sidebar-title {
    font-size: 20px;
  }
  
  .poll-sidebar-question {
    font-size: 15px;
  }
  
  .poll-sidebar-option__content {
    padding: 10px 12px;
  }
  
  .poll-sidebar-option__text {
    font-size: 13px;
  }
  
  .poll-sidebar-option__percentage {
    font-size: 14px;
  }
  
  .poll-detail-card {
    padding: 25px 20px;
  }
  
  .poll-detail-title {
    font-size: 24px;
  }
  
  .poll-detail-option__content {
    padding: 15px;
  }
  
  .poll-detail-option__text {
    font-size: 16px;
  }
  
  .poll-detail-option__percentage {
    font-size: 18px;
  }
  
  .poll-detail-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* Firma Rehberi ve İlan Rehberi Grid */
.companies-grid,
.classifieds-grid {
  display: grid;
  grid-template-columns: 300px repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.company-intro-card,
.classified-intro-card {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  min-height: 280px;
}

.classified-intro-card {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.company-intro-card h3,
.classified-intro-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.company-intro-card p,
.classified-intro-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
  flex: 1;
}

.company-intro-phone,
.classified-intro-phone {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.btn-intro {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: #1f2937;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.btn-intro:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.company-card,
.classified-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1;
  min-height: 280px;
}

.company-card:hover,
.classified-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.company-card__logo {
  width: 140px;
  height: 140px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 12px;
  padding: 15px;
  flex-shrink: 0;
}

.company-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-card__name,
.classified-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
  line-height: 1.4;
}

.company-card__name a:hover,
.classified-card__title a:hover {
  color: #dc2626;
  text-decoration: underline;
}

.company-card__desc,
.classified-card__desc {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.company-card__website {
  font-size: 12px;
  color: #dc2626;
  text-decoration: none;
  margin-bottom: 8px;
  word-break: break-all;
}

.company-card__website:hover {
  text-decoration: underline;
}

.company-card__phone,
.classified-card__phone {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-top: auto;
}

.classified-card__image {
  width: 100%;
  height: 140px;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.classified-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.classified-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 8px;
}

@media (max-width: 1400px) {
  .companies-grid,
  .classifieds-grid {
    grid-template-columns: 280px repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .companies-grid,
  .classifieds-grid {
    grid-template-columns: 250px repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .companies-grid,
  .classifieds-grid {
    grid-template-columns: 1fr;
  }
  
  .company-intro-card,
  .classified-intro-card {
    order: -1;
    min-height: auto;
  }
  
  .companies-grid,
  .classifieds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-card,
  .classified-card {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .companies-grid,
  .classifieds-grid {
    grid-template-columns: 1fr;
  }
  
  .company-card,
  .classified-card {
    padding: 15px;
    min-height: 220px;
  }
  
  .company-card__logo {
    width: 100px;
    height: 100px;
  }
  
  .classified-card__image {
    height: 120px;
  }
  
  .company-intro-card,
  .classified-intro-card {
    min-height: auto;
    padding: 25px 15px;
  }
}
  
  .author-detail-image {
    margin: 0 auto;
  }
  
  .author-detail-social {
    justify-content: center;
  }
  
  .category-slider__track {
    height: 450px;
  }
  
  .category-slide__title {
    font-size: 20px;
  }
  
  .category-slide__content {
    padding: 20px;
  }
  
  .category-slider__nav {
    bottom: 80px;
  }
  
  .category-grid__items {
    grid-template-columns: 1fr;
  }
  
  .economy-rates__main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .economy-rates__crypto {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-slider__dot {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .category-slider__prev,
  .category-slider__next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .author-card {
    flex-direction: column;
    text-align: center;
  }
  
  .author-card__image {
    margin: 0 auto;
  }
  
  .author-card__social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .category-slider__track {
    height: 350px;
  }
  
  .category-slide__title {
    font-size: 18px;
  }
  
  .category-slide__content {
    padding: 16px;
  }
  
  .category-slide__meta {
    font-size: 12px;
  }
  
  .category-slider__nav {
    bottom: 60px;
    gap: 4px;
  }
  
  .category-slider__dot {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  
  .category-slider__prev,
  .category-slider__next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .category-slider__prev {
    left: 10px;
  }
  
  .category-slider__next {
    right: 10px;
  }
  
  .category-slide__badge {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .category-slide__category {
    bottom: 60px;
    left: 10px;
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* Adayım Tv satırı: Adayım Tv + Hava widget */
.adayim-tv-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.adayim-tv-section {
  background: #1e293b;
  border-radius: 12px 0 0 12px;
}

.adayim-tv-header {
  background: var(--primary);
  color: #1a1a1a;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.adayim-tv-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 500px;
}

.adayim-tv-main {
  padding: 20px;
}

.adayim-tv-featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.adayim-tv-featured-title {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  text-align: center;
}

.adayim-tv-featured-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 16/9;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adayim-tv-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.adayim-tv-featured-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 64px;
}

.adayim-tv-featured-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fbbf24;
  color: #1e293b;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
}

.adayim-tv-list {
  border-left: 1px solid #334155;
  padding: 16px;
  overflow-y: auto;
  max-height: 500px;
}

.adayim-tv-list-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #334155;
  text-decoration: none;
  color: #e2e8f0;
  transition: background 0.2s;
}

.adayim-tv-list-item:hover,
.adayim-tv-list-item.active {
  background: rgba(225, 29, 72, 0.12);
  color: #fff;
}

.adayim-tv-list-thumb {
  width: 100px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #0f172a;
}

.adayim-tv-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adayim-tv-list-thumb span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.adayim-tv-list-item .adayim-tv-list-title {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/* Hava durumu widget (Adayım Tv yanı) – modern tasarım */
.adayim-weather-widget {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #0ea5e9 0%, #0284c7 40%, #0369a1 100%);
  color: #fff;
  padding: 22px 20px;
  text-decoration: none;
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.35);
  align-self: stretch;
  min-height: 500px;
}

.adayim-weather-widget::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.adayim-weather-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.4);
}

.adayim-weather-widget__top {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.adayim-weather-widget__temp-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.adayim-weather-widget__icon {
  width: 60px;
  height: 60px;
  opacity: 1;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.25));
  flex-shrink: 0;
}

.adayim-weather-widget__icon-fa {
  font-size: 52px;
  color: #fbbf24;
  filter: drop-shadow(0 3px 10px rgba(251, 191, 36, 0.5));
  flex-shrink: 0;
  animation: pulse 3s ease-in-out infinite;
}

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

.adayim-weather-widget__temp {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.adayim-weather-widget__condition {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.95;
  text-align: center;
  text-transform: capitalize;
}

.adayim-weather-widget__date {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.adayim-weather-widget__city {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.adayim-weather-widget__city i {
  margin-right: 6px;
  color: #7dd3fc;
}

.adayim-weather-widget__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.adayim-weather-widget__stat {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 8px;
}

.adayim-weather-widget__stat i {
  width: 18px;
  color: #bae6fd;
  font-size: 11px;
}

.adayim-weather-widget__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: background 0.2s;
}

.adayim-weather-widget:hover .adayim-weather-widget__cta {
  background: rgba(255, 255, 255, 0.3);
}

/* Adayım Tv + widget – mobil: ortalı ve tam genişlik */
@media (max-width: 968px) {
  .adayim-tv-row {
    grid-template-columns: 1fr;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
  }
  main .container .adayim-tv-row {
    margin-left: auto;
    margin-right: auto;
  }
  .adayim-tv-section {
    border-radius: 12px 12px 0 0;
  }
  .adayim-weather-widget {
    border-radius: 0;
    border-left: none;
    border-top: 1px solid rgba(14, 165, 233, 0.3);
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .adayim-tv-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .adayim-tv-main {
    padding: 16px;
  }
  .adayim-tv-featured-title {
    font-size: 18px;
  }
  .adayim-tv-featured-thumb {
    min-height: 300px;
  }
  .adayim-tv-list {
    border-left: none;
    border-top: 1px solid #334155;
    padding: 12px 16px;
    max-height: 400px;
  }
  .adayim-tv-list-item {
    padding: 8px 0;
  }
  .adayim-tv-list-thumb {
    width: 80px;
    height: 45px;
  }
  .adayim-weather-widget {
    padding: 18px 16px;
  }
  .adayim-weather-widget {
    padding: 18px 16px;
  }
  .adayim-weather-widget__temp {
    font-size: 36px;
  }
  .adayim-weather-widget__icon {
    width: 48px;
    height: 48px;
  }
  .adayim-weather-widget__icon-fa {
    font-size: 40px;
  }
  .adayim-weather-widget__stat {
    font-size: 11px;
  }
}

/* Foto Galeri – tablet/mobil uyum */
@media (max-width: 768px) {
  .gallery-thumb {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-thumb {
    min-height: 280px;
  }
  /* Adayim TV cok kucuk ekranda ortala */
  .adayim-tv-row {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  main.container,
  main .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* Mobil / WebView: sayfa her yönde kaydırılabilsin */
@media (max-width: 768px) {
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
    height: auto !important;
  }
  /* Adayım TV mobilde tam ortalı */
  .adayim-tv-row {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
