/* =============================================================
   יום־יומי · portal.css
   Magazine / media-portal layout for everything below the hero.
   Hidabroot-style 3-column dense grid, RTL, dark + gold/RGB.
   Uses tokens from home-landing.css (--gold, --ink, --rgb-gradient…).
   ============================================================= */

.hl-portal {
  position: relative;
  z-index: 2;
  background: rgba(6,6,10,0.82);
  backdrop-filter: blur(4px);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.75rem, 2.5vw, 2rem) clamp(0.6rem, 1vw, 1rem);
}

/* ---- sticky portal nav (appears after scrolling past hero) ---- */
.hl-pnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
}
.hl-pnav.show { transform: translateY(0); }
.hl-pnav-brand {
  display: flex; flex-direction: column; line-height: 1;
  text-decoration: none; flex-shrink: 0;
}
.hl-pnav-brand b {
  font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em;
  background: var(--rgb-gradient); background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hl-rgb 16s linear infinite;
}
.hl-pnav-brand span { font-size: 0.62rem; color: var(--ink-3); margin-top: 1px; font-weight: 600; }
.hl-pnav-live {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 800; color: #ff3b6b;
  flex-shrink: 0;
}
.hl-pnav-live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b6b; box-shadow: 0 0 8px #ff3b6b;
  animation: live-blink 1.4s ease-in-out infinite;
}
@keyframes live-blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.hl-pnav-links {
  display: flex; align-items: center; gap: clamp(0.05rem, 0.5vw, 0.25rem);
  flex: 1 1 auto; min-width: 0;
  flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.hl-pnav-links::-webkit-scrollbar { display: none; }
.hl-pnav-links a {
  flex-shrink: 0;
  padding: 0.35rem clamp(0.3rem, 0.7vw, 0.7rem); border-radius: 8px;
  font-size: clamp(0.72rem, 1.15vw, 0.9rem); font-weight: 600; color: var(--ink-2);
  text-decoration: none; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.hl-pnav-links a:hover { color: var(--gold-light); background: rgba(212,168,67,0.1); }
.hl-pnav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem; border-radius: 999px;
  background: linear-gradient(135deg, #ff3b6b, #c8246b);
  color: #fff; font-size: 0.84rem; font-weight: 800;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,59,107,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hl-pnav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,59,107,0.5); }
.hl-pnav-search {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink-2); font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.hl-pnav-search:hover { background: rgba(212,168,67,0.12); color: var(--gold-light); }
.hl-pnav { flex-wrap: nowrap; }
/* pinned controls (settings · search · join) — always on one line, never hidden */
.hl-pnav-ctrls { display: flex; align-items: center; gap: clamp(0.3rem, 0.8vw, 0.55rem); flex-shrink: 0; }
.hl-pnav-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink-2); font-size: 1rem; transition: background 0.2s, color 0.2s;
}
.hl-pnav-icon:hover { background: rgba(212,168,67,0.14); color: var(--gold-light); }
.hl-pnav-search {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.7rem; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink-2); font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hl-pnav-search .ico { font-size: 0.95rem; }
.hl-pnav-search:hover { background: rgba(212,168,67,0.12); color: var(--gold-light); }
.hl-pnav-cta {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; line-height: 1.05;
  padding: 0.3rem 0.7rem; border-radius: 12px;
  background: linear-gradient(135deg, #ff3b6b, #c8246b);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,59,107,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hl-pnav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,59,107,0.5); }
@media (max-width: 560px) {
  .hl-pnav-brand span { display: none; }
  .hl-pnav-search .lbl { display: none; }
  .hl-pnav-search { padding: 0.4rem; }
}

/* ============================================================
   SECTION HEADER BARS (colored, Hidabroot-style)
   ============================================================ */
.hl-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 1rem;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  color: #fff; font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: -0.01em;
}
.hl-bar-pink   { background: linear-gradient(110deg, #ff3b6b, #c8246b); }
.hl-bar-gold   { background: linear-gradient(110deg, var(--gold), var(--gold-deep)); color: #1a1206; }
.hl-bar-violet { background: linear-gradient(110deg, #6c63ff, #4a3fd4); }
.hl-bar-green  { background: linear-gradient(110deg, #30d158, #1f9e42); color: #06210f; }
.hl-bar-more {
  font-size: 0.74rem; font-weight: 700; opacity: 0.9;
  text-decoration: none; color: inherit;
  display: inline-flex; align-items: center; gap: 0.2rem;
}
.hl-bar-more:hover { opacity: 1; }

/* ============================================================
   MAIN MAGAZINE GRID
   ============================================================ */
.hl-mag {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 340px;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  align-items: start;
}
.hl-mag-col { display: flex; flex-direction: column; gap: 1.6rem; }
@media (max-width: 1180px) {
  .hl-mag { grid-template-columns: 1fr 1fr; }
  .hl-mag-left { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .hl-mag { grid-template-columns: 1fr; }
  .hl-mag-left, .hl-mag-right, .hl-mag-center { grid-column: auto; }
}

/* block = bar + body */
.hl-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}
.hl-block-body { padding: 0.5rem; }

/* ---- sidebar list item (thumb right, title, play) ---- */
.hl-li {
  display: flex; gap: 0.7rem; align-items: center;
  padding: 0.55rem; border-radius: 10px;
  cursor: pointer; text-align: right;
  transition: background 0.2s;
  border: none; background: none; width: 100%; font: inherit; color: inherit;
}
.hl-li + .hl-li { border-top: 1px solid rgba(255,255,255,0.05); border-radius: 0; }
.hl-li:hover { background: rgba(212,168,67,0.06); }
.hl-li-thumb {
  position: relative; flex-shrink: 0;
  width: 92px; height: 60px; border-radius: 8px; overflow: hidden;
  background: #0a0a14;
}
.hl-li-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-li-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.2s;
}
.hl-li:hover .hl-li-play { opacity: 1; }
.hl-li-play span {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,168,67,0.95); color: #0a0a0a;
  display: grid; place-items: center; font-size: 0.7rem; padding-right: 2px;
}
.hl-li-txt { flex: 1; min-width: 0; }
.hl-li-title {
  font-size: 0.86rem; font-weight: 600; line-height: 1.35; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hl-li-sub { font-size: 0.72rem; color: var(--ink-3); margin-top: 0.25rem; }

/* ============================================================
   CENTER — big feature cards
   ============================================================ */
.hl-feat {
  position: relative;
  border-radius: 16px; overflow: hidden;
  cursor: pointer; display: block;
  background: #0a0a14;
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 16 / 10;
}
.hl-feat-lg { aspect-ratio: 16 / 11; }
.hl-feat img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.hl-feat:hover img { transform: scale(1.04); }
.hl-feat-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 38%, transparent 65%);
}
.hl-feat-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,59,107,0.95); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 0.28rem 0.8rem; border-radius: 6px;
}
.hl-feat-tag-gold { background: rgba(212,168,67,0.95); color: #1a1206; }
.hl-feat-play {
  position: absolute; top: 0.9rem; left: 0.9rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: 2px solid rgba(255,255,255,0.85);
  display: grid; place-items: center; color: #fff; font-size: 1rem; padding-right: 3px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.25s, transform 0.25s;
}
.hl-feat:hover .hl-feat-play { background: rgba(212,168,67,0.95); color: #0a0a0a; transform: scale(1.08); }
.hl-feat-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(1rem, 2.5vw, 1.6rem);
}
.hl-feat-cat { font-size: 0.78rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.4rem; }
.hl-feat-h {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem); font-weight: 900; color: #fff;
  line-height: 1.2; letter-spacing: -0.01em; text-wrap: balance;
}
.hl-feat-sm-h { font-size: clamp(1rem, 1.8vw, 1.3rem); }

/* ============================================================
   LEFT — top ranked list + shorts carousel + tabs
   ============================================================ */
.hl-rank { display: flex; flex-direction: column; }
.hl-rank-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem; cursor: pointer; text-align: right;
  border: none; background: none; width: 100%; font: inherit; color: inherit;
  transition: background 0.2s;
}
.hl-rank-item + .hl-rank-item { border-top: 1px solid rgba(255,255,255,0.05); }
.hl-rank-item:hover { background: rgba(212,168,67,0.06); }
.hl-rank-num {
  flex-shrink: 0; width: 38px; text-align: center;
  font-size: 2rem; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(212,168,67,0.5);
}
.hl-rank-thumb {
  position: relative; flex-shrink: 0;
  width: 70px; height: 46px; border-radius: 7px; overflow: hidden; background: #0a0a14;
}
.hl-rank-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-rank-title {
  flex: 1; min-width: 0;
  font-size: 0.82rem; font-weight: 600; line-height: 1.35; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* shorts carousel */
.hl-shorts-wrap { position: relative; }
.hl-shorts {
  display: flex; gap: 0.6rem; overflow-x: auto;
  padding: 0.5rem; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.hl-shorts::-webkit-scrollbar { display: none; }
.hl-short {
  position: relative; flex: 0 0 116px; height: 200px;
  border-radius: 12px; overflow: hidden; cursor: pointer; background: #0a0a14;
  border: 1px solid rgba(255,255,255,0.07);
}
.hl-short img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hl-short-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 55%);
}
.hl-short-title {
  position: absolute; bottom: 0; right: 0; left: 0; padding: 0.5rem;
  font-size: 0.72rem; font-weight: 700; color: #fff; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hl-short-play {
  position: absolute; top: 0.5rem; left: 0.5rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1.5px solid #fff;
  display: grid; place-items: center; color: #fff; font-size: 0.62rem; padding-right: 2px;
}
.hl-shorts-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%; z-index: 3;
  background: rgba(10,10,16,0.9); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 1rem;
  transition: background 0.2s;
}
.hl-shorts-arrow:hover { background: var(--gold); color: #0a0a0a; }
.hl-shorts-prev { right: -6px; }
.hl-shorts-next { left: -6px; }

/* tabbed widget */
.hl-tabs-w-head { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hl-tab-btn {
  flex: 1; padding: 0.7rem 0.4rem; cursor: pointer;
  background: none; border: none; font: inherit;
  font-size: 0.84rem; font-weight: 700; color: var(--ink-3);
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.hl-tab-btn.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.hl-tab-pane { display: none; padding: 0.9rem; }
.hl-tab-pane.active { display: block; }
.hl-zman-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}
.hl-zman-row:last-child { border-bottom: none; }
.hl-zman-row b { color: var(--gold-light); font-weight: 800; font-variant-numeric: tabular-nums; }
.hl-zman-row span { color: var(--ink-2); }
.hl-widget-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem; border-radius: 10px; text-decoration: none;
  transition: background 0.2s;
}
.hl-widget-link .thumb {
  width: 64px; height: 44px; flex-shrink: 0;
  border-radius: 9px; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: #14141f;
  position: relative;
}
.hl-widget-link .thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(212,168,67,0.12));
}
.hl-widget-link:hover .thumb { filter: brightness(1.08); }
.hl-widget-link + .hl-widget-link { border-top: 1px solid rgba(255,255,255,0.05); }
.hl-widget-link:hover { background: rgba(212,168,67,0.06); }
.hl-widget-link .ico { font-size: 1.3rem; flex-shrink: 0; }
.hl-widget-link .nm { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.hl-widget-link .ds { font-size: 0.74rem; color: var(--ink-3); }

/* loading shimmer */
.hl-ph {
  background: linear-gradient(100deg, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 70%);
  background-size: 200% 100%;
  animation: hl-shimmer 1.4s linear infinite;
}
@keyframes hl-shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .hl-ph { animation: none; } }

/* ============================================================
   MULTI-COLUMN FOOTER
   ============================================================ */
.hl-footer-mag { text-align: right; }
.hl-footer-cols {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: right;
}
.hl-footer-brandcol .hl-footer-mark { font-size: clamp(2rem, 5vw, 3rem); }
.hl-footer-brandcol .hl-footer-tag { margin-top: 0.5rem; }
.hl-footer-col h4 {
  font-size: 0.95rem; font-weight: 800; color: var(--gold-light);
  margin: 0 0 0.9rem;
}
.hl-footer-col a {
  display: block; padding: 0.32rem 0;
  font-size: 0.88rem; color: var(--ink-2); text-decoration: none;
  transition: color 0.2s;
}
.hl-footer-col a:hover { color: var(--gold-light); }
.hl-footer-mag .hl-footer-credit {
  max-width: 1320px; margin: 1.5rem auto 0; text-align: center;
}
@media (max-width: 760px) {
  .hl-footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hl-footer-brandcol { grid-column: 1 / -1; text-align: center; }
}

/* ---- ambient muted-autoplay background videos ---- */
.hl-ambient-vid {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
  pointer-events: none; border-radius: inherit; background: #000;
}
.hl-ambient-vid iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%; min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%) scale(1.6);
  border: 0; pointer-events: none;
}
.hl-feat.has-ambient > img { opacity: 0; }
.hl-feat.has-ambient .hl-feat-grad,
.hl-feat.has-ambient .hl-feat-cap,
.hl-feat.has-ambient .hl-feat-tag,
.hl-feat.has-ambient .hl-feat-play { position: relative; z-index: 2; }
.hl-short.has-ambient > img { opacity: 0; }
.hl-short.has-ambient .hl-short-grad,
.hl-short.has-ambient .hl-short-play,
.hl-short.has-ambient .hl-short-title { position: relative; z-index: 2; }
.yy-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  /* visible from page load — both rows show over the hero */
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
}
.yy-nav.show { transform: translateY(0); }
/* smooth collapse: top dark row slides away on scroll */
.yy-nav-top {
  overflow: hidden;
  max-height: 80px;
  opacity: 1;
  transition: max-height 0.28s ease, opacity 0.22s;
}
.yy-nav.yy-collapsed .yy-nav-top {
  max-height: 0;
  opacity: 0;
}
.yy-nav-row {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  padding: 0 clamp(0.7rem, 2vw, 1.5rem);
}
/* ---- ROW 1: dark header ---- */
.yy-nav-top { background: #081421; }
.yy-nav-top .yy-nav-row { height: 72px; }
.yy-nav-right, .yy-nav-left { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.yy-search { display: flex; align-items: center; height: 40px; background: #fff; border-radius: 22px; overflow: hidden; }
.yy-search input { border: none; outline: none; background: none; padding: 0 14px; font: inherit; font-size: 0.9rem; width: clamp(90px, 12vw, 180px); color: #1c1c24; }
.yy-search button { width: 44px; height: 40px; border: none; background: #e70f57; color: #fff; cursor: pointer; font-size: 1rem; flex-shrink: 0; }
.yy-search button:hover { background: #c20c49; }
.yy-soc {
  width: 38px; height: 38px; border-radius: 50%; background: #2f3a49;
  display: grid; place-items: center; color: #fff; font-size: 1rem; font-weight: 700;
  text-decoration: none; transition: background 0.25s, transform 0.2s; flex-shrink: 0; cursor: pointer; border: none;
}
.yy-soc:hover { background: #e70f57; transform: translateY(-2px); }
.yy-nav-logo {
  font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 1.9rem; letter-spacing: -0.02em;
  color: #fff; text-decoration: none; white-space: nowrap;
  background: var(--rgb-gradient, linear-gradient(90deg,#d4a843,#f0c668));
  background-size: 280% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: hl-rgb 16s linear infinite;
}
.yy-nav-cta {
  background: #2f3a49; border-radius: 40px; padding: 0 18px; height: 40px;
  display: inline-flex; align-items: center; color: #fff; font-size: 1rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; transition: background 0.25s;
}
.yy-nav-cta:hover { background: #e70f57; }
/* ---- ROW 2: white sticky menu ---- */
.yy-nav-menu { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.yy-nav-menu .yy-nav-row { height: 50px; }
.yy-menu-logo { font-size: 1.5rem; color: #e70f57; text-decoration: none; flex-shrink: 0; }
.yy-menu-ul {
  display: flex; align-items: center; list-style: none; margin: 0; padding: 0;
  flex: 1 1 auto; min-width: 0; overflow-x: auto; scrollbar-width: none; justify-content: center;
}
.yy-menu-ul::-webkit-scrollbar { display: none; }
.yy-menu-ul li { position: relative; flex-shrink: 0; }
.yy-menu-ul li a {
  display: block; padding: 0 clamp(0.3rem, 0.7vw, 0.7rem);
  font-size: clamp(0.82rem, 1.1vw, 1.02rem); font-weight: 500; color: #081421;
  text-decoration: none; white-space: nowrap; line-height: 50px; transition: color 0.2s;
}
.yy-menu-ul li a:hover { color: #e70f57; }
.yy-menu-ul li.don a { color: #f54747; font-weight: 700; }
.yy-menu-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.yy-live { display: inline-flex; align-items: center; gap: 5px; font-size: 0.95rem; font-weight: 700; color: #333; }
.blinking { animation: yy-blink 1s infinite; }
@keyframes yy-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.yy-club {
  display: inline-flex; align-items: center; gap: 4px;
  background: #e70f57; border-radius: 20px; padding: 5px 13px;
  color: #fff; font-size: 0.9rem; font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: background 0.25s;
}
.yy-club:hover { background: #c20c49; }
/* club button in top dark row */
.yy-club-top { background: #e70f57; }
.yy-nav-left { display: flex; align-items: center; gap: 10px; }
.yy-nav-left .yy-live { color: #cdd6e2; }
/* gear dropdown (rav/user login) in white menu row */
.yy-gear-wrap { position: relative; }
.yy-gear-btn { cursor: pointer; border: 1px solid rgba(0,0,0,.14); background: #fff; color: #0f766e; width: 36px; height: 36px; border-radius: 9px; font-size: 1.15rem; display: grid; place-items: center; transition: .15s; }
.yy-gear-btn:hover { background: #0f766e; color: #fff; border-color: #0f766e; }
.yy-gear-drop { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.18); border: 1px solid #e5e7eb; z-index: 9999; display: none; flex-direction: column; overflow: hidden; }
.yy-gear-drop.open { display: flex; }
.yy-gear-head { padding: 12px 18px 6px; font-size: .78rem; font-weight: 700; color: #9aa6b4; }
.yy-gear-item { display: flex; align-items: center; gap: 8px; padding: 13px 18px; color: #1a1a2e; font-size: .97rem; font-weight: 600; text-decoration: none; transition: background .15s; }
.yy-gear-item:hover { background: #f0fdf4; color: #0f766e; }
.yy-gear-main { background: #0f766e; color: #fff; }
.yy-gear-main:hover { background: #0c5d57; color: #fff; }
@media (max-width: 900px) {
  .yy-nav-top .yy-nav-row { height: 60px; }
  .yy-nav-logo { font-size: 1.5rem; }
  .yy-soc { width: 34px; height: 34px; font-size: 0.92rem; }
  .yy-nav-cta { font-size: 0.88rem; height: 36px; padding: 0 13px; }
  .yy-menu-ul { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .yy-search input { width: 80px; }
  .yy-nav-right .yy-soc:nth-child(n+4) { display: none; }
  .yy-nav-cta { display: none; }
  .yy-menu-logo, .yy-live { display: none; }
}
