/* ═══════════════════════════════════════════════
   RADIO — Design Premium Dark
   ═══════════════════════════════════════════════ */

/* ── Root overrides ───────────────────────── */
:root {
  --r-red:    #e50914;
  --r-red2:   #ff1f2d;
  --r-dark:   #0a0a0a;
  --r-dark2:  #111;
  --r-dark3:  #1a1a1a;
  --r-dark4:  #222;
  --r-border: #2a2a2a;
  --r-text:   #e5e5e5;
  --r-muted:  #9ca3af;
  --r-white:  #fff;
  --r-gold:   #f59e0b;
}

/* ── Hero ─────────────────────────────────── */
.tvdr-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--r-dark);
  padding: 80px 20px 60px;
}

.tvdr-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(229,9,20,.18) 0%, transparent 70%),
              radial-gradient(ellipse at 100% 100%, rgba(229,9,20,.08) 0%, transparent 60%),
              linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.tvdr-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 Q300 0 600 40 Q900 80 1200 40 L1200 80 L0 80Z' fill='%230f0f0f'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

/* Animated EQ bars */
.tvdr-eq-bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 120px;
  opacity: .06;
  pointer-events: none;
}
.tvdr-eq-bars span {
  display: block;
  width: 8px;
  background: var(--r-red);
  border-radius: 4px 4px 0 0;
  animation: tvdr-eq var(--d, 1s) ease-in-out infinite alternate;
}
.tvdr-eq-bars span:nth-child(odd)  { --d: .7s; height: 60%; }
.tvdr-eq-bars span:nth-child(even) { --d: .9s; height: 30%; }
.tvdr-eq-bars span:nth-child(3n)   { --d: 1.1s; height: 80%; }
.tvdr-eq-bars span:nth-child(4n)   { --d: .6s; height: 50%; }
@keyframes tvdr-eq { from { transform: scaleY(.2); } to { transform: scaleY(1); } }

