/* ═══════════════════════════════════════════════════════════════════════════
   YallaDominator Pro — style.css  v1.0.0
   Mobile-first, RTL/LTR, dark theme, CSS custom properties
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --yd-accent:     #00e676;
  --yd-accent-dark:#00b248;
  --yd-bg:         #0d0d0d;
  --yd-bg2:        #181818;
  --yd-bg3:        #232323;
  --yd-border:     #2a2a2a;
  --yd-text:       #e8e8e8;
  --yd-text-muted: #888;
  --yd-danger:     #f44336;
  --yd-live:       #f44336;
  --yd-finished:   #888;
  --yd-scheduled:  var(--yd-accent);
  --yd-radius:     10px;
  --yd-radius-sm:  6px;
  --yd-shadow:     0 2px 16px rgba(0,0,0,.4);
  --yd-font:       'Noto Sans Arabic','Segoe UI',Arial,sans-serif;
  --yd-transition: .18s ease;
  --yd-header-h:   58px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.yd-body {
  background: var(--yd-bg);
  color: var(--yd-text);
  font-family: var(--yd-font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
a { color: var(--yd-accent); text-decoration: none; transition: color var(--yd-transition); }
a:hover { color: var(--yd-accent-dark); }
img { max-width: 100%; height: auto; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.yd-container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.yd-container--narrow { max-width: 820px; }
.yd-container--legal { max-width: 980px; }
.yd-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: var(--yd-radius-sm); background: var(--yd-accent); color: #000; font-weight: 700; cursor: pointer; border: none; transition: background var(--yd-transition); }
.yd-btn:hover { background: var(--yd-accent-dark); color: #000; }
.yd-btn--outline { background: transparent; border: 2px solid var(--yd-accent); color: var(--yd-accent); }
.yd-btn--outline:hover { background: var(--yd-accent); color: #000; }
.yd-empty { padding: 40px; text-align: center; color: var(--yd-text-muted); font-size: 14px; }

/* ── Live dot ────────────────────────────────────────────────────────────── */
.yd-live-dot { display: inline-block; width: 8px; height: 8px; background: var(--yd-live); border-radius: 50%; animation: yd-pulse 1.2s infinite; }
@keyframes yd-pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:.6;} }

