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

:root {
  --red: #e63946;
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --green: #2d6a4f;
  --green-light: #40916c;
  --bg: #f5f5f5;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --text: #212529;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }

/* TICKER */
.ticker-wrap { background: var(--red); color: #fff; padding: 8px 0; overflow: hidden; position: relative; }
.ticker-label { position: absolute; left: 0; top: 0; bottom: 0; background: #b71c2c; padding: 0 16px; display: flex; align-items: center; font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; z-index: 2; white-space: nowrap; }
.ticker-content { display: flex; animation: ticker 40s linear infinite; padding-left: 160px; }
.ticker-content span { white-space: nowrap; padding-right: 60px; font-size: 13px; font-weight: 500; }
.ticker-content span::after { content: " •"; color: rgba(255,255,255,0.5); margin-left: 60px; }
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-200%); } }

/* NAVBAR */
.navbar { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; padding: 0 20px; }
.nav-logo { color: #fff; font-family: var(--serif); font-size: 22px; font-weight: 800; text-decoration: none; padding: 14px 0; margin-right: 32px; white-space: nowrap; letter-spacing: -0.3px; }
.nav-logo span { color: var(--red); }
.nav-tabs { display: flex; gap: 0; flex: 1; overflow-x: auto; scrollbar-width: none; }
.nav-tabs::-webkit-scrollbar { display: none; }
.nav-tab { color: rgba(255,255,255,0.7); text-decoration: none; padding: 16px 16px; font-size: 13px; font-weight: 500; letter-spacing: 0.2px; border-bottom: 3px solid transparent; transition: all 0.2s; white-space: nowrap; cursor: pointer; font-family: var(--sans); display: inline-flex; align-items: center; }
.nav-tab:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-tab.active { color: #fff; border-bottom-color: var(--red); }
.nav-search { margin-left: auto; padding: 6px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; color: #fff; font-size: 13px; font-family: var(--sans); outline: none; width: 160px; transition: width 0.3s, background 0.3s; }
.nav-search:focus { width: 220px; background: rgba(255,255,255,0.15); }
.nav-search::placeholder { color: rgba(255,255,255,0.5); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.navbar.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* LAYOUT */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 32px 20px; max-width: 1200px; margin: 0 auto; }
.sidebar { align-self: start; position: sticky; top: 20px; }

/* TAGS */
.tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; margin-bottom: 8px; }
.tag-red { background: var(--red); color: #fff; }
.tag-navy { background: var(--navy); color: #fff; }
.tag-green { background: var(--green); color: #fff; }
.tag-gray { background: var(--gray-200); color: var(--gray-600); }

/* HERO */
.hero-section { background: var(--navy); padding: 40px 0 0; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
.hero-featured { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; }
.hero-featured img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.4s; }
.hero-featured:hover img { transform: scale(1.03); }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.88)); padding: 60px 28px 28px; }
.hero-overlay .tag { margin-bottom: 10px; }
.hero-title { font-family: var(--serif); font-size: 28px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 10px; }
.hero-excerpt { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 14px; }
.hero-meta { color: rgba(255,255,255,0.55); font-size: 12px; }
.hero-meta span { margin-right: 14px; }
.hero-secondary { display: flex; flex-direction: column; gap: 16px; padding-bottom: 24px; }
.hero-secondary-card { background: rgba(255,255,255,0.07); border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 120px 1fr; cursor: pointer; transition: background 0.2s; }
.hero-secondary-card:hover { background: rgba(255,255,255,0.12); }
.hero-secondary-card img { width: 120px; height: 90px; object-fit: cover; }
.hero-secondary-info { padding: 12px 14px; }
.hero-secondary-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.hero-secondary-meta { color: rgba(255,255,255,0.5); font-size: 11px; }

/* SECTION HEADING */
.section-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-200); }
.section-heading h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); }
.section-heading::before { content: ''; width: 4px; height: 28px; background: var(--red); border-radius: 2px; flex-shrink: 0; }