.tvdr-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.tvdr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,9,20,.12);
  border: 1px solid rgba(229,9,20,.3);
  color: var(--r-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.tvdr-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--r-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.tvdr-accent { color: var(--r-red); }

.tvdr-hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--r-muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.tvdr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

/* ── Buttons ──────────────────────────────── */
.tvdr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all .25s;
  text-decoration: none;
}
.tvdr-btn-play {
  background: var(--r-red);
  color: var(--r-white);
  box-shadow: 0 4px 24px rgba(229,9,20,.35);
}
.tvdr-btn-play:hover {
  background: var(--r-red2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229,9,20,.45);
}
.tvdr-btn-outline {
  background: transparent;
  color: var(--r-white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.tvdr-btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

/* ── Hero Stats ───────────────────────────── */
.tvdr-hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tvdr-stat {
  text-align: center;
}
.tvdr-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--r-white);
}
.tvdr-stat span {
  font-size: 12px;
  color: var(--r-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ── Sections ─────────────────────────────── */
.tvdr-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 20px;
}
.tvdr-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.tvdr-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--r-white);
  margin: 0;
}
.tvdr-view-all {
  font-size: 13px;
  color: var(--r-red);
  font-weight: 700;
  transition: color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.tvdr-view-all:hover { color: var(--r-red2); }
.tvdr-live-pulse {
  width: 10px; height: 10px;
  background: var(--r-red);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.tvdr-live-dot {
  width: 7px; height: 7px;
  background: var(--r-red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  display: inline-block;
}

/* ── Genres Grid ──────────────────────────── */
.tvdr-genres-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tvdr-genre-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  color: var(--r-muted);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.tvdr-genre-pill:hover,
.tvdr-genre-pill.active {
  background: var(--r-red);
  border-color: var(--r-red);
  color: var(--r-white);
  box-shadow: 0 4px 16px rgba(229,9,20,.25);
}
.tvdr-genre-count {
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 11px;
}

/* ── Featured Carousel ────────────────────── */
.tvdr-featured-section { background: var(--r-dark2); border-radius: 0; }
.tvdr-featured-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
@media (min-width: 1024px) {
  .tvdr-featured-carousel { grid-template-columns: repeat(3, 1fr); }
}
.tvdr-feat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  transition: transform .3s, box-shadow .3s;
  background: var(--r-dark4);
}
.tvdr-feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.tvdr-feat-bg {
  position: absolute;
  inset: 0;
  background: var(--logo, linear-gradient(135deg, #1a1a1a, #2a2a2a)) center/cover no-repeat;
  filter: blur(16px) brightness(.4) saturate(1.4);
  transform: scale(1.1);
}
.tvdr-feat-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
}
.tvdr-feat-logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
}
.tvdr-feat-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.tvdr-feat-logo span { font-size: 22px; font-weight: 900; color: var(--r-white); }
.tvdr-feat-info { flex: 1; }
.tvdr-feat-genre {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--r-red);
  display: block;
  margin-bottom: 4px;
}
.tvdr-feat-info h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--r-white);
  margin: 0 0 4px;
}
.tvdr-feat-link {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.tvdr-feat-link:hover { color: var(--r-white); }
.tvdr-feat-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--r-red);
  border: none;
  color: var(--r-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(229,9,20,.5);
}
.tvdr-feat-play:hover { background: var(--r-red2); transform: scale(1.1); }
.tvdr-feat-card.playing .tvdr-feat-play { background: #16a34a; }

/* ── Filter Bar ───────────────────────────── */
.tvdr-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tvdr-filter-btn {
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid var(--r-border);
  background: var(--r-dark3);
  color: var(--r-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.tvdr-filter-btn:hover,
.tvdr-filter-btn.active {
  background: var(--r-red);
  border-color: var(--r-red);
  color: var(--r-white);
}

/* Inline search */
.tvdr-search-inline {
  display: flex;
  align-items: center;
}
.tvdr-search-inline input {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  color: var(--r-white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  width: 220px;
  outline: none;
  transition: border .2s;
}
.tvdr-search-inline input:focus { border-color: var(--r-red); }

/* ── Radio Grid ───────────────────────────── */
.tvdr-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
@media (min-width: 768px) {
  .tvdr-radio-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

.tvdr-radio-card {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  cursor: pointer;
}
.tvdr-radio-card:hover {
  border-color: rgba(229,9,20,.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,9,20,.12);
}
.tvdr-radio-card.playing {
  border-color: var(--r-red);
  background: rgba(229,9,20,.06);
}

.tvdr-rc-logo {
  position: relative;
  height: 120px;
  background: var(--r-dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tvdr-rc-logo img {
  width: 80px; height: 80px;
  object-fit: contain;
  padding: 8px;
  transition: transform .3s;
}
.tvdr-radio-card:hover .tvdr-rc-logo img { transform: scale(1.06); }
.tvdr-rc-logo span {
  font-size: 40px;
  font-weight: 900;
  color: var(--r-red);
  opacity: .6;
}
.tvdr-rc-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(229,9,20,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.tvdr-radio-card:hover .tvdr-rc-play-overlay { opacity: 1; }

.tvdr-rc-info {
  padding: 10px 12px 4px;
  flex: 1;
}
.tvdr-rc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--r-white);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tvdr-rc-genre {
  font-size: 11px;
  color: var(--r-muted);
}

.tvdr-rc-actions {
  display: flex;
  align-items: center;
  padding: 8px 12px 10px;
  gap: 8px;
  border-top: 1px solid var(--r-border);
  margin-top: 6px;
}
.tvdr-rc-play-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border-radius: 8px;
  background: var(--r-red);
  color: var(--r-white);
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s;
}
.tvdr-rc-play-btn:hover { background: var(--r-red2); }
.tvdr-radio-card.playing .tvdr-rc-play-btn { background: #16a34a; }
.tvdr-rc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--r-border);
  color: var(--r-muted);
  transition: all .2s;
  text-decoration: none;
}
.tvdr-rc-link:hover { border-color: var(--r-red); color: var(--r-red); }

/* ── Load more ────────────────────────────── */
.tvdr-load-more-wrap { text-align: center; margin-top: 28px; }
.tvdr-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  color: var(--r-text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.tvdr-load-more:hover { background: var(--r-dark4); border-color: var(--r-red); color: var(--r-red); }
.tvdr-load-more:disabled { opacity: .5; cursor: default; }

/* ── Latest grid ──────────────────────────── */
.tvdr-latest-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 640px) {
  .tvdr-latest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .tvdr-latest-grid { grid-template-columns: repeat(4, 1fr); }
}
.tvdr-latest-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.tvdr-latest-card:hover { border-color: rgba(229,9,20,.4); background: var(--r-dark4); }
.tvdr-latest-card.playing { border-color: var(--r-red); }
.tvdr-lc-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--r-dark4);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tvdr-lc-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.tvdr-lc-logo span { font-size: 18px; font-weight: 900; color: var(--r-red); }
.tvdr-lc-info { flex: 1; min-width: 0; }
.tvdr-lc-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--r-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tvdr-lc-info span { font-size: 11px; color: var(--r-muted); }
.tvdr-lc-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--r-red);
  border: none;
  color: var(--r-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.tvdr-lc-play:hover { transform: scale(1.1); background: var(--r-red2); }
.tvdr-latest-card.playing .tvdr-lc-play { background: #16a34a; }

/* ── Why section ──────────────────────────── */
.tvdr-why-section {
  background: var(--r-dark2);
  padding: 12px 0;
}
.tvdr-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.tvdr-why-card {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .25s;
}
.tvdr-why-card:hover { border-color: rgba(229,9,20,.4); }
.tvdr-why-icon { font-size: 2rem; margin-bottom: 12px; }
.tvdr-why-card h3 { font-size: 15px; font-weight: 700; color: var(--r-white); margin: 0 0 8px; }
.tvdr-why-card p { font-size: 13px; color: var(--r-muted); line-height: 1.65; margin: 0; }

/* ── Blog grid ────────────────────────────── */
.tvdr-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.tvdr-blog-card {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.tvdr-blog-card:hover { transform: translateY(-3px); border-color: rgba(229,9,20,.3); }
.tvdr-blog-thumb { display: block; overflow: hidden; height: 160px; background: var(--r-dark4); }
.tvdr-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.tvdr-blog-card:hover .tvdr-blog-thumb img { transform: scale(1.05); }
.tvdr-blog-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.tvdr-blog-meta { font-size: 11px; color: var(--r-muted); margin-bottom: 8px; }
.tvdr-blog-body h3 { font-size: 15px; font-weight: 700; color: var(--r-white); margin: 0 0 8px; line-height: 1.4; }
.tvdr-blog-body h3 a { color: inherit; text-decoration: none; }
.tvdr-blog-body h3 a:hover { color: var(--r-red); }
.tvdr-blog-body p { font-size: 13px; color: var(--r-muted); line-height: 1.6; flex: 1; margin: 0 0 12px; }
.tvdr-blog-read { font-size: 12px; color: var(--r-red); font-weight: 700; text-decoration: none; }
.tvdr-blog-read:hover { color: var(--r-red2); }

/* ── Newsletter ───────────────────────────── */
.tvdr-newsletter-section {
  background: linear-gradient(135deg, rgba(229,9,20,.08), rgba(229,9,20,.04));
  border-top: 1px solid rgba(229,9,20,.15);
  border-bottom: 1px solid rgba(229,9,20,.15);
}
.tvdr-newsletter-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 0;
}
.tvdr-nl-icon { font-size: 3rem; margin-bottom: 12px; }
.tvdr-newsletter-box h2 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 900; color: var(--r-white); margin: 0 0 10px; }
.tvdr-newsletter-box p { color: var(--r-muted); margin: 0 0 20px; font-size: 14px; }
.tvdr-nl-form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 10px; }
.tvdr-nl-form input {
  flex: 1; min-width: 220px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  color: var(--r-white);
  font-size: 14px;
  outline: none;
}
.tvdr-nl-form input:focus { border-color: var(--r-red); }
.tvdr-nl-form button {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--r-red);
  color: var(--r-white);
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.tvdr-nl-form button:hover { background: var(--r-red2); }
.tvdr-newsletter-box small { font-size: 11px; color: #4b5563; }

/* ── Ad zones ─────────────────────────────── */
.tvdr-ad-zone { text-align: center; padding: 12px; }
.tvdr-ad-zone .tvd-ad { display: inline-block; max-width: 100%; }

/* ── SEO section ──────────────────────────── */
.tvdr-seo-section { background: var(--r-dark2); padding: 4px 0; }
.tvdr-seo-text {
  max-width: 800px;
  border-top: 1px solid var(--r-border);
  padding-top: 24px;
}
.tvdr-seo-text h2 { font-size: 18px; font-weight: 800; color: var(--r-white); margin: 0 0 12px; }
.tvdr-seo-text p { font-size: 13px; color: #6b7280; line-height: 1.75; margin: 0 0 10px; }

/* ── Empty state ──────────────────────────── */
.tvdr-empty {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  text-align: center;
  color: var(--r-muted);
}
.tvdr-empty h3 { font-size: 18px; font-weight: 700; color: var(--r-white); margin: 0; }
.tvdr-empty p { font-size: 13px; margin: 0; }

/* ══════════════════════════════════════════
   STICKY PLAYER
══════════════════════════════════════════ */
.tvdr-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10,10,10,.97);
  border-top: 1px solid var(--r-border);
  backdrop-filter: blur(20px);
  box-shadow: 0 -8px 32px rgba(0,0,0,.6);
  animation: tvdr-slide-up .3s ease;
}
@keyframes tvdr-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }

.tvdr-sp-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}

.tvdr-sp-info { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.tvdr-sp-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--r-dark3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--r-border);
}
.tvdr-sp-logo img { width: 100%; height: 100%; object-fit: contain; }
.tvdr-sp-meta { min-width: 0; }
.tvdr-sp-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--r-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tvdr-sp-song {
  display: block;
  font-size: 11px;
  color: var(--r-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tvdr-sp-controls { display: flex; align-items: center; gap: 8px; }
.tvdr-sp-play, .tvdr-sp-prev, .tvdr-sp-next {
  background: none;
  border: none;
  color: var(--r-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  border-radius: 50%;
  padding: 4px;
}
.tvdr-sp-play {
  width: 44px; height: 44px;
  background: var(--r-red);
  transition: background .2s, transform .2s;
}
.tvdr-sp-play:hover { background: var(--r-red2); transform: scale(1.05); }
.tvdr-sp-play.playing { background: #16a34a; }
.tvdr-sp-prev:hover, .tvdr-sp-next:hover { color: var(--r-red); }

.tvdr-sp-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.tvdr-sp-vol {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--r-muted);
}
@media (min-width: 640px) { .tvdr-sp-vol { display: flex; } }
.tvdr-sp-vol input[type=range] {
  width: 80px;
  accent-color: var(--r-red);
  cursor: pointer;
}
.tvdr-sp-close {
  background: none;
  border: none;
  color: var(--r-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  transition: color .2s;
}
.tvdr-sp-close:hover { color: var(--r-white); }

.tvdr-sp-progress {
  height: 2px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.tvdr-sp-buffering {
  height: 100%;
  background: var(--r-red);
  width: 0%;
  transition: width .3s;
}
.tvdr-sp-loading .tvdr-sp-buffering {
  animation: tvdr-loading 1.5s ease-in-out infinite;
}
@keyframes tvdr-loading {
  0% { width: 0%; margin-left: 0; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 0%; margin-left: 100%; }
}

/* ══════════════════════════════════════════
   SINGLE RADIO PAGE
══════════════════════════════════════════ */
.tvdr-breadcrumb {
  background: var(--r-dark2);
  border-bottom: 1px solid var(--r-border);
  padding: 4px 0;
}
.tvdr-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  font-size: 12px;
  color: var(--r-muted);
}
.tvdr-breadcrumb a { color: var(--r-muted); text-decoration: none; }
.tvdr-breadcrumb a:hover { color: var(--r-red); }
.tvdr-bc-sep { color: #444; }

.tvdr-single-layout { padding: 24px 0; }
.tvdr-single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .tvdr-single-grid { grid-template-columns: 1fr 320px; }
}

/* Player Card */
.tvdr-player-card {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.tvdr-pc-header {
  display: flex;
  gap: 20px;
  padding: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.tvdr-pc-logo {
  width: 96px; height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--r-dark4);
  border: 2px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tvdr-pc-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.tvdr-pc-logo span { font-size: 42px; font-weight: 900; color: var(--r-red); }
.tvdr-pc-info { flex: 1; min-width: 0; }
.tvdr-pc-genre-badge {
  display: inline-block;
  background: rgba(229,9,20,.12);
  border: 1px solid rgba(229,9,20,.3);
  color: var(--r-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.tvdr-pc-name {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--r-white);
  margin: 0 0 10px;
  line-height: 1.2;
}
.tvdr-pc-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.tvdr-pc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--r-dark4);
  border: 1px solid var(--r-border);
  color: var(--r-muted);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s;
}
.tvdr-pc-tag:hover { border-color: var(--r-red); color: var(--r-red); }
.tvdr-tag-live { color: var(--r-red) !important; border-color: rgba(229,9,20,.3) !important; background: rgba(229,9,20,.06) !important; }
.tvdr-pc-nowplaying {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--r-muted);
  background: var(--r-dark4);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--r-border);
  margin-top: 6px;
}
#tvdr-song-title { color: var(--r-white); font-weight: 600; }

/* Audio Player */
.tvdr-audio-player {
  background: var(--r-dark);
  padding: 20px 24px;
  border-top: 1px solid var(--r-border);
}
.tvdr-ap-waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 16px;
}
.tvdr-ap-waveform span {
  display: block;
  width: 3px;
  background: rgba(229,9,20,.25);
  border-radius: 2px;
  transition: height .2s;
}
.tvdr-audio-player.playing .tvdr-ap-waveform span {
  background: var(--r-red);
  animation: tvdr-wave var(--dur, .8s) ease-in-out infinite alternate;
}
.tvdr-ap-waveform span:nth-child(1)  { height: 40%; --dur: .7s; }
.tvdr-ap-waveform span:nth-child(2)  { height: 70%; --dur: .9s; }
.tvdr-ap-waveform span:nth-child(3)  { height: 50%; --dur: .6s; }
.tvdr-ap-waveform span:nth-child(4)  { height: 90%; --dur: 1s;  }
.tvdr-ap-waveform span:nth-child(5)  { height: 60%; --dur: .8s; }
.tvdr-ap-waveform span:nth-child(6)  { height: 40%; --dur: .7s; }
.tvdr-ap-waveform span:nth-child(7)  { height: 75%; --dur: .9s; }
.tvdr-ap-waveform span:nth-child(8)  { height: 55%; --dur: 1.1s;}
.tvdr-ap-waveform span:nth-child(9)  { height: 80%; --dur: .65s;}
.tvdr-ap-waveform span:nth-child(10) { height: 45%; --dur: .85s;}
.tvdr-ap-waveform span:nth-child(n+11) { height: 35%; }
@keyframes tvdr-wave { from { transform: scaleY(.3); } to { transform: scaleY(1); } }

.tvdr-ap-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tvdr-ap-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--r-red);
  border: none;
  color: var(--r-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(229,9,20,.4);
}
.tvdr-ap-play:hover:not(:disabled) { transform: scale(1.08); box-shadow: 0 8px 28px rgba(229,9,20,.55); }
.tvdr-ap-play.playing { background: #16a34a; box-shadow: 0 4px 20px rgba(22,163,74,.4); }
.tvdr-ap-play:disabled { opacity: .4; cursor: not-allowed; }
.tvdr-ap-vol-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--r-muted);
}
.tvdr-volume-slider {
  width: 90px;
  accent-color: var(--r-red);
  cursor: pointer;
}
.tvdr-ap-status { font-size: 13px; color: var(--r-muted); flex: 1; }
.tvdr-audio-player.playing .tvdr-ap-status { color: #4ade80; }
.tvdr-ap-unavailable { margin-top: 10px; font-size: 13px; color: #ef4444; text-align: center; }

/* Share bar */
.tvdr-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 24px;
  border-top: 1px solid var(--r-border);
  font-size: 13px;
  color: var(--r-muted);
}
.tvdr-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}
.tvdr-share-fb  { background: #1877f2; color: #fff; }
.tvdr-share-tw  { background: #000; color: #fff; }
.tvdr-share-wa  { background: #25d366; color: #fff; }
.tvdr-share-copy{ background: var(--r-dark4); color: var(--r-text); border: 1px solid var(--r-border); }
.tvdr-share-copy.copied { background: #16a34a; color: #fff; border-color: #16a34a; }
.tvdr-share-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Description */
.tvdr-single-description {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}
.tvdr-single-description h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--r-white);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--r-border);
}
.tvdr-desc-content { font-size: 14px; color: var(--r-muted); line-height: 1.8; }
.tvdr-desc-content p { margin: 0 0 12px; }
.tvdr-desc-content strong { color: var(--r-white); }

/* Comments */
.tvdr-comments-section {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  padding: 24px;
}
.tvdr-comments-section > h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--r-white);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--r-border);
}
.tvdr-comments-section h2 span { color: var(--r-muted); font-size: 14px; font-weight: 500; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment { border-bottom: 1px solid var(--r-border); padding: 16px 0; }
.comment .avatar { border-radius: 50%; margin-right: 10px; }
.comment-author { font-weight: 700; color: var(--r-white); font-size: 13px; }
.comment-content p { color: var(--r-muted); font-size: 13px; line-height: 1.6; margin: 6px 0 0; }
.comment-form input,
.comment-form textarea {
  background: var(--r-dark4);
  border: 1px solid var(--r-border);
  color: var(--r-white);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  width: 100%;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--r-red); outline: none; }
