/**
 * Ana sayfa - Manşet, Top 10 maç, Uzman Yorumları
 * Dark tema uyumlu
 */

/* Hero intro: tek blok, profesyonel görünüm (insanlara gizli; bot/crawler HTML’de görür) */
.page-hero-intro.page-hero-intro--human-hidden {
  display: none !important;
}
.page-hero-intro {
  background: var(--card-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.06));
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .page-hero-intro {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.page-hero-intro .page-hero-h1 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}
/* On-Page SEO: sayfa intro metinleri */
.page-intro-seo-hero {
  font-size: 0.9rem;
  color: var(--text-muted, #999);
  line-height: 1.5;
  margin: 0 0 0.6rem;
  max-width: 56em;
}
/* Değer önerisi & güven satırı – tek satır, kompakt */
.page-value-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.5rem;
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted, #888);
}
.page-value-trust-item.page-value-free {
  color: var(--accent-green, #22c55e);
  font-weight: 600;
}
.page-value-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted, #666);
  flex-shrink: 0;
  pointer-events: none;
}
.page-value-trust-sep:empty::before {
  content: none;
}
.page-intro-seo-text {
  font-size: 0.9rem;
  color: var(--text-muted, #999);
  line-height: 1.5;
  margin: 0.5rem 0 1rem;
  max-width: 52em;
}
.empty-state-hint {
  font-size: 0.85rem;
  color: var(--text-muted, #888);
  margin-top: 0.75rem;
}
.empty-state-hint a { color: var(--accent-green, #22c55e); text-decoration: none; }
.empty-state-hint a:hover { text-decoration: underline; }
.livescore-empty-with-links { padding-bottom: 1rem; }

.page-layout-home .sidebar-right {
  display: none;
}

.page-layout-home .main-content {
  max-width: 100%;
}

/* Maç Özetleri - Manşet üstü */
.home-videos-row {
  margin-bottom: 24px;
}
.home-videos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.home-videos-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.home-videos-title .ms-icon { color: var(--accent-green); }
.home-videos-link {
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
}
.home-videos-link:hover { text-decoration: underline; }
/* Maç Özetleri Strip - 6 görünür, sola kayarak yeniden eskiye */
.home-videos-strip .home-videos-strip-wrap {
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}
.home-videos-strip .home-videos-strip-track {
  display: flex;
  gap: 12px;
  padding: 12px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.home-videos-strip .home-videos-strip-item {
  flex: 0 0 calc(100% / var(--strip-total, 20));
  min-width: calc(100% / var(--strip-total, 20));
}
.home-videos-strip .home-video-thumb {
  width: 100%;
}

/* Mobil: 3 büyük görsel yan yana, kaydırmalı */
@media (max-width: 768px) {
  .home-videos-strip .home-videos-strip-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .home-videos-strip .home-videos-strip-track {
    width: calc(var(--strip-total) * 33.333%);
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px;
  }
  .home-videos-strip .home-videos-strip-item {
    flex: 0 0 calc(33.333% - 6px);
    min-width: calc(33.333% - 6px);
    scroll-snap-align: start;
  }
  .home-videos-strip .home-video-thumb-img {
    aspect-ratio: 16/9;
    min-height: 45px;
    max-height: 55px;
  }
  .home-videos-strip .home-video-thumb-title {
    padding: 5px 8px;
    font-size: 0.72rem;
  }
}

.home-videos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.home-video-thumb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
  font-family: inherit;
}
a.home-video-thumb {
  text-decoration: none;
  color: inherit;
}
.home-video-thumb:hover {
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow: var(--shadow);
}
.home-video-thumb-img {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: var(--bg-primary);
  overflow: hidden;
}
.home-video-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-video-thumb-play .ms-icon { font-size: 24px; color: var(--accent-red); }
.home-video-thumb-title {
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .home-videos-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .home-videos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .home-videos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Video splash modal */
.home-video-splash {
  align-items: center;
  padding: 20px;
}
.home-video-splash .modal-content {
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
}
.home-video-splash iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 8px;
}
.home-video-splash .modal-header.video-splash-header-notice {
  margin: 0 0 16px 0;
  padding: 12px 14px;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 10px;
  gap: 12px;
}
.home-video-splash .video-splash-notice-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  flex: 1;
  min-width: 0;
}
.home-video-splash .video-splash-notice-inner .ms-icon:first-child {
  flex-shrink: 0;
  font-size: 22px;
  color: rgb(234, 179, 8);
}
.home-video-splash .video-splash-notice-text {
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.45;
}
.home-video-splash .video-splash-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.home-video-splash .video-splash-yt-btn:hover {
  background: #cc0000;
  color: #fff;
}
.home-video-splash .video-splash-yt-btn .ms-icon {
  font-size: 18px;
}
.home-video-splash .modal-video-title { font-size: 1rem; font-weight: 600; margin-top: 12px; line-height: 1.4; }
.home-video-splash-meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* Manşet satırı: Manşet %50 | Sakat/Cezalı %50 */
.home-manset-row {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 20px;
  margin-bottom: 28px;
}

.home-manset-side-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

.home-injury-suspended-row {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.home-injury-suspended-row .home-week-injuries,
.home-injury-suspended-row .home-week-suspended {
  flex: 1;
  min-width: 0;
}

.home-week-injuries,
.home-week-suspended {
  background: rgba(20, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.home-week-injuries .home-section-header,
.home-week-suspended .home-section-header {
  padding: 10px 14px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.home-week-insight-list {
  padding: 8px 12px;
}

.home-week-insight-list.home-week-insight-teams {
  max-height: 200px;
  overflow-y: auto;
}

.home-week-insight-empty {
  padding: 12px;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.home-week-insight-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  font-size: 0.8rem;
  transition: background 0.15s;
}

.home-week-insight-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.home-week-insight-photo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.home-week-insight-photo-ph {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.home-week-insight-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-week-insight-team {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Takım bazlı liste (sakat/cezalı) */
.home-week-insight-team-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

.home-week-insight-team-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-week-insight-team-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.home-week-insight-count {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85em;
}

.home-section-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 6px;
}

.home-manset-col {
  min-width: 0;
}

@media (max-width: 1100px) {
  .home-manset-row {
    grid-template-columns: 1fr;
  }
  .home-manset {
    max-width: 100%;
  }
  .home-standings-manset,
  .home-standings-content-row {
    max-width: 100%;
  }
  .home-manset-side-col {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .home-injury-suspended-row {
    gap: 6px;
  }
  .home-injury-suspended-row .home-section-header {
    padding: 8px 8px;
  }
  .home-injury-suspended-row .home-section-title {
    font-size: 0.65rem;
    gap: 4px;
  }
  .home-injury-suspended-row .home-section-title .ms-icon {
    font-size: 18px;
  }
  .home-injury-suspended-row .home-week-insight-list {
    padding: 6px 8px;
  }
}

/* Manşet - dark tema, sütun genişliğini doldur (%50) */
.home-manset {
  width: 100%;
  max-width: 100%;
  background: rgba(20, 22, 28, 0.6);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-manset-carousel .home-manset-carousel-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  min-height: 200px;
  isolation: isolate;
}

.home-manset-carousel .home-manset-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  will-change: transform;
}

.home-manset-carousel .home-manset-slide {
  flex: 0 0 calc(100% / var(--slide-count, 10));
  width: calc(100% / var(--slide-count, 10));
  min-width: calc(100% / var(--slide-count, 10));
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.home-manset-carousel .home-manset-slide .home-manset-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-manset-carousel .home-manset-slide .home-manset-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-manset-dots {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  justify-content: center;
}

.home-manset-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.home-manset-dot:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.home-manset-dot.active {
  background: rgba(59, 130, 246, 0.4);
  border-color: #3b82f6;
  color: #fff;
}

.home-manset-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-manset-main {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 200px;
}

.home-manset-image {
  position: absolute;
  inset: 0;
}

.home-manset-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-manset-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1d26 0%, #252931 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-manset-placeholder .material-symbols-outlined {
  font-size: 64px;
  opacity: 0.3;
}

.home-manset-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
  pointer-events: none;
}

.home-manset-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 1;
}

.home-manset-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.home-manset-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.home-manset-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.home-manset-thumbs-6 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.home-manset-thumbs-9 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
}

.home-manset-thumb {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}

.home-manset-thumb:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-manset-thumb-img-wrap > img {
  width: 100%;
  min-height: 110px;
  height: 110px;
  object-fit: cover;
  flex-shrink: 0;
}

.home-manset-thumb-placeholder {
  width: 100%;
  min-height: 110px;
  height: 110px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-manset-thumb-placeholder .material-symbols-outlined {
  font-size: 32px;
  opacity: 0.4;
}

.home-manset-thumb-title {
  padding: 10px;
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-manset-empty {
  padding: 60px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.home-manset-empty .material-symbols-outlined {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.5;
}

/* Uygulama reklamı */
.home-app-ad {
  flex-shrink: 0;
}

.home-app-ad-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-app-ad-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* İçerik satırı - Bugün Oynanacak Önemli Maçlar %65 | Puan Tablosu %35 */
.home-content-row {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 24px;
}

.home-content-row.home-content-row-standings-only {
  grid-template-columns: 1fr;
}

.home-content-row.home-content-row-standings-with-matches {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1100px) {
  .home-content-row {
    grid-template-columns: 1fr;
  }
  .home-content-row.home-content-row-standings-with-matches {
    grid-template-columns: 1fr;
  }
}

/* Bugünün Önemli Maçları */
.home-important-matches-wrap {
  background: rgba(20, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.home-important-matches-wrap .home-section-header {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
.home-important-matches-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.home-important-match-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.home-important-match-item:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}
.home-important-match-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}
.home-important-match-day {
  display: inline-block;
  margin-right: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(250, 204, 21, 0.95);
  text-transform: uppercase;
}
.home-important-match-teams {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.home-important-match-team {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.home-important-match-team:last-child {
  justify-content: flex-end;
}
.home-important-match-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.home-important-match-name {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-important-match-vs {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.home-important-match-score {
  font-weight: 700;
  color: #22c55e;
  font-size: 0.9rem;
}
.home-important-match-vs-text {
  font-style: italic;
}
.home-important-match-league {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}
.home-important-matches-empty {
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Maç listesi başlık satırı */
.home-matches-header {
  display: flex !important;
  align-items: center;
  padding: 8px 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default !important;
  min-height: 36px !important;
}

.home-matches-header:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}

.home-matches-header .ms-time,
.home-matches-header .ms-status,
.home-matches-header .ms-home,
.home-matches-header .ms-away,
.home-matches-header .ms-score-wrap,
.home-matches-header .ms-ht {
  font-size: 0.7rem !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5) !important;
}

.home-matches-header .ms-star-btn {
  cursor: default;
  opacity: 0.5;
}

/* Puan tablosu - bayrak seçimli */
.home-standings-wrap {
  background: rgba(20, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.home-standings-manset,
.home-standings-content-row {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  min-height: 380px;
}

.home-standings-manset .home-standings-content,
.home-standings-content-row .home-standings-content {
  flex: 1;
  min-height: 0;
  height: calc(100% - 70px - 10px);
}

.home-standings-manset .standings-inner,
.home-standings-content-row .standings-inner {
  height: 100%;
}

.home-standings-tabs-wrap {
  flex-wrap: nowrap;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 0 !important;
}

.home-standings-content {
  margin-top: 0 !important;
}

.home-standings-flags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-left: auto;
  align-items: center;
}

.home-standings-flag {
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.home-standings-flag:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-standings-flag.active {
  background: rgba(59, 130, 246, 0.25);
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.home-standings-flag img {
  display: block;
  border-radius: 2px;
  width: 22px;
  height: 16px;
  object-fit: contain;
}

.home-standings-content {
  position: relative;
  min-height: 200px;
  margin-top: 0;
  padding-top: 0;
}

.home-standings-wrap .standings-inner {
  padding-top: 0;
  margin-top: 0;
}

.home-standings-wrap .standings-inner .standings-splash-content,
.home-standings-wrap .standings-inner .lig-standings-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.home-standings-wrap .standings-inner .standings-tables-wrap {
  margin-top: 0;
}

.home-standings-wrap .standings-inner .standings-table-wrap:first-child {
  margin-top: 0;
}

/* Ana sayfa puan tablosu font boyutu */
#puan-durumu .standings-table,
#puan-durumu .standings-table th,
#puan-durumu .standings-table td {
  font-size: 1.06rem;
}

.standings-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px;
  color: rgba(255, 255, 255, 0.6);
}

.standings-inner {
  height: 560px;
  overflow: hidden;
}

.standings-inner .standings-splash-content,
.standings-inner .lig-standings-section {
  background: transparent;
  border: none;
  margin-top: 0;
  padding-top: 0;
}

.standings-inner .standings-filter-bar {
  margin-bottom: 10px;
}

.standings-inner .standings-home .standings-filter-bar {
  display: none;
}

.home-standings-wrap .standings-inner .standings-table-wrap:first-of-type {
  margin-top: 0;
}

.standings-inner .standings-table-wrap {
  margin-bottom: 12px;
}

.standings-inner .standings-table,
.standings-inner .standings-table th,
.standings-inner .standings-table td {
  font-size: 0.775rem !important; /* %25 büyütme */
}

.standings-inner .st-team-name,
.standings-inner a.st-team-link {
  font-size: 0.75rem !important; /* %25 büyütme */
}

.standings-inner a.st-team-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.standings-inner a.st-team-link:hover {
  color: #22c55e;
  text-decoration: underline;
}

.home-standings-wrap .home-section-title {
  font-size: 1.1rem !important; /* %25 büyütme: 0.88 * 1.25 */
}

.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.home-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.home-section-title .ms-icon {
  font-size: 22px;
  opacity: 0.9;
}

.home-section-link {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
}

.home-section-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Top 10 maçlar - livescore-table kullanır */
.home-top-matches .home-matches-list.livescore-table {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.home-top-matches .league-matches {
  display: flex;
  flex-direction: column;
}

.home-top-matches .home-matches-empty {
  padding: 24px;
}

.home-matches-empty,
.home-commentary-empty {
  padding: 40px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.home-matches-empty .material-symbols-outlined,
.home-commentary-empty .material-symbols-outlined {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* Uzman yorumları - profesyonel tasarım, takım logoları */
.home-commentary-item {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 6px;
}

.home-commentary-item:last-child {
  margin-bottom: 0;
}

.home-commentary-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-commentary-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.home-commentary-team {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.home-commentary-team-away {
  flex-direction: row;
  justify-content: flex-end;
}

.home-commentary-logo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-commentary-logo-ph {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.home-commentary-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-commentary-vs {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.home-manset-side-col .home-expert-commentary {
  background: rgba(20, 22, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.home-manset-side-col .home-expert-commentary .home-section-header {
  padding: 10px 14px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.home-manset-side-col .home-expert-commentary .home-commentary-list {
  padding: 8px 12px;
}

/* Uzman yorumları - scroll yok, tüm veriler görünsün */

/* Haber splash modal */
.modal-content-news {
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content-news .modal-header {
  background: rgba(20, 22, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-splash-body {
  padding: 24px;
  background: rgba(18, 20, 26, 0.98);
}

.news-splash-loading {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.6);
}

.news-splash-content .news-splash-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.news-splash-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px 0;
  color: #fff;
}

.news-splash-date {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.news-splash-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 16px 0;
}

.news-splash-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
}

.news-splash-link:hover {
  text-decoration: underline;
}

/* Haber tepkileri - smile badges */
.news-reactions-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}
.news-reactions-badges-manset {
  top: 10px;
  right: 10px;
}
.news-reaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.news-reaction-badge img {
  display: block;
  flex-shrink: 0;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

/* Manset thumb - image wrap for badges (splash ile aynı görünüm) */
.home-manset-thumb-img-wrap {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.home-manset-thumb .news-reactions-badges-thumb {
  top: 10px;
  right: 10px;
}

/* Splash - image wrap */
.news-splash-img-wrap {
  position: relative;
  margin-bottom: 16px;
}
.news-splash-img-wrap .news-splash-img {
  margin-bottom: 0;
}
.news-reactions-badges-splash {
  top: 10px;
  right: 10px;
}

/* Bu habere tepkini göster */
.news-splash-reactions {
  margin: 20px 0 16px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.news-splash-reactions-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.9);
}
.news-splash-smiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-splash-smile-btn {
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.news-splash-smile-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}
.news-splash-smile-btn img {
  display: block;
}
.news-splash-smile-btn--selected {
  border-color: rgba(34, 197, 94, 0.65) !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
}
.news-splash-smile-btn:disabled:not(.news-splash-smile-btn--selected) {
  opacity: 0.45;
  cursor: default;
}
.news-reaction-badge--mine {
  outline: 2px solid rgba(34, 197, 94, 0.65);
  outline-offset: 2px;
  border-radius: 8px;
}
.news-splash-img-wrap.reaction-zone-flash {
  animation: newsSplashTepkiFlash 2.5s ease;
  border-radius: 8px;
}
@keyframes newsSplashTepkiFlash {
  0%,
  100% {
    box-shadow: inset 0 0 0 0 rgba(34, 197, 94, 0);
  }
  12% {
    box-shadow: inset 0 0 0 3px rgba(34, 197, 94, 0.45), 0 0 24px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.3);
  }
}
.reaction-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10050;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: rgba(15, 18, 22, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  color: #e2e8f0;
  font-size: 0.9rem;
  max-width: min(92vw, 360px);
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.reaction-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.reaction-toast-icon {
  flex-shrink: 0;
  border-radius: 8px;
}
.reaction-toast-text {
  line-height: 1.35;
}

/* Uzman Yorumları sayfası */
.commentary-page-header {
  margin-bottom: 24px;
}
.commentary-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
}
.commentary-page-title .ms-icon {
  font-size: 28px;
  opacity: 0.9;
}
.commentary-page-desc {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}
.commentary-page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .commentary-page-list {
    grid-template-columns: 1fr;
  }
}
.commentary-page-item {
  display: block;
}
.commentary-page-league {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  margin-left: 32px;
}