/* ── Header ──────────────────────────────────────────────────────────────── */
.yd-header { position: sticky; top: 0; z-index: 100; background: var(--yd-bg2); border-bottom: 1px solid var(--yd-border); height: var(--yd-header-h); }
.yd-header__inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.yd-header__brand { display: flex; align-items: center; gap: 8px; }
.yd-header__logo { height: 36px; width: auto; }
.yd-header__title { font-size: 1.3rem; font-weight: 800; color: var(--yd-accent); letter-spacing: -.5px; }
.yd-header__menu-toggle { display: none; background: none; border: none; color: var(--yd-text); font-size: 1.4rem; cursor: pointer; padding: 8px; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.yd-nav { background: var(--yd-bg2); border-bottom: 1px solid var(--yd-border); display: flex; align-items: center; overflow-x: auto; gap: 4px; padding: 0 12px; scrollbar-width: none; }
.yd-nav::-webkit-scrollbar { display: none; }
.yd-nav__item { flex-shrink: 0; padding: 12px 14px; color: var(--yd-text-muted); font-size: 13px; font-weight: 600; border-bottom: 3px solid transparent; transition: all var(--yd-transition); white-space: nowrap; }
.yd-nav__item:hover, .yd-nav__item--active { color: var(--yd-accent); border-bottom-color: var(--yd-accent); }
.yd-nav__item--live { color: var(--yd-live) !important; }
.yd-nav__item--live:hover { border-bottom-color: var(--yd-live); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.yd-hero { background: linear-gradient(135deg, var(--yd-bg2) 0%, var(--yd-bg3) 100%); padding: 28px 0 16px; border-bottom: 1px solid var(--yd-border); }
.yd-hero__inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.yd-hero__title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; margin-bottom: 6px; }
.yd-hero__subtitle { color: var(--yd-text-muted); font-size: 14px; margin-bottom: 16px; }

/* ── Date Nav ────────────────────────────────────────────────────────────── */
.yd-date-nav { display: flex; gap: 8px; margin: 12px 0; overflow-x: auto; }
.yd-date-nav__item { flex: 0 0 auto; padding: 8px 16px; background: var(--yd-bg3); border-radius: var(--yd-radius-sm); font-size: 12px; text-align: center; color: var(--yd-text-muted); border: 1px solid var(--yd-border); transition: all var(--yd-transition); }
.yd-date-nav__item:hover { border-color: var(--yd-accent); color: var(--yd-accent); }
.yd-date-nav__item--active { background: var(--yd-accent); color: #000 !important; border-color: var(--yd-accent); font-weight: 700; }
.yd-date-nav__item small { display: block; opacity: .7; font-size: 10px; margin-top: 2px; }

/* ── Sport Tabs ──────────────────────────────────────────────────────────── */
.yd-sport-tabs { display: flex; gap: 6px; margin: 8px 0; }
.yd-sport-tabs__tab { padding: 6px 14px; background: var(--yd-bg3); border: 1px solid var(--yd-border); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--yd-text-muted); cursor: pointer; transition: all var(--yd-transition); }
.yd-sport-tabs__tab:hover { border-color: var(--yd-accent); color: var(--yd-accent); }
.yd-sport-tabs__tab--active { background: var(--yd-accent); color: #000; border-color: var(--yd-accent); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.yd-layout { display: grid; grid-template-columns: 1fr 300px; gap: 20px; padding: 20px 0; }
@media(max-width:900px) { .yd-layout { grid-template-columns: 1fr; } }

/* ── Main / Sidebar ──────────────────────────────────────────────────────── */
.yd-main { padding-top: 0; overflow-x: clip; flex: 1 0 auto; }

/* ── Fixtures ────────────────────────────────────────────────────────────── */
.yd-fixtures { display: flex; flex-direction: column; gap: 16px; }
.yd-fixtures__group { display: flex; flex-direction: column; background: var(--yd-bg2); border: 1px solid var(--yd-border); border-top: none; border-radius: 0 0 var(--yd-radius) var(--yd-radius); overflow: hidden; }

/* ── League Header ───────────────────────────────────────────────────────── */
.yd-league-header { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--yd-bg3); border: 1px solid var(--yd-border); border-radius: var(--yd-radius) var(--yd-radius) 0 0; }
.yd-league-header img { width: 20px; height: 20px; object-fit: contain; }
.yd-league-header__name { flex: 1; font-weight: 700; font-size: 13px; color: var(--yd-text); }
.yd-league-header__table { font-size: 11px; color: var(--yd-text-muted); border: 1px solid var(--yd-border); padding: 3px 8px; border-radius: 4px; }

/* ── Match Card ──────────────────────────────────────────────────────────── */
.yd-match-card { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 11px 14px; gap: 10px; border-bottom: 1px solid var(--yd-border); text-decoration: none; transition: background var(--yd-transition); color: var(--yd-text); cursor: pointer; }
.yd-match-card:last-child { border-bottom: none; }
.yd-match-card:hover { background: var(--yd-bg3); }

.yd-match-card--live .yd-match-card__score { color: var(--yd-live); font-weight: 800; }
.yd-match-card--live { border-left: 3px solid var(--yd-live); }
.yd-match-card--finished .yd-match-card__score { color: var(--yd-text-muted); }

.yd-match-card__team { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; }
.yd-match-card__team--home { justify-content: flex-end; }
.yd-match-card__team img { width: 24px; height: 24px; object-fit: contain; }
.yd-match-card__score { font-size: 16px; font-weight: 800; text-align: center; min-width: 70px; color: var(--yd-accent); }
.yd-match-card__tv { grid-column: 1 / -1; text-align: center; font-size: 10px; color: var(--yd-text-muted); padding-top: 2px; }

/* ── RTL specifics ───────────────────────────────────────────────────────── */
.yd-dir-rtl .yd-match-card__team--home { justify-content: flex-start; }
.yd-dir-rtl .yd-match-card__team--away { justify-content: flex-end; }

/* ── Standings ───────────────────────────────────────────────────────────── */
.yd-standings-wrap { overflow-x: auto; }
.yd-standings { width: 100%; border-collapse: collapse; font-size: 13px; }
.yd-standings th { background: var(--yd-bg3); padding: 10px 8px; text-align: center; font-size: 11px; text-transform: uppercase; color: var(--yd-text-muted); border-bottom: 2px solid var(--yd-border); }
.yd-standings td { padding: 9px 8px; text-align: center; border-bottom: 1px solid var(--yd-border); }
.yd-standings__team { text-align: start !important; display: flex; align-items: center; gap: 6px; }
.yd-standings__team img { width: 18px; height: 18px; object-fit: contain; }
.yd-standings__team a { color: var(--yd-text); }
.yd-standings__points { font-weight: 800; color: var(--yd-accent); }
.yd-standings__row:hover td { background: var(--yd-bg3); }

/* ── News Grid ───────────────────────────────────────────────────────────── */
.yd-news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 16px; margin: 16px 0; width: 100%; }
.yd-news-card { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); overflow: hidden; transition: border-color var(--yd-transition), transform var(--yd-transition); }
.yd-news-card:hover { border-color: var(--yd-accent); transform: translateY(-2px); }
.yd-news-card a { display: block; padding: 16px; color: var(--yd-text); }
.yd-news-card__title { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.yd-news-card__date { font-size: 11px; color: var(--yd-text-muted); }
.yd-news-card__excerpt { font-size: 12px; color: var(--yd-text-muted); margin-top: 6px; }

/* ── Match Hero ──────────────────────────────────────────────────────────── */
.yd-match-hero { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 24px; margin-bottom: 20px; text-align: center; }
.yd-match-hero__league { font-size: 12px; color: var(--yd-text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.yd-match-hero__teams { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.yd-match-hero__team { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px; font-weight: 700; font-size: 14px; }
.yd-match-hero__team img { width: 64px; height: 64px; object-fit: contain; }
.yd-match-hero__score { text-align: center; }
.yd-match-hero__goals { display: block; font-size: 2.5rem; font-weight: 900; color: var(--yd-accent); }
.yd-match-hero__time { display: block; font-size: 1.8rem; font-weight: 900; }
.yd-match-hero__status { display: block; font-size: 12px; color: var(--yd-live); font-weight: 700; }
.yd-match-hero__venue, .yd-match-hero__tv { margin-top: 12px; font-size: 12px; color: var(--yd-text-muted); }

/* ── Predictions ─────────────────────────────────────────────────────────── */
.yd-predictions, .yd-predictions-card { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 20px; margin: 16px 0; }
.yd-predictions h2, .yd-predictions-card h2 { font-size: 14px; margin-bottom: 12px; }
.yd-predictions__bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; gap: 2px; margin-bottom: 10px; }
.yd-predictions__home { background: var(--yd-accent); border-radius: 4px 0 0 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #000; font-weight: 700; min-width: 24px; }
.yd-predictions__draw { background: #aaa; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #000; font-weight: 700; min-width: 24px; }
.yd-predictions__away { background: var(--yd-danger); border-radius: 0 4px 4px 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #fff; font-weight: 700; min-width: 24px; }
.yd-predictions__buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.yd-pred-btn { flex: 1; padding: 8px 12px; background: var(--yd-bg3); border: 1px solid var(--yd-border); border-radius: var(--yd-radius-sm); color: var(--yd-text); cursor: pointer; font-size: 12px; font-weight: 600; transition: all var(--yd-transition); }
.yd-pred-btn:hover { border-color: var(--yd-accent); color: var(--yd-accent); }
.yd-pred-btn--voted { background: var(--yd-accent); color: #000; border-color: var(--yd-accent); }

/* ── Team / League Hero ──────────────────────────────────────────────────── */
.yd-team-hero, .yd-league-hero { display: flex; align-items: center; gap: 16px; background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 20px; margin-bottom: 20px; }
.yd-team-hero__logo, .yd-league-hero__logo { width: 80px; height: 80px; object-fit: contain; }
.yd-team-hero h1, .yd-league-hero h1 { font-size: 1.4rem; margin-bottom: 4px; }
.yd-team-hero__country { font-size: 12px; color: var(--yd-text-muted); }

/* ── Player Stats ────────────────────────────────────────────────────────── */
.yd-player-hero { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 24px; margin-bottom: 20px; }
.yd-player-hero__photo { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; }
.yd-player-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.yd-player-stat { background: var(--yd-bg3); border-radius: var(--yd-radius-sm); padding: 10px 16px; text-align: center; }
.yd-player-stat span { display: block; font-size: 11px; color: var(--yd-text-muted); }
.yd-player-stat strong { font-size: 16px; font-weight: 700; }

/* ── Article ─────────────────────────────────────────────────────────────── */
.yd-article { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 24px; }
.yd-article__title { font-size: 1.4rem; margin-bottom: 8px; }
.yd-article__date { font-size: 12px; color: var(--yd-text-muted); margin-bottom: 16px; display: block; }
.yd-article__body { line-height: 1.8; }
.yd-article__source { display: inline-block; margin-top: 16px; font-size: 13px; }

/* ── Page Title ──────────────────────────────────────────────────────────── */
.yd-page-title { font-size: 1.4rem; font-weight: 900; margin: 20px 0 12px; }
.yd-live-indicator { display: flex; align-items: center; gap: 8px; }

/* ── Match Preview ───────────────────────────────────────────────────────── */
.yd-match-preview { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 20px; margin: 16px 0; }
.yd-match-preview h2 { font-size: 14px; margin-bottom: 10px; }
.yd-match-preview p { color: var(--yd-text); line-height: 1.7; font-size: 14px; }

/* ── Widget ──────────────────────────────────────────────────────────────── */
.yd-widget { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 16px; margin-bottom: 16px; }
.yd-widget h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--yd-text-muted); margin-bottom: 12px; }
.yd-widget__more { display: block; text-align: center; margin-top: 10px; font-size: 12px; padding: 6px; border: 1px solid var(--yd-border); border-radius: var(--yd-radius-sm); }

.yd-widget-news__item { display: block; padding: 8px 0; border-bottom: 1px solid var(--yd-border); font-size: 12px; color: var(--yd-text); }
.yd-widget-news__item:last-of-type { border-bottom: none; }
.yd-widget-news__item:hover { color: var(--yd-accent); }

.yd-widget-leagues__item { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--yd-border); font-size: 12px; color: var(--yd-text); }
.yd-widget-leagues__item:last-child { border-bottom: none; }
.yd-widget-leagues__item img { width: 20px; height: 20px; object-fit: contain; }
.yd-widget-leagues__item:hover { color: var(--yd-accent); }

/* ── League grid (standings index) ──────────────────────────────────────── */
.yd-league-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 16px; }
.yd-league-card { display: flex; align-items: center; gap: 10px; background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 14px; color: var(--yd-text); font-size: 13px; font-weight: 600; transition: border-color var(--yd-transition); }
.yd-league-card:hover { border-color: var(--yd-accent); color: var(--yd-accent); }
.yd-league-card img { width: 40px; height: 40px; object-fit: contain; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.yd-pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.yd-pagination a { padding: 7px 13px; background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius-sm); font-size: 13px; color: var(--yd-text); }
.yd-pagination a:hover { border-color: var(--yd-accent); color: var(--yd-accent); }
.yd-pagination__item--active { background: var(--yd-accent); color: #000 !important; border-color: var(--yd-accent); }

/* ── H2H ─────────────────────────────────────────────────────────────────── */
.yd-h2h { background: var(--yd-bg2); border: 1px solid var(--yd-border); border-radius: var(--yd-radius); padding: 20px; margin: 16px 0; }
.yd-h2h h2 { font-size: 14px; margin-bottom: 12px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.yd-footer { background: var(--yd-bg2); border-top: 1px solid var(--yd-border); padding: 24px 0; margin-top: 40px; }
.yd-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; text-align: center; color: var(--yd-text-muted); font-size: 12px; }
.yd-footer__note { margin-top: 4px; opacity: .6; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.yd-404 { text-align: center; padding: 80px 16px; }
.yd-404 h1 { font-size: 6rem; font-weight: 900; color: var(--yd-accent); }
.yd-404 p { margin: 16px 0 24px; color: var(--yd-text-muted); }

/* ── Predictions card (predictions page) ────────────────────────────────── */
.yd-predictions-card { margin-bottom: 16px; }
.yd-predictions-card__header { display: flex; justify-content: space-between; margin-bottom: 12px; font-weight: 700; font-size: 13px; }
.yd-predictions-card__vs { color: var(--yd-text-muted); font-weight: 400; font-size: 12px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .yd-header__menu-toggle { display: block; }
  .yd-nav { display: none; flex-direction: column; height: auto; padding: 8px 0; }
  .yd-nav.yd-nav--open { display: flex; }
  .yd-match-card { grid-template-columns: 1fr auto 1fr; font-size: 12px; }
  .yd-match-hero__goals { font-size: 1.8rem; }
  .yd-team-hero, .yd-league-hero { flex-direction: column; text-align: center; }
}


/* ── V2 homepage + domination enhancements ─────────────────────────── */
.yd-portal-hero { padding: 22px 0 26px; background: linear-gradient(180deg, #111827 0%, #0b1220 100%); border-bottom: 1px solid rgba(255,255,255,.06); }
.yd-portal-topline { display:flex; justify-content:space-between; align-items:center; color:#b8c1d8; font-size:12px; margin-bottom:10px; }
.yd-portal-daypills { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.yd-daypill { display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 16px; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); color:#fff; font-weight:700; }
.yd-daypill--today { background:var(--yd-accent); color:#03140a; border-color:var(--yd-accent); }
.yd-daypill:hover { color:#fff; border-color:var(--yd-accent); }
.yd-portal-head { display:grid; grid-template-columns:1.5fr .8fr; gap:18px; align-items:stretch; }
.yd-portal-head__intro { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); border-radius:20px; padding:22px; }
.yd-portal-stats { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.yd-portal-stat { background:#121a2a; border:1px solid rgba(255,255,255,.06); border-radius:18px; padding:18px; }
.yd-portal-stat strong { display:block; font-size:28px; line-height:1; color:#fff; margin-bottom:6px; }
.yd-portal-stat span { color:#9fb0cf; font-size:12px; }
.yd-live-strip { margin-top:18px; background:#0d1628; border:1px solid rgba(255,255,255,.06); border-radius:20px; padding:18px; }
.yd-live-strip__head { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:14px; }
.yd-live-strip__head h2 { font-size:16px; color:#fff; }
.yd-live-strip__head a { font-size:12px; font-weight:700; }
.yd-live-strip__cards { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.yd-live-strip__empty { color:#b8c1d8; font-size:13px; background:rgba(255,255,255,.04); border-radius:14px; padding:16px; }
.yd-live-mini { display:block; background:#111b31; border:1px solid rgba(255,255,255,.06); border-radius:16px; padding:14px; color:#fff; }
.yd-live-mini:hover { border-color:var(--yd-accent); color:#fff; transform:translateY(-2px); }
.yd-live-mini__league { display:block; font-size:11px; color:#8ea1c6; margin-bottom:8px; }
.yd-live-mini__teams { display:block; font-size:14px; line-height:1.45; margin-bottom:10px; }
.yd-live-mini__score { display:block; font-size:24px; font-weight:900; margin-bottom:10px; color:var(--yd-accent); }
.yd-live-mini__status { display:inline-flex; align-items:center; gap:6px; font-size:11px; color:#ff8f8f; }
.yd-home-shell { padding:22px 0 10px; }
.yd-home-grid { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:18px; align-items:start; }
.yd-home-grid__main, .yd-home-grid__side { min-width:0; }
.yd-section-card { background:var(--yd-bg2); border:1px solid var(--yd-border); border-radius:18px; padding:18px; margin-bottom:18px; box-shadow:var(--yd-shadow); }
.yd-section-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; }
.yd-section-head h2 { font-size:18px; }
.yd-section-head--stacked { display:block; }
.yd-section-head--stacked p { color:var(--yd-text-muted); font-size:13px; margin-top:6px; }
.yd-fixtures { gap:14px; }
.yd-fixtures__group { background:transparent; border:none; border-radius:0; overflow:visible; }
.yd-league-header { border-radius:14px 14px 0 0; background:#1b2436; }
.yd-match-card { display:block; padding:14px 16px; background:#121826; border:1px solid rgba(255,255,255,.06); border-top:none; color:var(--yd-text); }
.yd-match-card:first-of-type { border-top:1px solid rgba(255,255,255,.06); }
.yd-match-card:hover { background:#182134; }
.yd-match-card__teams { display:grid; grid-template-columns:1fr auto 1fr; gap:10px; align-items:center; }
.yd-match-card__team { min-width:0; }
.yd-match-card__team--home { justify-content:flex-start; }
.yd-match-card__team--away { justify-content:flex-end; text-align:end; }
.yd-match-card__name { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.yd-match-card__center { display:flex; flex-direction:column; align-items:center; gap:6px; min-width:100px; }
.yd-match-card__score { min-width:auto; font-size:20px; line-height:1; }
.yd-status-pill { display:inline-flex; align-items:center; justify-content:center; min-height:24px; padding:0 10px; border-radius:999px; font-size:11px; font-weight:800; }
.yd-status-pill--live { background:rgba(244,67,54,.15); color:#ff8c86; }
.yd-status-pill--finished { background:rgba(255,255,255,.08); color:#cfd6e6; }
.yd-status-pill--scheduled { background:rgba(0,230,118,.12); color:var(--yd-accent); }
.yd-match-card__meta { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:12px; color:#8d9ab4; font-size:11px; }
.yd-news-card--featured a { padding:0; }
.yd-news-card__thumb { height:110px; background:linear-gradient(135deg, rgba(0,230,118,.15), rgba(0,0,0,.05)), #1a2334; display:flex; align-items:center; justify-content:center; }
.yd-news-card__thumb span { width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.08); font-size:16px; font-weight:900; color:#fff; letter-spacing:1px; }
.yd-news-card__body { padding:14px 16px 16px; }
.yd-news-card__source { display:inline-block; color:var(--yd-accent); font-size:11px; margin-bottom:8px; font-weight:700; }
.yd-widget--quicklinks .yd-widget__more--quick { margin-top:8px; }
.yd-authority-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.yd-authority-card { display:block; background:#121826; border:1px solid rgba(255,255,255,.06); border-radius:18px; padding:18px; color:#fff; }
.yd-authority-card:hover { border-color:var(--yd-accent); color:#fff; transform:translateY(-2px); }
.yd-authority-card h3 { font-size:16px; margin-bottom:8px; }
.yd-authority-card p { color:#9aa6bf; font-size:13px; line-height:1.7; margin-bottom:12px; }
.yd-authority-card span { color:var(--yd-accent); font-size:12px; font-weight:700; }
.yd-serp-copy { background:#101723; border:1px solid rgba(255,255,255,.06); border-radius:18px; padding:22px; }
.yd-serp-copy h2 { font-size:20px; margin-bottom:12px; }
.yd-serp-copy p { color:#c8cfdd; margin-bottom:12px; line-height:1.85; }
.yd-faq { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.yd-faq__item { background:#121826; border:1px solid rgba(255,255,255,.06); border-radius:18px; padding:18px; }
.yd-faq__item h3 { font-size:15px; margin-bottom:8px; }
.yd-faq__item p { color:#a3afc6; font-size:13px; line-height:1.8; }
@media (max-width: 980px) {
  .yd-portal-head, .yd-home-grid, .yd-live-strip__cards, .yd-authority-grid, .yd-faq { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .yd-portal-stats { grid-template-columns:1fr 1fr; }
  .yd-match-card__teams { grid-template-columns:1fr; text-align:center; }
  .yd-match-card__team, .yd-match-card__team--away, .yd-match-card__team--home { justify-content:center; text-align:center; }
  .yd-match-card__center { min-width:0; }
}


.yd-header__actions { display:flex; align-items:center; gap:10px; }
.yd-lang-switch { display:flex; align-items:center; gap:6px; }
.yd-lang-switch__item { display:inline-flex; align-items:center; justify-content:center; min-width:76px; padding:6px 10px; border:1px solid var(--yd-border); border-radius:999px; background:var(--yd-bg3); color:var(--yd-text-muted); font-size:12px; font-weight:700; }
.yd-lang-switch__item:hover { border-color:var(--yd-accent); color:var(--yd-accent); }
.yd-lang-switch__item.is-active { background:var(--yd-accent); border-color:var(--yd-accent); color:#000; }
.yd-footer__links{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:14px}
.yd-footer__links a{color:#9be7b0;text-decoration:none;font-size:14px}
.yd-footer__links a:hover{text-decoration:underline}
.yd-article__media figcaption{padding:10px 14px;color:var(--yd-text-muted);font-size:12px;line-height:1.7}
.yd-article__media-note{margin-top:12px;color:var(--yd-text-muted);font-size:12px;line-height:1.8}
@media (max-width: 600px) {
  .yd-lang-switch__item { min-width:auto; padding:6px 9px; font-size:11px; }
  .yd-legal-page { padding-top: 18px; }
  .yd-legal-hero__title { font-size: 1.6rem; }
  .yd-legal-hero__subtitle, .yd-legal-body p { font-size: 14px; }
}

/* ── Phase 4 landing-page components ─────────────────────────────────────── */
.yd-breadcrumbs { margin: 18px 0 14px; }
.yd-breadcrumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:8px; color:var(--yd-text-muted); font-size:12px; }
.yd-breadcrumbs li { display:flex; align-items:center; gap:8px; }
.yd-breadcrumbs li:not(:last-child)::after { content:'/'; opacity:.45; }
.yd-breadcrumbs a { color:var(--yd-text-muted); }
.yd-breadcrumbs a:hover { color:var(--yd-accent); }
.yd-entity-shell { margin-bottom: 18px; }
.yd-entity-hero__content { flex:1; }
.yd-entity-hero__meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.yd-entity-hero__meta span,
.yd-entity-hero__meta a { display:inline-flex; align-items:center; gap:6px; padding:6px 10px; background:var(--yd-bg3); border:1px solid var(--yd-border); border-radius:999px; color:var(--yd-text-muted); font-size:12px; }
.yd-entity-copy { background: var(--yd-bg2); border:1px solid var(--yd-border); border-radius:var(--yd-radius); padding:18px; margin-top:14px; }
.yd-entity-copy p + p { margin-top:10px; }
.yd-insight-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:16px 0; }
.yd-insight-card { background:var(--yd-bg2); border:1px solid var(--yd-border); border-radius:var(--yd-radius); padding:16px; text-align:center; }
.yd-insight-card strong { display:block; font-size:24px; line-height:1; color:var(--yd-accent); margin-bottom:8px; }
.yd-insight-card span { display:block; font-size:12px; color:var(--yd-text-muted); }
.yd-link-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:14px; }
.yd-link-card { display:block; background:var(--yd-bg2); border:1px solid var(--yd-border); border-radius:var(--yd-radius); padding:16px; color:var(--yd-text); transition:border-color var(--yd-transition), transform var(--yd-transition); }
.yd-link-card:hover { border-color:var(--yd-accent); transform:translateY(-2px); color:var(--yd-text); }
.yd-link-card strong { display:block; font-size:14px; margin-bottom:6px; }
.yd-link-card span { display:block; font-size:12px; color:var(--yd-text-muted); }
.yd-related-news { display:grid; grid-template-columns:1fr; gap:12px; margin-top:14px; }
.yd-related-news__item { display:block; background:var(--yd-bg2); border:1px solid var(--yd-border); border-radius:var(--yd-radius); padding:14px 16px; color:var(--yd-text); }
.yd-related-news__item:hover { border-color:var(--yd-accent); color:var(--yd-text); }
.yd-related-news__item strong { display:block; font-size:14px; margin-bottom:6px; }
.yd-related-news__meta { display:block; font-size:12px; color:var(--yd-text-muted); }
.yd-safe-note { margin:18px 0 0; padding:14px 16px; border-radius:var(--yd-radius); background:rgba(0,230,118,.06); border:1px solid rgba(0,230,118,.18); color:var(--yd-text-muted); font-size:12px; }
.yd-article--news { padding:22px; }
.yd-legal-page { padding: 28px 0 10px; }
.yd-legal-hero { background: linear-gradient(180deg, #111827 0%, #0f1726 100%); border: 1px solid rgba(255,255,255,.06); border-radius: 22px; padding: 28px; margin-bottom: 18px; box-shadow: var(--yd-shadow); }
.yd-legal-hero__eyebrow { display:inline-flex; align-items:center; min-height:28px; padding: 6px 12px; border-radius:999px; background: rgba(0,230,118,.10); border: 1px solid rgba(0,230,118,.22); color: var(--yd-accent); font-size: 12px; font-weight: 800; margin-bottom: 14px; }
.yd-legal-hero__title { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 10px; color: #fff; }
.yd-legal-hero__subtitle { font-size: 15px; line-height: 1.9; color: #b9c4d8; max-width: 760px; }
.yd-legal-article { padding: 28px; border-radius: 22px; }
.yd-legal-body h2 { font-size: 18px; margin: 22px 0 10px; color: #fff; }
.yd-legal-body p { font-size: 15px; line-height: 1.95; color: #d3dae8; }
.yd-legal-body p + p { margin-top: 12px; }
.yd-article__meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
.yd-article__sourcebadge, .yd-article__host { display:inline-flex; align-items:center; min-height:28px; padding:6px 10px; border-radius:999px; background:var(--yd-bg3); border:1px solid var(--yd-border); color:var(--yd-text-muted); font-size:12px; font-weight:700; }
.yd-article__sourcebadge { color:var(--yd-accent); }
.yd-article__lead { font-size:15px; line-height:1.9; color:#d7ddeb; margin:14px 0 8px; }
.yd-article__body p + p { margin-top:12px; }
.yd-article__actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.yd-article__refs { margin-top:16px; padding:12px 14px; background:var(--yd-bg3); border:1px solid var(--yd-border); border-radius:var(--yd-radius); font-size:12px; line-height:1.7; word-break:break-word; }
.yd-article__media { margin:18px 0; overflow:hidden; border-radius:18px; background:#0e1420; border:1px solid rgba(255,255,255,.06); }
.yd-article__media img { display:block; width:100%; height:auto; }
.yd-article__media figcaption{font-size:13px;opacity:.78;padding:8px 12px 12px}
.yd-article__video { margin:18px 0; position:relative; padding-top:56.25%; border-radius:18px; overflow:hidden; background:#0a0f18; border:1px solid rgba(255,255,255,.06); }
.yd-article__video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
@media(max-width:900px) {
  .yd-insight-grid, .yd-link-grid { grid-template-columns:1fr; }
  .yd-legal-hero, .yd-legal-article { padding: 22px; }
}
.yd-container--legal{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.yd-legal-page{
  padding:32px 0 24px;
}

.yd-legal-hero{
  background:
    radial-gradient(circle at top right, rgba(0,230,118,.14), transparent 32%),
    linear-gradient(180deg, #101827 0%, #0d1420 100%);
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px;
  padding:30px;
  margin-bottom:20px;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.yd-legal-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(0,230,118,.10);
  border:1px solid rgba(0,230,118,.22);
  color:var(--yd-accent);
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.yd-legal-hero__title{
  font-size:clamp(1.9rem, 4vw, 2.8rem);
  line-height:1.1;
  margin:0 0 10px;
  color:#fff;
}

.yd-legal-hero__subtitle{
  color:#b9c4d8;
  font-size:15px;
  line-height:1.9;
  max-width:760px;
  margin-bottom:18px;
}

.yd-legal-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.yd-legal-chip{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  color:#e8eefc;
  font-size:13px;
  font-weight:700;
}

.yd-legal-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.yd-legal-card{
  background:linear-gradient(180deg, #131d2c 0%, #101827 100%);
  border:1px solid rgba(255,255,255,.07);
  border-radius:20px;
  padding:22px;
  box-shadow:0 12px 32px rgba(0,0,0,.18);
}

.yd-legal-card__title{
  color:#fff;
  font-size:18px;
  margin:0 0 10px;
}

.yd-legal-card__body{
  color:#d3dae8;
  font-size:15px;
  line-height:1.9;
  margin:0;
}

.yd-legal-card__body p{
  margin:0 0 12px;
}

.yd-legal-card__body p:last-child{
  margin-bottom:0;
}

.yd-legal-card__body a{
  color:var(--yd-accent);
  text-decoration:none;
  font-weight:700;
}

.yd-legal-card__body a:hover{
  text-decoration:underline;
}

.yd-legal-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.yd-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  transition:.2s ease;
}

.yd-btn--primary{
  background:var(--yd-accent);
  color:#07110b;
}

.yd-btn--primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}

.yd-btn--ghost{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

.yd-btn--ghost:hover{
  background:rgba(255,255,255,.06);
}

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

  .yd-legal-hero,
  .yd-legal-card{
    padding:20px;
  }

  .yd-legal-cta{
    flex-direction:column;
  }

  .yd-btn{
    width:100%;
  }
}
/* ── Phase 2: homepage trust section ───────────────────────────── */
.yd-trust-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

.yd-trust-card{
  background:#121826;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 32px rgba(0,0,0,.16);
}

.yd-trust-card h3{
  font-size:16px;
  color:#fff;
  margin-bottom:8px;
}

.yd-trust-card p{
  color:#a9b5cc;
  font-size:14px;
  line-height:1.85;
}

.yd-trust-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

/* ── Phase 2: footer trust block ──────────────────────────────── */
.yd-footer{
  position:relative;
  z-index:20;
}

.yd-footer__inner{
  position:relative;
  z-index:20;
}

.yd-footer-trust{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}

.yd-footer-trust__item{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  color:#d5deed;
  font-size:12px;
  font-weight:700;
}

.yd-footer__links{
  display:flex !important;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  align-items:center;
  margin-top:14px;
  visibility:visible !important;
  opacity:1 !important;
}

.yd-footer__links a{
  color:#9be7b0 !important;
  text-decoration:none;
  font-size:14px;
  display:inline-flex;
}

.yd-footer__links a:hover{
  text-decoration:underline;
}

/* ── Phase 2: article source / correction box ─────────────────── */
.yd-article-sourcebox{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, #101827 0%, #0d1420 100%);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 12px 32px rgba(0,0,0,.16);
}

.yd-article-sourcebox__head{
  margin-bottom:14px;
}

.yd-article-sourcebox__head h3{
  color:#fff;
  font-size:17px;
  margin-bottom:6px;
}

.yd-article-sourcebox__head p{
  color:#aab6cc;
  font-size:14px;
  line-height:1.8;
}

.yd-article-sourcebox__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.yd-article-sourcebox__item{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:14px;
}

.yd-article-sourcebox__item strong{
  display:block;
  color:#fff;
  font-size:13px;
  margin-bottom:6px;
}

.yd-article-sourcebox__item span{
  display:block;
  color:#c4d0e3;
  font-size:13px;
  line-height:1.75;
  word-break:break-word;
}

.yd-article-sourcebox__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

@media (max-width: 900px){
  .yd-trust-grid,
  .yd-article-sourcebox__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .yd-trust-links,
  .yd-article-sourcebox__actions{
    flex-direction:column;
  }

  .yd-trust-links .yd-btn,
  .yd-article-sourcebox__actions .yd-btn{
    width:100%;
  }
}



/* ── Phase 5: homepage schedule widget + richer detail pages ───────────── */
.yd-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(0,230,118,.12);
  border:1px solid rgba(0,230,118,.24);
  color:#9ef0bc;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  margin-bottom:12px;
}

.yd-page-intro{
  color:#b7c4d7;
  font-size:14px;
  line-height:1.85;
  margin-top:10px;
}

.yd-schedule-tabs{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin:18px 0;
}

.yd-schedule-tabs__item{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:#dbe7f7;
  text-decoration:none;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.yd-schedule-tabs__item:hover{
  transform:translateY(-1px);
  border-color:rgba(0,230,118,.35);
}

.yd-schedule-tabs__item strong{
  font-size:14px;
  color:#fff;
}

.yd-schedule-tabs__item span{
  font-size:12px;
  color:#91a3bf;
}

.yd-schedule-tabs__item--active{
  background:linear-gradient(180deg, rgba(0,230,118,.12), rgba(0,230,118,.06));
  border-color:rgba(0,230,118,.4);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.yd-schedule-shell__head,
.yd-schedule-shell__toolbar,
.yd-schedule-shell__footer,
.yd-article__masthead{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}

.yd-schedule-shell__stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.yd-schedule-mini-stat{
  min-width:100px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  text-align:center;
}

.yd-schedule-mini-stat strong{
  display:block;
  color:#fff;
  font-size:24px;
  line-height:1;
}

.yd-schedule-mini-stat span,
.yd-schedule-shell__date{
  color:#9fb0c9;
  font-size:12px;
}

.yd-schedule-shell__toolbar,
.yd-schedule-shell__footer{
  margin-top:14px;
  flex-wrap:wrap;
}

.yd-schedule-shell__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.yd-match-facts{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin:18px 0;
}

.yd-match-facts__item,
.yd-entity-chips,
.yd-match-story{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
}

.yd-match-facts__item{
  padding:16px;
}

.yd-match-facts__item span{
  display:block;
  color:#8fa4c4;
  font-size:12px;
  margin-bottom:6px;
}

.yd-match-facts__item strong{
  color:#fff;
  font-size:15px;
  line-height:1.6;
}

.yd-match-story{
  padding:18px;
  margin:18px 0;
}

.yd-match-story h2,
.yd-entity-chips h3{
  color:#fff;
  font-size:18px;
  margin-bottom:8px;
}

.yd-match-story p{
  color:#c7d3e4;
  line-height:1.9;
}

.yd-entity-chips{
  padding:16px;
  margin:16px 0;
}

.yd-entity-chips__list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.yd-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(0,230,118,.08);
  border:1px solid rgba(0,230,118,.2);
  color:#dff7e8;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

.yd-chip:hover{
  background:rgba(0,230,118,.14);
}

.yd-article__badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#d7e1ef;
  font-size:12px;
  font-weight:700;
}

.yd-article__masthead{
  margin:14px 0 16px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.yd-article__masthead-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  color:#b8c5d8;
  font-size:13px;
}

@media (max-width: 900px){
  .yd-schedule-tabs,
  .yd-match-facts{
    grid-template-columns:1fr;
  }

  .yd-schedule-shell__head,
  .yd-schedule-shell__toolbar,
  .yd-schedule-shell__footer,
  .yd-article__masthead{
    flex-direction:column;
    align-items:stretch;
  }
}

@media (max-width: 640px){
  .yd-schedule-shell__actions .yd-btn,
  .yd-schedule-shell__footer .yd-btn,
  .yd-article__masthead .yd-btn{
    width:100%;
  }
}


.yd-section-card--video{overflow:hidden}
.yd-video-feature{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(260px,1fr);gap:18px;align-items:start}
.yd-video-embed{position:relative;background:#0f172a;border-radius:16px;overflow:hidden;min-height:220px}
.yd-video-embed iframe{display:block;width:100%;height:100%;min-height:360px;border:0}
.yd-video-meta{display:flex;flex-direction:column;gap:10px}
.yd-video-meta__channel{font-size:13px;color:var(--yd-accent);text-decoration:none}
.yd-video-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.yd-video-card{border:1px solid rgba(148,163,184,.2);border-radius:16px;overflow:hidden;background:rgba(15,23,42,.03)}
.yd-video-card img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;background:#0f172a}
.yd-video-card__body{padding:14px;display:flex;flex-direction:column;gap:10px}
@media (max-width:900px){.yd-video-feature{grid-template-columns:1fr}.yd-video-embed iframe{min-height:240px}}


.yd-video-hub-header{margin-bottom:18px}
.yd-video-hub-header h1{margin-bottom:8px}
.yd-video-hub-header p{margin-top:0;color:var(--yd-secondary,#94a3b8)}


/* ── Breaking News Ticker ─────────────────────────────────────────── */
.yd-ticker{background:linear-gradient(90deg,var(--yd-accent),#00c853);color:#000;overflow:hidden;white-space:nowrap;font-size:13px;font-weight:600;padding:6px 0;position:relative;z-index:10}
.yd-ticker__track{display:flex;animation:yd-ticker-scroll 40s linear infinite}
.yd-ticker--paused .yd-ticker__track{animation-play-state:paused}
.yd-ticker__content{flex-shrink:0;padding:0 32px}
@keyframes yd-ticker-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
[dir=rtl] .yd-ticker__track{animation-name:yd-ticker-scroll-rtl}
@keyframes yd-ticker-scroll-rtl{0%{transform:translateX(0)}100%{transform:translateX(50%)}}

/* ── On-site Video Player ─────────────────────────────────────────── */
.yd-video-card__player{position:relative;cursor:pointer;border-radius:16px;overflow:hidden;background:#0f172a;aspect-ratio:16/9}
.yd-video-card__player img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .3s}
.yd-video-card__player:hover img{transform:scale(1.04)}
.yd-video-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:none;border:none;cursor:pointer;z-index:2;transition:transform .2s}
.yd-video-play-btn:hover{transform:translate(-50%,-50%) scale(1.15)}
.yd-video-card__player--active{aspect-ratio:16/9}
.yd-video-card__player--active iframe{display:block;width:100%;height:100%;border:0;border-radius:16px}
.yd-video-card__thumb{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:16px 16px 0 0;background:#0f172a}
.yd-video-card__channel{font-size:12px;color:var(--yd-secondary,#94a3b8)}

/* ── Glow live indicator ──────────────────────────────────────────── */
.yd-match-card--live{border-left:3px solid var(--yd-accent);animation:yd-glow .8s ease-in-out infinite alternate}
@keyframes yd-glow{from{box-shadow:0 0 4px rgba(0,230,118,.15)}to{box-shadow:0 0 14px rgba(0,230,118,.35)}}

/* ── Header polish ────────────────────────────────────────────────── */
.yd-header{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);border-bottom:2px solid var(--yd-accent)}
.yd-header__brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.yd-header__title{font-size:1.3rem;font-weight:800;color:#fff;letter-spacing:-.02em}
.yd-nav__item--live .yd-live-dot{width:8px;height:8px;background:#ef4444;border-radius:50%;display:inline-block;animation:yd-pulse 1s infinite}
@keyframes yd-pulse{0%,100%{opacity:1}50%{opacity:.3}}
.yd-nav__item--active{color:var(--yd-accent)!important;border-bottom:2px solid var(--yd-accent)}

/* ── Hero section boost ───────────────────────────────────────────── */
.yd-portal-hero{background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 50%,#0f172a 100%);padding:28px 0 20px}
.yd-portal-stat strong{font-size:1.8rem}
.yd-hero__title{font-size:clamp(1.6rem,4vw,2.4rem);line-height:1.2}

/* ── Match card hover ─────────────────────────────────────────────── */
.yd-match-card{transition:transform .15s,box-shadow .15s}
.yd-match-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,230,118,.1)}


/* ── User action bar ─────────────────────────────────────────────── */
.yd-user-actions{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0 18px}
.yd-action-btn{appearance:none;border:1px solid rgba(148,163,184,.25);background:rgba(15,23,42,.6);color:#fff;padding:10px 14px;border-radius:999px;font-weight:700;cursor:pointer;transition:.2s}
.yd-action-btn:hover{transform:translateY(-1px);border-color:var(--yd-accent);box-shadow:0 10px 24px rgba(0,230,118,.12)}
.yd-action-btn--active{background:var(--yd-accent);color:#07110a;border-color:var(--yd-accent)}

/* ── Follow strip ───────────────────────────────────────────────── */
.yd-follow-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:12px}
.yd-follow-card{display:flex;align-items:center;gap:10px;padding:12px 14px;border-radius:16px;background:rgba(15,23,42,.45);border:1px solid rgba(148,163,184,.18);text-decoration:none;color:#fff}
.yd-follow-card__icon{width:28px;height:28px;border-radius:999px;display:grid;place-items:center;background:rgba(255,255,255,.08)}

/* ── Sticky bottom nav ──────────────────────────────────────────── */
.yd-bottom-nav{position:fixed;inset:auto 0 0 0;display:none;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px;padding:10px 10px calc(10px + env(safe-area-inset-bottom));background:rgba(7,11,20,.96);backdrop-filter:blur(12px);border-top:1px solid rgba(148,163,184,.15);z-index:120}
.yd-bottom-nav__item{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;padding:8px 6px;border-radius:14px;color:#dbe6f5;text-decoration:none;font-size:11px;font-weight:700}
.yd-bottom-nav__item--cta{background:rgba(0,230,118,.16);color:#fff}
.yd-bottom-nav__icon{font-size:16px;line-height:1}

@media (max-width: 768px){
  .yd-bottom-nav{display:grid}
  body{padding-bottom:86px}
}


/* ── Video theater modal ─────────────────────────────────────────── */
.yd-body--video-open{overflow:hidden}
.yd-video-theater{position:fixed;inset:0;display:none;z-index:200}
.yd-video-theater--open{display:block}
.yd-video-theater__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.82)}
.yd-video-theater__dialog{position:relative;z-index:2;width:min(1280px,calc(100% - 24px));margin:18px auto;background:#0b1220;border:1px solid rgba(148,163,184,.18);border-radius:20px;overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,.45)}
.yd-video-theater__close{position:absolute;top:12px;right:12px;width:42px;height:42px;border:0;border-radius:999px;background:rgba(255,255,255,.1);color:#fff;font-size:28px;line-height:1;cursor:pointer;z-index:3}
.yd-video-theater__main{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(300px,.8fr);min-height:min(86vh,900px)}
.yd-video-theater__player-wrap{padding:18px;display:flex;flex-direction:column;gap:12px}
.yd-video-theater__player-wrap iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:18px;background:#000}
.yd-video-theater__meta h3{margin:0 0 6px;color:#fff;font-size:22px;line-height:1.3}
.yd-video-theater__meta p{margin:0;color:#9fb0c6}
.yd-video-theater__side{border-left:1px solid rgba(148,163,184,.12);padding:18px;overflow:auto}
.yd-video-theater__side h4{margin:0 0 14px;color:#fff}
.yd-video-theater__related{display:flex;flex-direction:column;gap:10px}
.yd-video-related-item{display:grid;grid-template-columns:140px minmax(0,1fr);gap:12px;align-items:start;padding:8px;border-radius:14px;border:1px solid rgba(148,163,184,.12);background:rgba(255,255,255,.03);color:#fff;cursor:pointer;text-align:left}
.yd-video-related-item img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:10px;background:#111827}
.yd-video-related-item__text{display:flex;flex-direction:column;gap:6px;min-width:0}
.yd-video-related-item__text strong{font-size:14px;line-height:1.35;white-space:normal}
.yd-video-related-item__text em{font-style:normal;color:#9fb0c6;font-size:12px}
.yd-video-related-item--active{border-color:var(--yd-accent);box-shadow:0 0 0 1px rgba(0,230,118,.25)}

/* ── Sidebar video emphasis ──────────────────────────────────────── */
.yd-home-grid__side .yd-section-card--video .yd-video-grid{grid-template-columns:1fr;gap:12px}
.yd-home-grid__side .yd-video-card{border-radius:14px}
.yd-home-grid__side .yd-video-card__body strong{font-size:14px;line-height:1.4}

@media (max-width: 980px){
  .yd-video-theater__main{grid-template-columns:1fr}
  .yd-video-theater__side{border-left:0;border-top:1px solid rgba(148,163,184,.12)}
}


/* ── v2.5.5 Sport tabs, live visuals, mini player ───────────────── */
.yd-sport-tabs__tab{display:inline-flex;align-items:center;justify-content:center;text-decoration:none}
.yd-live-strip__cards{align-items:stretch}
.yd-live-mini{display:flex;flex-direction:column;gap:10px;text-decoration:none;min-height:100%}
.yd-live-mini__visual{position:relative;border-radius:14px;padding:14px;background:radial-gradient(circle at top,rgba(0,230,118,.18),rgba(17,27,49,.08) 45%,rgba(17,27,49,.96) 100%);border:1px solid rgba(255,255,255,.06)}
.yd-live-mini__badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:rgba(0,0,0,.38);font-size:11px;font-weight:800;color:#ffd2d2}
.yd-live-mini__logos{display:grid;grid-template-columns:1fr auto 1fr;gap:10px;align-items:center;margin-top:16px}
.yd-live-mini__logo{display:grid;place-items:center;min-height:84px;border-radius:16px;background:rgba(255,255,255,.04);padding:10px}
.yd-live-mini__logo img{width:64px;height:64px;object-fit:contain}
.yd-live-mini__logo-fallback{display:grid;place-items:center;width:64px;height:64px;border-radius:999px;background:rgba(255,255,255,.08);font-size:24px;font-weight:900;color:#fff}
.yd-live-mini__vs{font-size:20px;font-weight:900;color:var(--yd-accent)}
.yd-live-mini__status{font-size:12px;color:#a8bad3}

.yd-video-theater__player-slot iframe,.yd-video-mini-player__slot iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:18px;background:#000}
.yd-video-theater__meta{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap}
.yd-video-theater__actions{display:flex;gap:10px;flex-wrap:wrap}
.yd-video-theater__action{appearance:none;border:1px solid rgba(148,163,184,.18);background:rgba(255,255,255,.04);color:#fff;padding:10px 14px;border-radius:999px;font-weight:700;cursor:pointer}
.yd-video-theater__action--accent{background:var(--yd-accent);border-color:var(--yd-accent);color:#041108}
.yd-video-related-item__badge{display:inline-flex;align-self:flex-start;width:max-content;padding:4px 8px;border-radius:999px;background:rgba(0,230,118,.14);color:var(--yd-accent);font-size:11px;font-weight:800}

.yd-video-mini-player{position:fixed;right:18px;bottom:92px;width:min(360px,calc(100% - 24px));background:#0b1220;border:1px solid rgba(148,163,184,.18);border-radius:18px;box-shadow:0 24px 60px rgba(0,0,0,.45);overflow:hidden;display:none;z-index:210}
.yd-video-mini-player--open{display:block}
.yd-video-mini-player__head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;border-bottom:1px solid rgba(148,163,184,.12)}
.yd-video-mini-player__head strong{font-size:13px;line-height:1.35;color:#fff;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
.yd-video-mini-player__actions{display:flex;gap:8px;align-items:center}
.yd-video-mini-player__btn{appearance:none;border:1px solid rgba(148,163,184,.18);background:rgba(255,255,255,.04);color:#fff;padding:8px 10px;border-radius:999px;font-weight:700;cursor:pointer}
.yd-video-mini-player__btn--close{width:34px;height:34px;padding:0;font-size:22px;line-height:1}
.yd-video-mini-player__slot{padding:10px}

@media (max-width:980px){
  .yd-live-strip__cards{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .yd-live-strip__cards{grid-template-columns:1fr}
  .yd-video-mini-player{right:12px;left:12px;bottom:96px;width:auto}
  .yd-video-theater__dialog{width:min(100%,calc(100% - 12px));margin:6px auto;border-radius:16px}
}


/* ── v2.5.6 Featured video, continue watching, sticky live ribbon ─ */
.yd-featured-video-home{padding:18px 0 6px}
.yd-section-card--featured-video{background:linear-gradient(135deg,rgba(15,23,42,.98),rgba(17,24,39,.94));border:1px solid rgba(0,230,118,.12)}
.yd-featured-video-home__grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(320px,.8fr);gap:18px;align-items:start}
.yd-featured-video-home__side{display:grid;gap:12px}
.yd-video-card--hero .yd-video-card__player{aspect-ratio:16/9;border-radius:18px}
.yd-video-card__player--hero img{height:100%;object-fit:cover}
.yd-video-card__body--hero strong{font-size:clamp(1.1rem,2vw,1.5rem);line-height:1.35}
.yd-video-card__hero-badge{position:absolute;top:14px;left:14px;padding:6px 10px;border-radius:999px;background:rgba(0,0,0,.58);color:#fff;font-size:12px;font-weight:800;z-index:2}
.yd-section-card--continue[hidden]{display:none!important}

.yd-live-ribbon{position:fixed;left:18px;right:18px;bottom:18px;z-index:160;display:flex;justify-content:center;pointer-events:none}
.yd-live-ribbon__inner{pointer-events:auto;display:flex;align-items:center;gap:14px;width:min(1080px,100%);padding:12px 14px;border-radius:18px;background:rgba(7,11,20,.95);backdrop-filter:blur(14px);border:1px solid rgba(148,163,184,.16);box-shadow:0 20px 50px rgba(0,0,0,.35)}
.yd-live-ribbon__label{display:inline-flex;align-items:center;gap:8px;font-weight:800;color:#fff;white-space:nowrap}
.yd-live-ribbon__track{display:flex;gap:10px;overflow:auto;scrollbar-width:none;min-width:0;flex:1}
.yd-live-ribbon__track::-webkit-scrollbar{display:none}
.yd-live-ribbon__item{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(148,163,184,.12);color:#fff;text-decoration:none;white-space:nowrap}
.yd-live-ribbon__item span{color:var(--yd-accent);font-weight:900}
.yd-live-ribbon__close{width:36px;height:36px;border-radius:999px;border:1px solid rgba(148,163,184,.16);background:rgba(255,255,255,.04);color:#fff;font-size:22px;line-height:1;cursor:pointer;flex:0 0 auto}

@media (max-width:980px){
  .yd-featured-video-home__grid{grid-template-columns:1fr}
}
@media (max-width:768px){
  .yd-live-ribbon{left:12px;right:12px;bottom:146px}
  .yd-live-ribbon__inner{padding:10px 12px;gap:10px}
  .yd-live-ribbon__item{padding:8px 10px;font-size:12px}
}


/* ── v2.5.7 Where to watch, H2H/Form, scorers/trending ───────────────── */
.yd-section-card--watch-guide .yd-safe-note{margin-top:14px}
.yd-watch-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.yd-watch-card{padding:16px;border-radius:16px;background:rgba(15,23,42,.45);border:1px solid rgba(148,163,184,.16);display:flex;flex-direction:column;gap:8px}
.yd-watch-card__label{font-size:12px;font-weight:800;color:var(--yd-accent);text-transform:uppercase;letter-spacing:.04em}
.yd-watch-card strong{font-size:16px;line-height:1.5;color:#fff}
.yd-watch-card em{font-style:normal;color:#9fb0c6;font-size:13px}
.yd-watch-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}

.yd-section-card--form-widget{overflow:hidden}
.yd-form-widget__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.9fr) minmax(0,1fr);gap:16px;align-items:start}
.yd-form-panel,.yd-h2h-summary,.yd-authority-block__pane{padding:16px;border-radius:18px;background:rgba(15,23,42,.45);border:1px solid rgba(148,163,184,.14)}
.yd-form-panel__head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.yd-form-panel__head img{border-radius:999px;object-fit:cover;background:#0f172a}
.yd-form-panel__head h3{margin:0;color:#fff;font-size:18px}
.yd-form-panel__head a{display:inline-flex;margin-top:4px;color:var(--yd-accent);font-size:13px;text-decoration:none}
.yd-form-sequence{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.yd-form-sequence__item,.yd-form-sequence__empty{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:34px;border-radius:999px;font-size:12px;font-weight:800}
.yd-form-sequence__item--w,.yd-form-match__badge--w{background:rgba(16,185,129,.16);color:#7ef7c1}
.yd-form-sequence__item--d,.yd-form-match__badge--d{background:rgba(245,158,11,.14);color:#fcd34d}
.yd-form-sequence__item--l,.yd-form-match__badge--l{background:rgba(239,68,68,.16);color:#fca5a5}
.yd-form-sequence__empty{padding:0 12px;min-width:unset;background:rgba(255,255,255,.05);color:#94a3b8}
.yd-form-panel__stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-bottom:14px}
.yd-form-panel__stats span{display:flex;flex-direction:column;align-items:flex-start;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.03)}
.yd-form-panel__stats strong{color:#fff;font-size:18px}
.yd-form-panel__stats em{font-style:normal;color:#94a3b8;font-size:12px}
.yd-form-panel__list,.yd-h2h-summary__list,.yd-trending-list,.yd-scorer-list{display:flex;flex-direction:column;gap:10px}
.yd-form-match,.yd-h2h-summary__item,.yd-trending-item,.yd-scorer-item{display:flex;align-items:center;gap:12px;text-decoration:none;color:#fff;padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.03);border:1px solid rgba(148,163,184,.1)}
.yd-form-match__badge{display:inline-flex;align-items:center;justify-content:center;min-width:58px;height:32px;border-radius:999px;font-size:11px;font-weight:800;padding:0 10px}
.yd-form-match__meta{display:flex;flex-direction:column;gap:4px;min-width:0;flex:1}
.yd-form-match__meta strong,.yd-h2h-summary__item strong,.yd-trending-item strong,.yd-scorer-item__meta strong{color:#fff;font-size:14px;line-height:1.35}
.yd-form-match__meta em,.yd-h2h-summary__item span,.yd-trending-item em,.yd-scorer-item__meta em{font-style:normal;color:#94a3b8;font-size:12px;line-height:1.5}
.yd-form-match time{color:#94a3b8;font-size:12px;white-space:nowrap}
.yd-h2h-summary{display:flex;flex-direction:column;gap:14px;justify-content:flex-start}
.yd-h2h-summary__score{display:grid;grid-template-columns:48px minmax(0,1fr) 48px;align-items:center;gap:10px;text-align:center;padding:14px;border-radius:16px;background:linear-gradient(135deg,rgba(0,230,118,.09),rgba(15,23,42,.92))}
.yd-h2h-summary__score span{font-size:28px;font-weight:900;color:#fff}
.yd-h2h-summary__score strong{font-size:14px;line-height:1.5;color:#cfe7d7}
.yd-h2h-summary__draws{padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.03);color:#dbe6f5}

.yd-section-card--authority-block .yd-page-intro{max-width:72ch}
.yd-authority-block__grid{display:grid;grid-template-columns:minmax(320px,.95fr) minmax(0,1.05fr);gap:16px}
.yd-authority-block__title{font-size:14px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--yd-accent);margin-bottom:12px}
.yd-scorer-item{align-items:center}
.yd-scorer-item__rank{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:999px;background:rgba(255,255,255,.06);font-weight:900;color:#fff;flex:0 0 auto}
.yd-scorer-item img,.yd-scorer-item__avatar{width:42px;height:42px;border-radius:999px;object-fit:cover;flex:0 0 auto}
.yd-scorer-item__avatar{display:inline-grid;place-items:center;background:rgba(0,230,118,.16);color:#dff7e8;font-weight:900}
.yd-scorer-item__meta{display:flex;flex-direction:column;gap:4px;min-width:0;flex:1}
.yd-scorer-item__stats{display:flex;flex-direction:column;align-items:flex-end;gap:4px}
.yd-scorer-item__stats strong{font-size:20px;color:#fff}
.yd-scorer-item__stats em{font-style:normal;color:#94a3b8;font-size:12px}
.yd-trending-item{align-items:flex-start;flex-direction:column}
.yd-trending-item__badge{display:inline-flex;align-items:center;justify-content:center;min-height:26px;padding:0 10px;border-radius:999px;background:rgba(0,230,118,.12);color:#dff7e8;font-size:11px;font-weight:800}
.yd-authority-block__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}

@media (max-width:980px){
  .yd-watch-grid,.yd-form-widget__grid,.yd-authority-block__grid{grid-template-columns:1fr}
}
@media (max-width:768px){
  .yd-form-panel__stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}


/* ── v2.5.8 search suggestions + hub polish ───────────────────────────── */
.yd-header-search{position:relative;display:flex;align-items:center;min-width:min(340px,42vw);max-width:420px;width:100%}
.yd-header-search__input{width:100%;height:40px;padding:0 42px 0 14px;border-radius:999px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.04);color:#fff;font-size:13px}
.yd-header-search__input::placeholder{color:#93a5bf}
.yd-header-search__input:focus{outline:none;border-color:rgba(0,230,118,.36);box-shadow:0 0 0 3px rgba(0,230,118,.12)}
.yd-header-search__button{position:absolute;right:6px;top:50%;transform:translateY(-50%);width:30px;height:30px;border:0;border-radius:999px;background:var(--yd-accent);color:#08110d;font-weight:900;cursor:pointer}
.yd-dir-rtl .yd-header-search__button{right:auto;left:6px}
.yd-dir-rtl .yd-header-search__input{padding:0 14px 0 42px}
.yd-search-suggest{position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:120;background:#0f1726;border:1px solid rgba(255,255,255,.08);border-radius:18px;box-shadow:0 20px 36px rgba(0,0,0,.35);padding:8px;display:flex;flex-direction:column;gap:6px}
.yd-search-suggest__item{display:block;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.03);border:1px solid transparent;color:#dbe7f7;text-decoration:none}
.yd-search-suggest__item:hover{border-color:rgba(0,230,118,.28);background:rgba(0,230,118,.08);color:#fff}
.yd-search-suggest__item strong{display:block;font-size:13px;color:#fff}
.yd-search-suggest__item em,.yd-search-suggest__item span{display:block;font-style:normal;font-size:11px;color:#8ea4c4;margin-top:3px}
.yd-search-page .yd-header-search{margin-top:14px;max-width:none;width:100%}
.yd-search-page .yd-header-search__input{height:48px;font-size:14px}
@media(max-width:980px){.yd-header__actions{flex-wrap:wrap;justify-content:flex-end}.yd-header-search{min-width:min(280px,100%);order:3;flex:1 0 100%}}
@media(max-width:640px){.yd-header-search{min-width:100%}.yd-search-suggest{left:0;right:0}}


.yd-entity-hero__actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