/* ARTICLE GRID */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.article-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.07); transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; }
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-3px); }
.article-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.article-card-body { padding: 18px; }
.article-card-title { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
.article-card-title:hover { color: var(--red); }
.article-card-excerpt { color: var(--gray-600); font-size: 13px; line-height: 1.55; margin-bottom: 14px; }
.article-card-meta { color: var(--gray-400); font-size: 11px; display: flex; gap: 12px; flex-wrap: wrap; }
.article-card-meta strong { color: var(--gray-600); font-weight: 600; }

/* ARTICLE LIST */
.article-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.article-list-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.06); cursor: pointer; transition: box-shadow 0.2s; }
.article-list-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.article-list-item img { width: 120px; height: 90px; object-fit: cover; display: block; }
.article-list-info { padding: 12px 16px 12px 0; }
.article-list-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 6px; }
.article-list-excerpt { color: var(--gray-600); font-size: 12px; line-height: 1.5; margin-bottom: 8px; }
.article-list-meta { color: var(--gray-400); font-size: 11px; }

/* SIDEBAR */
.sidebar-widget { background: #fff; border-radius: 8px; padding: 22px; margin-bottom: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
.sidebar-widget-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-200); }

/* CTA BOX */
.cta-box { background: linear-gradient(135deg, #1b4332, #2d6a4f); border-radius: 10px; padding: 24px; margin-bottom: 24px; text-align: center; box-shadow: 0 4px 20px rgba(45,106,79,0.3); }
.cta-box .cta-icon { font-size: 32px; margin-bottom: 10px; }
.cta-box .cta-title { font-family: var(--serif); font-size: 17px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.cta-box .cta-subtitle { color: rgba(255,255,255,0.8); font-size: 12px; line-height: 1.6; margin-bottom: 18px; }
.cta-box .cta-subtitle strong { color: #95d5b2; display: block; }
.cta-btn { display: block; background: #fff; color: var(--green); font-weight: 700; font-size: 13px; padding: 11px 18px; border-radius: 6px; text-decoration: none; transition: all 0.2s; letter-spacing: 0.2px; }
.cta-btn:hover { background: #95d5b2; color: #1b4332; transform: translateY(-1px); }

/* POPULAR LIST */
.popular-list { list-style: none; }
.popular-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); cursor: pointer; }
.popular-list li:last-child { border-bottom: none; }
.popular-list li:hover { background: var(--gray-100); border-radius: 6px; padding-left: 6px; transition: all 0.15s; }
.popular-list li:hover .popular-title { color: var(--red); }
.popular-num { font-size: 22px; font-weight: 800; color: var(--gray-200); font-family: var(--serif); min-width: 28px; line-height: 1.2; }
.popular-title { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* CATEGORY STATS */
.cat-stats { list-style: none; }
.cat-stats li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-200); font-size: 13px; cursor: pointer; transition: color 0.2s; }
.cat-stats li:hover { color: var(--red); }
.cat-stats li:last-child { border-bottom: none; }
.cat-count { background: var(--gray-200); color: var(--gray-600); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; }

/* FULL ARTICLE */
.big-article { background: #fff; border-radius: 10px; overflow: hidden; margin-bottom: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.big-article img { width: 100%; height: 320px; object-fit: cover; }
.big-article-body { padding: 32px; }
.big-article-title { font-family: var(--serif); font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.big-article-meta { color: var(--gray-400); font-size: 12px; margin-bottom: 20px; }
.big-article-meta span { margin-right: 16px; }
.big-article-body p { color: var(--gray-800); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.big-article-body h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin: 24px 0 12px; }
.inline-cta { background: linear-gradient(135deg, #1b4332, #2d6a4f); border-radius: 8px; padding: 20px 24px; margin: 24px 0; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.inline-cta-text { flex: 1; }
.inline-cta-text strong { color: #fff; display: block; font-size: 16px; font-family: var(--serif); margin-bottom: 4px; }
.inline-cta-text span { color: rgba(255,255,255,0.75); font-size: 12px; }
.inline-cta .cta-btn { width: auto; white-space: nowrap; flex-shrink: 0; }

/* AKADEMI CTA */
.akademi-cta { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%); border-radius: 12px; padding: 48px 40px; text-align: center; margin-bottom: 32px; box-shadow: 0 8px 32px rgba(45,106,79,0.35); }
.akademi-cta .cta-icon { font-size: 48px; margin-bottom: 16px; }
.akademi-cta h2 { font-family: var(--serif); font-size: 32px; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.akademi-cta p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 540px; margin: 0 auto 24px; line-height: 1.65; }
.akademi-features { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.akademi-feature { background: rgba(255,255,255,0.12); border-radius: 8px; padding: 12px 20px; color: #fff; font-size: 13px; font-weight: 600; }
.akademi-cta .cta-btn-big { display: inline-block; background: #fff; color: var(--green); font-weight: 700; font-size: 16px; padding: 15px 36px; border-radius: 8px; text-decoration: none; transition: all 0.2s; letter-spacing: 0.3px; }
.akademi-cta .cta-btn-big:hover { background: #95d5b2; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* GUIDE CARD */
.guide-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.07); margin-bottom: 24px; display: grid; grid-template-columns: 280px 1fr; cursor: pointer; transition: box-shadow 0.25s, transform 0.25s; }
.guide-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
.guide-card img { width: 280px; height: 200px; object-fit: cover; }
.guide-card-body { padding: 28px; }
.guide-card-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.guide-card-excerpt { color: var(--gray-600); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.guide-card-meta { color: var(--gray-400); font-size: 12px; }
.read-more { color: var(--red); font-weight: 600; font-size: 13px; text-decoration: none; display: inline-block; margin-top: 12px; }
.read-more:hover { text-decoration: underline; }

/* TURNUVA TABLE */
.tournament-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.07); margin-bottom: 32px; }
.tournament-table thead { background: var(--navy); }
.tournament-table thead th { color: #fff; padding: 14px 18px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.tournament-table tbody tr { border-bottom: 1px solid var(--gray-200); transition: background 0.15s; }
.tournament-table tbody tr:hover { background: var(--gray-100); }
.tournament-table tbody td { padding: 14px 18px; font-size: 13px; color: var(--gray-800); }
.tournament-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.status-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 10px; }
.status-live { background: #fff3f3; color: var(--red); border: 1px solid #f5c6c8; }
.status-upcoming { background: #f0f4ff; color: #3d5a9b; border: 1px solid #c5cef5; }
.status-done { background: var(--gray-200); color: var(--gray-600); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 48px 0 24px; margin-top: 48px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-family: var(--serif); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 20px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

/* PAGE HEADERS */
.page-header { background: var(--navy); padding: 32px 20px; text-align: center; }
.page-header h1 { font-family: var(--serif); color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* BIG ARTICLE H2 — desktop */
.big-article-body h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 28px 0 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-secondary { flex-direction: row; flex-wrap: wrap; }
  .hero-secondary-card { flex: 1; min-width: 200px; grid-template-columns: 1fr; }
  .hero-secondary-card img { width: 100%; height: 130px; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; position: static; } /* sticky kaldırıldı — mobilde yanlış davranıyor */
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card { grid-template-columns: 1fr; }
  .guide-card img { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* TABLET — inline oyuncu kartları ve hero wrapper çöküşü */
@media (max-width: 768px) {
  .tournament-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 12px; }
  .tournament-table thead th { padding: 10px 12px; font-size: 11px; }
  .tournament-table tbody td { padding: 10px 12px; font-size: 12px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .info-strip { flex-wrap: nowrap; overflow-x: auto; gap: 12px; padding: 10px 16px; }
  .info-item { flex-shrink: 0; }

  /* İnline hero wrapper (1fr 380px) → tek sütun */
  [style*="grid-template-columns:1fr 380px"] {
    grid-template-columns: 1fr !important;
  }

  /* İnline oyuncu kartları (300px 1fr) → üst üste */
  [style*="grid-template-columns:300px 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:300px 1fr"] img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
}

@media (max-width: 640px) {
  /* NAV */
  .nav-search { display: none; }
  .nav-hamburger { display: flex; min-width: 44px; min-height: 44px; padding: 11px 10px; justify-content: center; align-items: center; }
  .nav-inner { padding: 0 12px; position: relative; flex-wrap: wrap; }
  .nav-logo { font-size: 17px; }
  .nav-tabs { display: none; flex-direction: column; width: 100%; order: 3; padding: 4px 0 8px; overflow: visible; }
  .navbar.nav-open .nav-tabs { display: flex; }
  .nav-tab { padding: 13px 16px; font-size: 14px; border-bottom: none; border-left: 3px solid transparent; min-height: 44px; display: flex; align-items: center; }
  .nav-tab.active { border-left-color: var(--red); border-bottom-color: transparent; }
  .nav-tab:hover { background: rgba(255,255,255,0.08); }

  /* HERO */
  .hero-section { padding: 24px 0 0; }
  .hero-featured img { height: 220px; }
  .hero-title { font-size: 18px; line-height: 1.35; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-secondary { display: none; }

  /* Hero içi büyük başlık (inline style h1) */
  [style*="font-size:42px"] { font-size: 26px !important; line-height: 1.2 !important; }

  /* LAYOUT */
  .page-layout { padding: 16px 12px; gap: 20px; }
  .page-header { padding: 24px 16px; }
  .page-header h1 { font-size: 24px; }

  /* ARTICLE GRID */
  .article-grid { grid-template-columns: 1fr; }
  .article-list-item { grid-template-columns: 1fr; }
  .article-list-item img { width: 100%; height: 160px; }
  .article-list-info { padding: 12px; }

  /* BIG ARTICLE */
  .big-article img { height: 200px; }
  .big-article-body { padding: 16px; }
  .big-article-title { font-size: 20px; }
  .big-article-body h2 { font-size: 18px; margin: 20px 0 10px; }
  .big-article-body p { font-size: 14px; }

  /* GUIDE CARD */
  .guide-card-body { padding: 16px; }
  .guide-card-title { font-size: 18px; }

  /* CTA — touch target ≥ 44px */
  .cta-btn { padding: 13px 18px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .akademi-cta { padding: 28px 16px; }
  .akademi-cta h2 { font-size: 20px; }
  .akademi-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .inline-cta { flex-direction: column; gap: 12px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
  .footer-brand p { max-width: 100%; }

  /* MISC */
  .ticker-label { font-size: 9px; padding: 0 10px; }
  .section-heading h2 { font-size: 18px; }
  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-wide { grid-column: span 1 !important; }

  /* İnline 3-sütun video/içerik grid'leri → 1 sütun */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* İnline 4-sütun stat kutuları → 2×2 */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Bento: inline span 2 → span 1 */
  [style*="grid-column:span 2"] {
    grid-column: span 1 !important;
  }

  /* Bento item: min-width sıfırla + overflow kontrol */
  .bento-grid > * {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* Bento item padding küçült */
  [style*="padding:36px 40px"] {
    padding: 20px 16px !important;
  }
  [style*="padding:28px 24px"] {
    padding: 18px 14px !important;
  }

  /* Bento içi büyük emoji küçült */
  [style*="font-size:80px"] {
    font-size: 42px !important;
  }

  /* Küresel Trend stat sayıları → mobilde küçük */
  [style*="font-size:40px"] {
    font-size: 26px !important;
  }

  /* Küresel Trend stat kutusu padding → daha sığ */
  [style*="padding:18px 20px"] {
    padding: 12px 8px !important;
  }

  /* İframe yüksekliği mobilde */
  iframe[src*="youtube"] {
    height: 200px !important;
  }
}

/* Yatay taşmayı engelle — tüm ekran boyutlarında */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