.comment-form .submit {
  background: var(--r-red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* Sidebar */
.tvdr-single-sidebar { display: flex; flex-direction: column; gap: 16px; }
.tvdr-sidebar-box {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  padding: 16px;
}
.tvdr-sidebar-box h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--r-muted);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--r-border);
}
.tvdr-genre-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--r-dark4);
  border: 1px solid var(--r-border);
  color: var(--r-muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.tvdr-genre-tag:hover { background: var(--r-red); border-color: var(--r-red); color: #fff; }
.tvdr-podcast-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--r-red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed rgba(229,9,20,.3);
  transition: all .2s;
}
.tvdr-podcast-link:hover { background: rgba(229,9,20,.06); }

/* Similar radios */
.tvdr-similar-list { display: flex; flex-direction: column; gap: 8px; }
.tvdr-similar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}
.tvdr-similar-item:hover { background: var(--r-dark4); }
.tvdr-similar-item.playing { background: rgba(229,9,20,.06); }
.tvdr-sim-logo {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--r-dark4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tvdr-sim-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.tvdr-sim-logo span { font-size: 14px; font-weight: 900; color: var(--r-red); }
.tvdr-sim-info { flex: 1; min-width: 0; }
.tvdr-sim-info a { text-decoration: none; display: block; }
.tvdr-sim-info strong { display: block; font-size: 12px; font-weight: 700; color: var(--r-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tvdr-sim-info span { font-size: 11px; color: var(--r-muted); }
.tvdr-sim-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(229,9,20,.1);
  border: 1px solid rgba(229,9,20,.3);
  color: var(--r-red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.tvdr-sim-play:hover { background: var(--r-red); color: #fff; }
.tvdr-similar-item.playing .tvdr-sim-play { background: #16a34a; border-color: #16a34a; color: #fff; }
.tvdr-sidebar-more {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--r-red);
  font-weight: 600;
  text-decoration: none;
}
.tvdr-sidebar-more:hover { color: var(--r-red2); }

/* Sticky sidebar ad */
@media (min-width: 1024px) {
  .tvdr-ad-sticky-sidebar {
    position: sticky;
    top: 80px;
  }
}

/* ── Logo fallback span (initial letter) ─────── */
.tvdr-logo-fallback {
  font-weight: 900;
  color: var(--r-red);
  line-height: 1;
  user-select: none;
  letter-spacing: -.5px;
}
/* Size per context */
.tvdr-rc-logo    .tvdr-logo-fallback { font-size: 36px; }
.tvdr-feat-logo  .tvdr-logo-fallback { font-size: 22px; }
.tvdr-lc-logo    .tvdr-logo-fallback { font-size: 18px; }
.tvdr-sim-logo   .tvdr-logo-fallback { font-size: 14px; }
.tvdr-pc-logo    .tvdr-logo-fallback { font-size: 42px; }
.tvdr-sp-logo    .tvdr-logo-fallback { font-size: 16px; }
.tvdr-card-logo  .tvdr-logo-fallback { font-size: 28px; }

/* ── Animations ───────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.9); }
}

/* ── Embed player shortcode ───────────────── */
.tvdr-embed-player { text-align: center; margin: 16px 0; }
.tvdr-embed-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--r-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.tvdr-embed-play:hover { background: var(--r-red2); }

/* ── Grid shortcode ───────────────────────── */
.tvdr-grid {
  display: grid;
  gap: 14px;
}
.tvdr-grid-4 { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.tvdr-grid-3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.tvdr-grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.tvdr-card {
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.tvdr-card:hover { border-color: rgba(229,9,20,.4); transform: translateY(-2px); }
.tvdr-card.playing { border-color: var(--r-red); background: rgba(229,9,20,.05); }
.tvdr-card-logo { width: 64px; height: 64px; border-radius: 10px; background: var(--r-dark4); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.tvdr-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.tvdr-card-initial { font-size: 28px; font-weight: 900; color: var(--r-red); }
.tvdr-card-info h3 { font-size: 13px; font-weight: 700; color: var(--r-white); margin: 0 0 2px; }
.tvdr-card-info span { font-size: 11px; color: var(--r-muted); }
.tvdr-card-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--r-red);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}
.tvdr-card:hover .tvdr-card-play, .tvdr-card.playing .tvdr-card-play { background-color: #16a34a; }

/* Mobile tweaks */
@media (max-width: 480px) {
  .tvdr-hero { padding: 70px 16px 50px; }
  .tvdr-hero-stats { gap: 20px; }
  .tvdr-radio-grid { grid-template-columns: repeat(2, 1fr); }
  .tvdr-pc-header { flex-direction: column; align-items: center; text-align: center; }
  .tvdr-share-bar { justify-content: center; }
}

/* ── Pays (Country) Navigation ─────────────────────── */
.tvdr-hero-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 32px;
}
.tvdr-hero-flag-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--r-border);
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  color: var(--r-muted);
  font-size: 12px;
  font-weight: 600;
}
.tvdr-hero-flag-btn:hover {
  background: rgba(229,9,20,.1);
  border-color: rgba(229,9,20,.4);
  color: var(--r-white);
  transform: translateY(-2px);
}
.tvdr-hero-flag-btn .tvdr-hfb-flag { font-size: 2rem; line-height: 1; }
.tvdr-hero-flag-btn .tvdr-hfb-name { font-size: 11px; }

.tvdr-pays-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(10,10,10,.97);
  border-bottom: 1px solid var(--r-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.tvdr-pays-nav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.tvdr-pays-nav-inner::-webkit-scrollbar { display: none; }
.tvdr-pays-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--r-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  flex-shrink: 0;
}
.tvdr-pays-tab:hover { color: var(--r-white); background: rgba(255,255,255,.04); }
.tvdr-pays-tab.active { color: var(--r-white); border-bottom-color: var(--r-red); }
.tvdr-pays-tab .tvdr-tab-flag { font-size: 1.2rem; line-height: 1; }
.tvdr-pays-tab .tvdr-tab-count {
  font-size: 10px;
  background: rgba(229,9,20,.15);
  color: var(--r-red);
  border-radius: 10px;
  padding: 1px 6px;
  font-weight: 700;
}

/* ── Search + Genre Filter ──────────────────────────── */
.tvdr-search-bar-wrap {
  background: var(--r-dark2);
  border-bottom: 1px solid var(--r-border);
  padding: 12px 0;
}
.tvdr-search-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tvdr-search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.tvdr-search-input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--r-muted);
  pointer-events: none;
}
.tvdr-search-input-wrap input {
  width: 100%;
  background: var(--r-dark3);
  border: 1px solid var(--r-border);
  border-radius: 8px;
  padding: 9px 12px 9px 38px;
  color: var(--r-white);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.tvdr-search-input-wrap input:focus { border-color: var(--r-red); }
.tvdr-genre-pills-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.tvdr-genre-pills-sm::-webkit-scrollbar { display: none; }
.tvdr-genre-sm {
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--r-border);
  background: var(--r-dark3);
  color: var(--r-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.tvdr-genre-sm:hover { border-color: var(--r-red); color: var(--r-red); }
.tvdr-genre-sm.active { background: var(--r-red); border-color: var(--r-red); color: #fff; }

/* ── Country Sections ───────────────────────────────── */
.tvdr-pays-section { padding-top: 24px; padding-bottom: 8px; }
.tvdr-pays-section.hidden { display: none; }
.tvdr-pays-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--r-border);
}
.tvdr-pays-flag-big { font-size: 2.8rem; line-height: 1; flex-shrink: 0; }
.tvdr-pays-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--r-white);
  margin: 0 0 4px;
}
.tvdr-pays-count { font-size: 13px; color: var(--r-muted); }
.tvdr-pays-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--r-border), transparent);
}

/* ── Logo fallback flag emoji ───────────────────────── */
.tvdr-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 900;
  color: var(--r-red);
  font-size: 1.6rem;
  line-height: 1;
}
.tvdr-logo-flag { font-size: 2.2rem; }
.tvdr-rc-logo .tvdr-logo-fallback { font-size: 2rem; }
.tvdr-rc-logo .tvdr-logo-flag { font-size: 2.4rem; }
.tvdr-pc-logo .tvdr-logo-fallback { font-size: 2.6rem; }
.tvdr-pc-logo .tvdr-logo-flag { font-size: 3rem; }
.tvdr-sp-logo .tvdr-logo-fallback { font-size: 1.4rem; }
.tvdr-sp-logo .tvdr-logo-flag { font-size: 1.8rem; }
