/* HotAagMaal WP child — port of ReactTheme dark streaming UI */

:root {
  --ha-bg: #000000;
  --ha-fg: #ffffff;
  --ha-accent: #ff0000;
  --ha-accent-hot: #ff3388;
  --ha-surface: #0f0f0f;
  --ha-card: #1a1a1a;
  --ha-muted: rgba(255, 255, 255, 0.55);
  --ha-border: rgba(255, 255, 255, 0.08);
  --ha-header-h: 3.5rem;
  --ha-sidebar-w: 15rem;
  --ha-font: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  --ha-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

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

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ha-bg);
  color: var(--ha-fg);
  font-family: var(--ha-font);
  line-height: 1.45;
  overflow-x: hidden;
}

body.ha-scroll-lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

/* Kill RetroTube layout leftovers that fight the shell */
body.ha-theme #page,
body.ha-theme .row,
body.ha-theme .content-area,
body.ha-theme .site-main,
body.ha-theme .archive-content {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
body.ha-theme .site-content.ha-main {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  background: transparent !important;
}

body.ha-theme .header.row,
body.ha-theme .site-branding,
body.ha-theme .main-navigation,
body.ha-theme .logo,
body.ha-theme .happy-header-mobile {
  display: none !important;
}

body.ha-theme .archive-aside {
  display: none !important;
}

body.ha-theme .with-aside {
  margin: 0 !important;
  padding: 0 !important;
}

/* Animated grid backdrop */
.ha-grid-bg {
  z-index: -1;
  background-image:
    linear-gradient(90deg, #ff770008 1px, #0000 0),
    linear-gradient(#ff220008 1px, #0000 0);
  background-size: 50px 50px;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  contain: strict;
}

@media (min-width: 768px) {
  .ha-grid-bg {
    -webkit-mask-image: radial-gradient(#000 0, #0000 80%);
    mask-image: radial-gradient(#000 0, #0000 80%);
  }
}

/* —— Header —— */
.ha-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--ha-header-h);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--ha-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .ha-header {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: none;
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }
}

.ha-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.75rem;
}

@media (min-width: 768px) {
  .ha-header__inner {
    padding: 0 1rem;
  }
}

.ha-header__left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
  flex-shrink: 0;
}

.ha-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, color 0.2s;
}

.ha-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ha-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  padding: 0 0.5rem 0 0.25rem;
  transition: opacity 0.2s;
}

.ha-brand:hover {
  opacity: 0.9;
}

.ha-brand--md {
  font-size: 1.5rem;
}

.ha-brand--lg {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .ha-brand--lg {
    font-size: 2.125rem;
  }
}

.ha-brand__prefix,
.ha-brand__accent,
.ha-brand__text {
  color: #fff;
}

.ha-brand__accent {
  color: var(--ha-accent);
}

.ha-brand__text--multi {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

/* X4U-style short logos: one color per letter */
.ha-brand__ch {
  display: inline-block;
  line-height: 1;
}

.ha-brand__ch--1 {
  color: #ff2d55; /* X — vivid pink-red */
}

.ha-brand__ch--2 {
  color: #00e5ff; /* 4 — electric cyan */
}

.ha-brand__ch--3 {
  color: #ffd60a; /* U — bright yellow */
}

/* MilfMoon — premium hot magenta + luminous white */
.ha-brand--milfmoon {
  letter-spacing: -0.02em;
}

.ha-brand--milfmoon .ha-brand__prefix {
  color: #ff3d8a;
  background: linear-gradient(180deg, #ff7ab8 0%, #ff3d8a 55%, #ff1f6d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 61, 138, 0.55));
}

.ha-brand--milfmoon .ha-brand__accent {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.45),
    0 0 28px rgba(255, 180, 220, 0.25);
}

.ha-brand--milfmoon:hover .ha-brand__prefix {
  background: linear-gradient(180deg, #ff9ccd 0%, #ff5ca0 55%, #ff2d7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 80, 160, 0.7));
}

.ha-brand--milfmoon:hover .ha-brand__accent {
  color: #fff5fa;
  -webkit-text-fill-color: #fff5fa;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.65),
    0 0 32px rgba(255, 160, 210, 0.35);
}

/* DesiUncut — hot coral prefix + white uncut */
.ha-brand--desiuncut {
  letter-spacing: -0.02em;
}

.ha-brand--desiuncut .ha-brand__prefix {
  color: #ff4d6d;
  background: linear-gradient(180deg, #ff8a5c 0%, #ff4d6d 55%, #ff2d55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 77, 109, 0.55));
}

.ha-brand--desiuncut .ha-brand__accent {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.4),
    0 0 28px rgba(255, 140, 90, 0.22);
}

.ha-brand--desiuncut:hover .ha-brand__prefix {
  background: linear-gradient(180deg, #ffb08a 0%, #ff6280 55%, #ff3d6e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 80, 110, 0.7));
}

.ha-brand--desiuncut:hover .ha-brand__accent {
  color: #fff8f4;
  -webkit-text-fill-color: #fff8f4;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.6),
    0 0 32px rgba(255, 150, 100, 0.32);
}

.ha-brand__img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.ha-header__search {
  display: none;
  flex: 1;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .ha-header__search {
    display: flex;
  }
}

.ha-search {
  width: 100%;
  max-width: 640px;
  position: relative;
}

.ha-search-wrap {
  width: 100%;
  max-width: 640px;
  position: relative;
}

.ha-search__suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 90;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141414;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.ha-search__suggest[hidden] {
  display: none !important;
}

.ha-search__suggest-section {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ha-search__suggest-section:last-child {
  border-bottom: 0;
}

.ha-search__suggest-label {
  margin: 0;
  padding: 0 1rem 0.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ha-search__suggest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 1rem;
  border: 0;
  background: transparent !important;
  color: #fff !important;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.ha-search__suggest-item:hover,
.ha-search__suggest-item.is-active {
  background: rgba(255, 255, 255, 0.1) !important;
}

.ha-search__suggest-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.ha-search__suggest-icon--actor {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff0000, #7a0010);
  color: #fff;
}

.ha-search__suggest-thumb {
  position: relative;
  width: 5rem;
  aspect-ratio: 16 / 9;
  border-radius: 0.375rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.ha-search__suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ha-search__suggest-dur {
  position: absolute;
  right: 0.125rem;
  bottom: 0.125rem;
  font-size: 9px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
}

.ha-search__suggest-copy {
  min-width: 0;
  flex: 1;
}

.ha-search__suggest-title {
  display: block;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.35;
}

.ha-search__suggest-meta {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.ha-search__suggest-empty,
.ha-search__suggest-loading {
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.ha-search__suggest-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: #ff0000 !important;
  text-decoration: none !important;
  transition: background 0.15s;
}

.ha-search__suggest-all:hover,
.ha-search__suggest-all.is-active {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

.ha-search__input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 2.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.ha-search__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ha-search__input:focus {
  border-color: rgba(255, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.ha-search__icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.ha-header__right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

.ha-mobile-search-toggle {
  display: inline-flex;
}

@media (min-width: 640px) {
  .ha-mobile-search-toggle {
    display: none;
  }
}

.ha-mobile-search {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: var(--ha-header-h);
  z-index: 80;
  padding: 0.5rem 0.75rem;
  background: var(--ha-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ha-mobile-search.is-open {
  display: block;
}

.ha-user {
  position: relative;
}

.ha-user__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s;
}

.ha-user__btn:hover,
.ha-user__btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
}

.ha-user__avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
}

.ha-user__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ha-user__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 200px;
  padding: 0.4rem;
  border-radius: 14px;
  background: rgba(22, 22, 26, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.ha-user__menu.is-open {
  display: block;
}

.ha-user__menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.ha-user__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.ha-btn--ghost {
  color: rgba(255, 255, 255, 0.85);
}

.ha-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ha-btn--primary {
  background: var(--ha-accent);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.35);
}

.ha-btn--primary:hover {
  filter: brightness(1.08);
}

/* —— Sidebar —— */
.ha-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ha-sidebar-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .ha-sidebar-overlay {
    display: none !important;
  }
}

.ha-sidebar {
  position: fixed;
  top: var(--ha-header-h);
  left: 0;
  z-index: 40;
  width: var(--ha-sidebar-w);
  height: calc(100vh - var(--ha-header-h));
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s var(--ha-ease);
}

.ha-sidebar.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .ha-sidebar {
    background: var(--ha-surface);
    backdrop-filter: none;
    border-right-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }
}

.ha-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  scrollbar-width: none;
}

.ha-sidebar__nav::-webkit-scrollbar {
  display: none;
}

.ha-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ha-nav-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s, color 0.2s;
}

.ha-nav-list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.ha-nav-list a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ha-nav-list svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.ha-divider {
  margin: 0.75rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  border: 0;
}

.ha-station-label {
  padding: 0 0.5rem 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.ha-stations {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ha-station {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 52px;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(120% 140% at 100% 0%, rgba(255, 0, 0, 0.14) 0%, #1c1c1c 55%);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.ha-station:hover {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, 0.25);
}

.ha-station.is-active {
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.35), 0 8px 18px rgba(255, 0, 0, 0.12);
  background: radial-gradient(120% 140% at 100% 0%, rgba(255, 0, 0, 0.28) 0%, #1a1a1a 52%);
}

.ha-station__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.ha-station__idx {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-accent);
  margin-bottom: 0.15rem;
}

.ha-station__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-station__meta {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
}

.ha-station__live {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--ha-accent);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.ha-station__live-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  animation: ha-pulse 1.2s ease-in-out infinite;
}

@keyframes ha-pulse {
  50% {
    opacity: 0.45;
  }
}

/* —— Main shell —— */
.ha-shell {
  padding-top: var(--ha-header-h);
  min-height: 100vh;
  transition: padding 0.3s var(--ha-ease);
}

@media (min-width: 1024px) {
  body.ha-sidebar-open .ha-shell {
    padding-left: var(--ha-sidebar-w);
  }
}

.ha-main {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 768px) {
  .ha-main {
    padding: 1.5rem;
  }
}

.ha-main__inner {
  min-height: calc(100vh - var(--ha-header-h) - 8rem);
}

/* Filter chips */
.ha-filters {
  margin-bottom: 1.25rem;
}

.ha-filters__nav {
  margin-bottom: 0.75rem;
}

.ha-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.ha-chips::-webkit-scrollbar {
  display: none;
}

.ha-chips__sep {
  flex-shrink: 0;
  align-self: center;
  width: 1px;
  height: 1.25rem;
  margin: 0 0.125rem;
  background: rgba(255, 255, 255, 0.15);
}

.ha-chip {
  flex-shrink: 0;
  height: 2rem;
  padding: 0 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  background: #272727;
  color: #fff;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.ha-chip--cat {
  font-weight: 500;
}

.ha-chip:hover {
  background: #3f3f3f;
}

.ha-chip.is-active {
  background: #fff;
  color: #000;
}

.ha-home-seo {
  margin: 0.15rem 0 0.85rem;
}

.ha-home-seo__title {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.ha-home-seo .homepage-description {
  margin: 0;
  max-width: 52rem;
  color: var(--ha-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ha-home-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.ha-home-head__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .ha-home-head__title {
    font-size: 1.125rem;
  }
}

.ha-sort {
  position: relative;
  flex-shrink: 0;
}

.ha-sort__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.25rem;
  padding: 0 0.65rem 0 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.ha-sort__btn:hover,
.ha-sort__btn[aria-expanded="true"] {
  background: #222;
  border-color: rgba(255, 255, 255, 0.2);
}

.ha-sort__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.ha-sort__value {
  max-width: 9.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-sort__chev {
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s;
}

.ha-sort__btn[aria-expanded="true"] .ha-sort__chev {
  transform: rotate(180deg);
}

.ha-sort__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 45;
  width: min(calc(100vw - 2rem), 280px);
  padding: 0.375rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.ha-sort__menu[hidden] {
  display: none !important;
}

.ha-sort__option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, color 0.2s;
}

.ha-sort__option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.ha-sort__option.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ha-sort__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.125rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.ha-sort__option.is-active .ha-sort__option-icon {
  background: rgba(255, 0, 0, 0.2);
  color: var(--ha-accent);
}

.ha-sort__option-text {
  min-width: 0;
  flex: 1;
  padding-top: 0.125rem;
}

.ha-sort__option-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}

.ha-sort__option-hint {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

.ha-sort__option-check {
  margin-top: 0.5rem;
  color: var(--ha-accent);
  flex-shrink: 0;
}

.ha-meta-line {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.ha-section-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Video grid — React: 1 / sm:2 / lg:3 / xl:4 / 2xl:5 */
.ha-video-grid,
body.ha-theme .videos-list {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 2rem 1rem;
  width: 100% !important;
  float: none !important;
}

@media (min-width: 640px) {
  .ha-video-grid,
  body.ha-theme .videos-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ha-video-grid,
  body.ha-theme .videos-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .ha-video-grid,
  body.ha-theme .videos-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1536px) {
  .ha-video-grid,
  body.ha-theme .videos-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Video card */
.ha-card,
body.ha-theme .thumb-block {
  display: flex !important;
  flex-direction: column;
  gap: 0.75rem;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  position: relative;
}

.ha-card > a,
body.ha-theme .thumb-block > a {
  display: block;
}

.ha-card__thumb,
body.ha-theme .thumb-block .post-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem !important;
  background: var(--ha-card);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.ha-card__thumb img,
body.ha-theme .thumb-block .post-thumbnail img,
body.ha-theme .thumb-block .post-thumbnail video,
body.ha-theme .post-thumbnail-container {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: transform 0.3s;
}

body.ha-theme .post-thumbnail-container {
  background: var(--ha-card);
}

.ha-card:hover .ha-card__thumb img,
body.ha-theme .thumb-block:hover .post-thumbnail img {
  transform: scale(1.03);
}

.ha-card__duration,
body.ha-theme .thumb-block .duration {
  position: absolute !important;
  bottom: 0.5rem !important;
  right: 0.5rem !important;
  left: auto !important;
  top: auto !important;
  z-index: 2;
  font-size: 11px !important;
  font-weight: 700 !important;
  background: rgba(0, 0, 0, 0.9) !important;
  color: #fff !important;
  padding: 0.15rem 0.4rem !important;
  border-radius: 4px !important;
  line-height: 1.2 !important;
}

body.ha-theme .thumb-block .hd-video {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  background: var(--ha-accent);
  color: #fff;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

body.ha-theme .thumb-block .video-overlay {
  display: none !important;
}

.ha-card__meta,
body.ha-theme .thumb-block .entry-header {
  display: flex !important;
  gap: 0.75rem;
  padding: 0 0.125rem !important;
  background: transparent !important;
  margin: 0 !important;
}

.ha-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff0000, #7a0010);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.ha-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ha-card__title,
body.ha-theme .thumb-block .title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: #fff !important;
  margin: 0 !important;
}

.ha-card__sub,
body.ha-theme .thumb-block .under-thumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.ha-theme .thumb-block .under-thumb .views,
body.ha-theme .thumb-block .under-thumb .rating {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.75rem !important;
}

body.ha-theme .thumb-block .under-thumb i {
  margin-right: 0.2rem;
}

/* Pagination — HotAagMaal style */
.ha-pager {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.25rem;
}

.ha-pager__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ha-pager__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.ha-pager__nav:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ha-pager__nav--next {
  border-color: rgba(255, 255, 255, 0.18);
  background: #0a0a0a;
}

.ha-pager__nav--next:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.ha-pager__nav.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.ha-pager__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ha-pager__page:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ha-pager__page.is-current {
  background: #ff0000 !important;
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.35), 0 8px 20px rgba(255, 0, 0, 0.25);
}

a.ha-pager__page:not(.is-current) {
  border-color: rgba(255, 255, 255, 0.12);
}

.ha-pager__jump {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.ha-pager__jump-label {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
}

.ha-pager__jump-input {
  width: 4rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  outline: none;
  -moz-appearance: textfield;
}

.ha-pager__jump-input::-webkit-outer-spin-button,
.ha-pager__jump-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ha-pager__jump-input:focus {
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.3);
}

.ha-pager__jump-go {
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 0;
  background: #ff0000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s, filter 0.2s;
}

.ha-pager__jump-go:hover {
  background: #e60000;
  filter: brightness(1.05);
}

/* Legacy RetroTube pagination (fallback) */
body.ha-theme .pagination,
body.ha-theme .wpst-pagination,
body.ha-theme .navigation.pagination {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 2rem 0 1rem !important;
  padding: 0 !important;
}

body.ha-theme .pagination a,
body.ha-theme .pagination span,
body.ha-theme .wpst-pagination a,
body.ha-theme .wpst-pagination span,
body.ha-theme .navigation.pagination a,
body.ha-theme .navigation.pagination span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
}

body.ha-theme .pagination .current,
body.ha-theme .wpst-pagination .current,
body.ha-theme .navigation.pagination .current {
  background: #ff0000 !important;
  color: #fff !important;
}

/* Homepage widgets */
body.ha-theme .widget-title,
body.ha-theme .homepage-title {
  color: #fff !important;
  font-family: var(--ha-font) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  margin: 0 0 1rem !important;
}

body.ha-theme .homepage-description {
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 1.25rem !important;
}

body.ha-theme .video-list-content,
body.ha-theme .video-list-content.with-happy {
  display: block !important;
  width: 100% !important;
}

body.ha-theme .video-archive-ad,
body.ha-theme .happy-header,
body.ha-theme .happy-header-mobile,
body.ha-theme .happy-sidebar,
body.ha-theme .happy-footer,
body.ha-theme .happy-footer-mobile,
body.ha-theme .happy-under-player,
body.ha-theme .happy-under-player-mobile,
body.ha-theme .happy-inside-player,
body.ha-theme .happy-inside-player-pause,
body.ha-theme .happy-related-videos-mobile {
  display: none !important;
}

/* Single / watch */
body.ha-theme .video-player-area,
body.ha-theme #video-player,
body.ha-theme .responsive-player {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

body.ha-theme article.type-post,
body.ha-theme .entry-content {
  color: rgba(255, 255, 255, 0.85);
}

body.ha-theme .entry-header .entry-title,
body.ha-theme h1.entry-title {
  font-family: var(--ha-font) !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em;
}

/* Footer */
.ha-footer {
  position: relative;
  margin-top: 2.5rem;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
  overflow: hidden;
}

.ha-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ha-footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 360px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ha-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .ha-footer__inner {
    padding: 0 2rem;
  }
}

.ha-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .ha-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .ha-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.ha-footer__blurb {
  margin: 0;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.ha-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ha-footer__col h4 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.ha-footer__col a,
.ha-footer .footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
  transition: color 0.25s, transform 0.25s;
}

.ha-footer__col a:hover,
.ha-footer .footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.ha-footer__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid transparent;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

@media (min-width: 768px) {
  .ha-footer__bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ha-footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.ha-footer__lang svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.ha-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

@media (min-width: 768px) {
  .ha-footer__copy {
    text-align: right;
  }
}

/* Static legal / info pages */
.ha-static {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .ha-static {
    padding: 2.5rem 0 3rem;
  }
}

.ha-static__head {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .ha-static__head {
    margin-bottom: 2.5rem;
  }
}

.ha-static__brand {
  margin: 0 0 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 0, 0, 0.9);
}

.ha-static__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .ha-static__title {
    font-size: 2.25rem;
  }
}

.ha-static__subtitle {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .ha-static__subtitle {
    font-size: 1rem;
  }
}

.ha-static__updated {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.ha-static__body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.ha-static__body > * + * {
  margin-top: 1.5rem;
}

.ha-static__body h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.ha-static__body p {
  margin: 0 0 0.75rem;
}

.ha-static__body p:last-child {
  margin-bottom: 0;
}

.ha-static__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.ha-static__body ul li {
  margin-bottom: 0.5rem;
}

.ha-static__body ul li::marker {
  color: rgba(255, 0, 0, 0.8);
}

.ha-static__body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.ha-static__body a:hover {
  color: #ff0000;
}

.ha-static__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.ha-static__email:hover {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(255, 0, 0, 0.1);
  color: #fff !important;
}

.ha-static__note {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.ha-static__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.ha-static__nav a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.ha-static__nav a:hover {
  color: #ff0000;
}

body.ha-theme.page .site-main {
  padding: 0 1rem;
}

@media (min-width: 768px) {
  body.ha-theme.page .site-main {
    padding: 0 2rem;
  }
}

body.ha-theme.page #primary {
  width: 100%;
  max-width: none;
}

body.ha-theme.page .widget-title {
  display: none;
}

body.ha-theme #back-to-top {
  background: var(--ha-accent) !important;
  border-radius: 999px !important;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Forms / comments / pages */
body.ha-theme input[type="text"],
body.ha-theme input[type="email"],
body.ha-theme input[type="password"],
body.ha-theme input[type="search"],
body.ha-theme textarea,
body.ha-theme select {
  background: #111114 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  font-family: var(--ha-font) !important;
}

body.ha-theme .page,
body.ha-theme .single-blog,
body.ha-theme .comments-area {
  color: rgba(255, 255, 255, 0.85);
}

/* Categories / actors grids */
body.ha-theme .categories-list,
body.ha-theme .actors-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  body.ha-theme .categories-list,
  body.ha-theme .actors-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  body.ha-theme .categories-list,
  body.ha-theme .actors-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  body.ha-theme .categories-list,
  body.ha-theme .actors-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

body.ha-theme .categories-list .thumb-block,
body.ha-theme .actors-list .thumb-block {
  border-radius: 12px;
  overflow: hidden;
}

/* Hide old filter title dropdown chrome */
body.ha-theme .filters .filter-title {
  display: none !important;
}

body.ha-theme .filters {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body.ha-theme .filters-list {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  position: static !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 1.25rem !important;
}

body.ha-theme .filters-list::-webkit-scrollbar {
  display: none;
}

body.ha-theme .filters-list a {
  flex-shrink: 0;
  height: 2rem;
  padding: 0 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex !important;
  align-items: center;
  background: #272727 !important;
  color: #fff !important;
  margin: 0 !important;
}

body.ha-theme .filters-list a:hover {
  background: #3f3f3f !important;
}

body.ha-theme .filters-list a.active {
  background: #fff !important;
  color: #000 !important;
}

/* Screen reader */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

::selection {
  background: rgba(255, 0, 0, 0.35);
  color: #fff;
}

/* Footer WP menu cleanup */
.ha-footer__col .menu,
.ha-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ha-footer__col .menu li,
.ha-footer__col ul li {
  margin: 0;
}
.ha-footer__col .menu a,
.ha-footer__col ul a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.55rem;
  transition: color 0.25s, transform 0.25s;
}
.ha-footer__col .menu a:hover,
.ha-footer__col ul a:hover {
  color: var(--ha-accent);
  transform: translateX(4px);
}

.ha-user__name {
  display: none;
}
@media (min-width: 640px) {
  .ha-user__name {
    display: inline;
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* RetroTube native sidebar (widget area) — HA shell replaces it */
body.ha-theme #sidebar,
body.ha-theme aside#sidebar {
  display: none !important;
}
body.ha-theme .with-sidebar,
body.ha-theme .content-area,
body.ha-theme .site-main {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}

/* =========================================================
   RetroTube temp-style override — #main .thumb-block {width:20%!important}
   was crushing HA cards to tiny strips inside the CSS grid.
   ========================================================= */
body.ha-theme #main .videos-list,
body.ha-theme #main .ha-video-grid,
body.ha-theme .site-main .videos-list,
body.ha-theme .site-main .ha-video-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem 1rem !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
}

@media (min-width: 640px) {
  body.ha-theme #main .videos-list,
  body.ha-theme #main .ha-video-grid,
  body.ha-theme .site-main .videos-list,
  body.ha-theme .site-main .ha-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  body.ha-theme #main .videos-list,
  body.ha-theme #main .ha-video-grid,
  body.ha-theme .site-main .videos-list,
  body.ha-theme .site-main .ha-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1280px) {
  body.ha-theme #main .videos-list,
  body.ha-theme #main .ha-video-grid,
  body.ha-theme .site-main .videos-list,
  body.ha-theme .site-main .ha-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1536px) {
  body.ha-theme #main .videos-list,
  body.ha-theme #main .ha-video-grid,
  body.ha-theme .site-main .videos-list,
  body.ha-theme .site-main .ha-video-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

body.ha-theme #main .thumb-block,
body.ha-theme #main .thumb-block.ha-card,
body.ha-theme #main .videos-list .thumb-block,
body.ha-theme #main .ha-video-grid .thumb-block,
body.ha-theme .site-main .thumb-block {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

body.ha-theme #main .thumb-block > a,
body.ha-theme #main .thumb-block .post-thumbnail,
body.ha-theme #main .thumb-block .ha-card__thumb {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  display: block !important;
}

body.ha-theme #main .thumb-block .post-thumbnail,
body.ha-theme #main .thumb-block .ha-card__thumb {
  aspect-ratio: 16 / 9 !important;
  border-radius: 0.75rem !important;
  overflow: hidden !important;
  position: relative !important;
  background: #1a1a1a !important;
}

body.ha-theme #main .thumb-block .post-thumbnail-container,
body.ha-theme #main .thumb-block .post-thumbnail img,
body.ha-theme #main .thumb-block .post-thumbnail video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

body.ha-theme #main .thumb-block .entry-header,
body.ha-theme #main .thumb-block .ha-card__meta {
  width: 100% !important;
  float: none !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  padding: 0 0.125rem !important;
  margin: 0 !important;
  background: transparent !important;
}

body.ha-theme #main .thumb-block .ha-card__title,
body.ha-theme #main .thumb-block .title,
body.ha-theme #main .thumb-block .entry-header span.title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  white-space: normal !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: #fff !important;
}

/* Kill RetroTube float clearfix leftovers */
body.ha-theme #main .videos-list::after,
body.ha-theme #main .videos-list::before {
  display: none !important;
  content: none !important;
}


/* ========== Pagination fix (ul/li vertical → horizontal chips) ========== */
body.ha-theme .pagination,
body.ha-theme .pagination ul,
body.ha-theme .wpst-pagination,
body.ha-theme .wpst-pagination ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  list-style: none !important;
  margin: 1.75rem auto !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  background: transparent !important;
  border: 0 !important;
}

body.ha-theme .pagination li,
body.ha-theme .wpst-pagination li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: inline-flex !important;
  width: auto !important;
}

body.ha-theme .pagination li::before,
body.ha-theme .pagination li::marker,
body.ha-theme .wpst-pagination li::before,
body.ha-theme .wpst-pagination li::marker {
  content: none !important;
  display: none !important;
}

body.ha-theme .pagination a,
body.ha-theme .pagination span,
body.ha-theme .pagination li a,
body.ha-theme .wpst-pagination a,
body.ha-theme .wpst-pagination li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 2.35rem !important;
  height: 2.35rem !important;
  padding: 0 0.7rem !important;
  border-radius: 0.55rem !important;
  background: #272727 !important;
  color: #fff !important;
  border: 0 !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  float: none !important;
}

body.ha-theme .pagination a.current,
body.ha-theme .pagination .current,
body.ha-theme .pagination li a.current,
body.ha-theme .wpst-pagination a.current {
  background: #fff !important;
  color: #000 !important;
}

body.ha-theme .pagination a:hover,
body.ha-theme .pagination li a:hover {
  background: #3f3f3f !important;
  color: #fff !important;
}

body.ha-theme .pagination a.current:hover {
  background: #fff !important;
  color: #000 !important;
}

/* ========== Sidebar categories — premium lounge ========== */
.ha-cat-lounge {
  position: relative;
  margin-top: 0.15rem;
  padding: 0.65rem 0.35rem 0.35rem;
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255, 0, 0, 0.14) 0%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ha-cat-lounge__head {
  position: relative;
  padding: 0 0.45rem 0.65rem;
}

.ha-cat-lounge__flare {
  position: absolute;
  top: -0.35rem;
  left: 0.2rem;
  width: 3.5rem;
  height: 2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 51, 136, 0.35) 0%, rgba(255, 0, 0, 0.12) 45%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}

.ha-cat-lounge__label {
  position: relative;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #ffb3c7 55%, var(--ha-accent-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ha-cat-lounge__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ha-cat-lounge__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.55rem;
  border-radius: 11px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.18);
  transition:
    color 0.22s var(--ha-ease),
    background 0.22s var(--ha-ease),
    border-color 0.22s var(--ha-ease),
    box-shadow 0.22s var(--ha-ease),
    transform 0.22s var(--ha-ease);
}

.ha-cat-lounge__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 0, 0, 0.12) 0%, transparent 42%);
  opacity: 0;
  transition: opacity 0.22s var(--ha-ease);
  pointer-events: none;
}

.ha-cat-lounge__item:hover {
  color: #fff;
  border-color: rgba(255, 51, 136, 0.22);
  background: rgba(255, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.08);
  transform: translateX(2px);
}

.ha-cat-lounge__item:hover::before {
  opacity: 1;
}

.ha-cat-lounge__item.is-active {
  color: #fff;
  border-color: rgba(255, 0, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.16) 0%, rgba(255, 51, 136, 0.08) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(255, 0, 0, 0.12);
}

.ha-cat-lounge__dot {
  position: relative;
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ha-accent-hot), var(--ha-accent));
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.45);
  opacity: 0.55;
  transition: opacity 0.22s, transform 0.22s, box-shadow 0.22s;
}

.ha-cat-lounge__item:hover .ha-cat-lounge__dot,
.ha-cat-lounge__item.is-active .ha-cat-lounge__dot {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255, 51, 136, 0.65);
}

.ha-cat-lounge__item.is-active .ha-cat-lounge__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(255, 51, 136, 0.35);
  animation: ha-cat-pulse 1.8s ease-in-out infinite;
}

@keyframes ha-cat-pulse {
  50% {
    opacity: 0.35;
    transform: scale(1.15);
  }
}

.ha-cat-lounge__name {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-cat-lounge__pill {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  min-width: 1.65rem;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ha-cat-lounge__item:hover .ha-cat-lounge__pill,
.ha-cat-lounge__item.is-active .ha-cat-lounge__pill {
  color: #fff;
  border-color: rgba(255, 51, 136, 0.35);
  background: rgba(255, 0, 0, 0.18);
}

.ha-cat-lounge__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.45rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 0.22s var(--ha-ease),
    border-color 0.22s var(--ha-ease),
    background 0.22s var(--ha-ease),
    box-shadow 0.22s var(--ha-ease);
}

.ha-cat-lounge__cta:hover {
  color: #fff;
  border-color: rgba(255, 0, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.14) 0%, rgba(255, 51, 136, 0.08) 100%);
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.1);
}

.ha-cat-lounge__cta svg {
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.22s var(--ha-ease), opacity 0.22s;
}

.ha-cat-lounge__cta:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

/* ========== Trending / Explore page ========== */
.ha-trending .ha-home-head__title {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .ha-trending .ha-home-head__title {
    font-size: 1.125rem;
  }
}

.ha-trending__range {
  margin: 0;
  flex-shrink: 0;
  max-width: 14rem;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 639.98px) {
  .ha-trending__range {
    display: none;
  }
}

.ha-trending__note,
.ha-trending__empty {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== Taxonomy browse tiles ========== */
.ha-tax-hero {
  margin-bottom: 1.25rem;
}

.ha-tax-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ha-accent);
  margin-bottom: 0.4rem;
}

.ha-tax-hero h1 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.ha-tax-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 36rem;
}

.ha-tax-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.85rem !important;
}

@media (min-width: 768px) {
  .ha-tax-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1024px) {
  .ha-tax-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1280px) {
  .ha-tax-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

.ha-tax-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s, border-color 0.25s;
}

.ha-tax-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.35);
}

.ha-tax-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.ha-tax-card:hover .ha-tax-card__img {
  transform: scale(1.04);
}

.ha-tax-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}

.ha-tax-card__meta {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
}

.ha-tax-card__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.ha-tax-card__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.ha-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ha-tag-cloud a,
body.ha-theme .tagcloud a,
body.ha-theme a.tag-cloud-link {
  display: inline-flex !important;
  align-items: center !important;
  height: 2rem !important;
  padding: 0 0.85rem !important;
  border-radius: 0.55rem !important;
  background: #272727 !important;
  color: #fff !important;
  border: 0 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.ha-tag-cloud a:hover,
body.ha-theme a.tag-cloud-link:hover {
  background: #3f3f3f !important;
  color: #fff !important;
}

/* ========== Watch / single ========== */
body.ha-theme.single-post .ha-main__inner,
body.ha-theme.single .ha-main__inner {
  max-width: 1600px;
  margin: 0 auto;
}

body.ha-theme .title-block,
body.ha-theme .box-shadow {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0.75rem 0 !important;
}

body.ha-theme .video-player,
body.ha-theme .responsive-player,
body.ha-theme .wpst-player-wrap,
body.ha-theme #video-player,
body.ha-theme .video-js {
  border-radius: 12px !important;
  overflow: hidden;
}

body.ha-theme .videos-list.related-videos,
body.ha-theme .related-videos .videos-list {
  display: grid !important;
}

/* ========== Mobile side breathing room ========== */
@media (max-width: 639.98px) {
  body.ha-theme .ha-main {
    padding: 0.85rem 0.9rem !important;
  }

  body.ha-theme #main .videos-list,
  body.ha-theme #main .ha-video-grid {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
  }

  body.ha-theme #main .thumb-block .post-thumbnail,
  body.ha-theme #main .thumb-block .ha-card__thumb {
    border-radius: 0.85rem !important;
  }

  body.ha-theme .ha-header__inner {
    padding: 0 0.65rem;
  }

  .ha-tax-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
  }
}

/* =========================================================
   Watch page — HotAagMaal layout
   ========================================================= */
body.ha-theme.single-post .ha-main,
body.ha-theme.single .ha-main {
  padding-top: 0.75rem !important;
}

.ha-watch-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .ha-watch-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 1.75rem;
  }
}

@media (min-width: 1536px) {
  .ha-watch-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 2rem;
  }
}

.ha-watch-main {
  min-width: 0;
}

.ha-watch-main .video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ha-watch-main .responsive-player,
.ha-watch-main .wpst-player-wrap,
.ha-watch-main .wp-video,
.ha-watch-main .video-js {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #000;
}

.ha-watch-main .video-player iframe,
.ha-watch-main .video-player video,
.ha-watch-main .responsive-player iframe,
.ha-watch-main .responsive-player video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  border: 0 !important;
}

/* Soften leftover under-player banners on watch */
.ha-watch-main .happy-under-player,
.ha-watch-main .happy-under-player-mobile {
  margin-top: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
}

.ha-watch-main .happy-under-player img,
.ha-watch-main .happy-under-player-mobile img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: cover;
}

.ha-watch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--ha-accent);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.28);
}

.ha-watch-cta:hover {
  filter: brightness(1.06);
}

.ha-watch-meta {
  margin-top: 1.1rem;
}

.ha-watch-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .ha-watch-title {
    font-size: 1.5rem;
  }
}

.ha-watch-bar {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .ha-watch-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ha-watch-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.ha-watch-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ha-watch-channel__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ha-watch-channel__name {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: #fff;
}

.ha-watch-check {
  flex-shrink: 0;
}

.ha-watch-channel__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.ha-watch-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ha-watch-pill,
.ha-watch-autoplay {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 2.25rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: #272727;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.ha-watch-pill:hover,
.ha-watch-autoplay:hover {
  background: #3a3a3a;
}

.ha-watch-pill--icon {
  width: 2.25rem;
  padding: 0;
  justify-content: center;
}

.ha-watch-pill__text {
  display: none;
}

@media (min-width: 640px) {
  .ha-watch-pill__text {
    display: inline;
  }
}

.ha-watch-autoplay__label {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .ha-watch-autoplay__label {
    font-size: 0.875rem;
  }
}

.ha-watch-switch {
  position: relative;
  width: 2.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
  flex-shrink: 0;
}

.ha-watch-switch.is-on {
  background: var(--ha-accent);
}

.ha-watch-switch__knob {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s;
}

.ha-watch-switch.is-on .ha-watch-switch__knob {
  transform: translateX(1rem);
}

.ha-watch-vote-pill {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  border-radius: 999px;
  background: #272727;
  overflow: hidden;
}

.ha-watch-vote-pill__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  padding: 0 0.75rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ha-watch-vote-pill__btn:hover:not(:disabled) {
  background: #3a3a3a;
}

.ha-watch-vote-pill__btn.is-active,
.ha-watch-vote-pill__btn--up.is-active {
  color: var(--ha-accent);
}

.ha-watch-vote-pill__btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.ha-watch-vote-pill__sep {
  width: 1px;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.ha-watch-vote-pill__count {
  font-size: 0.875rem;
  font-weight: 600;
}

.ha-watch-vote-pill .post-like {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Beat RetroTube temp-style pink button/link skin on watch controls */
body.ha-theme.single-post .ha-watch-actions .ha-watch-pill,
body.ha-theme.single-post .ha-watch-actions .ha-watch-autoplay,
body.ha-theme.single .ha-watch-actions .ha-watch-pill,
body.ha-theme.single .ha-watch-actions .ha-watch-autoplay,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn {
  background: #272727 !important;
  border: 0 !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-pill:hover,
body.ha-theme.single-post .ha-watch-actions .ha-watch-autoplay:hover,
body.ha-theme.single .ha-watch-actions .ha-watch-pill:hover,
body.ha-theme.single .ha-watch-actions .ha-watch-autoplay:hover,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn:hover:not(:disabled),
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn:hover:not(:disabled) {
  background: #3a3a3a !important;
  border-color: transparent !important;
  color: #fff !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-pill svg,
body.ha-theme.single-post .ha-watch-actions .ha-watch-autoplay svg,
body.ha-theme.single .ha-watch-actions .ha-watch-pill svg,
body.ha-theme.single .ha-watch-actions .ha-watch-autoplay svg,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn svg,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn svg {
  color: #fff !important;
  stroke: #fff !important;
  fill: none !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn.is-active,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn.is-active,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn--up.is-active,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn--up.is-active,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn--down.is-active,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn--down.is-active {
  color: #ff0000 !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn.is-active svg,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn.is-active svg,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn--up.is-active svg,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn--up.is-active svg,
body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn--down.is-active svg,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn--down.is-active svg {
  color: #ff0000 !important;
  stroke: #ff0000 !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__btn--up.is-active svg path,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__btn--up.is-active svg path {
  fill: #ff0000 !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-vote-pill__count,
body.ha-theme.single .ha-watch-actions .ha-watch-vote-pill__count {
  color: #fff !important;
}

body.ha-theme.single-post .ha-watch-actions #rating,
body.ha-theme.single .ha-watch-actions #rating {
  color: #fff !important;
  font-size: inherit !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-autoplay__label,
body.ha-theme.single .ha-watch-actions .ha-watch-autoplay__label,
body.ha-theme.single-post .ha-watch-actions .ha-watch-pill__text,
body.ha-theme.single .ha-watch-actions .ha-watch-pill__text {
  color: #fff !important;
}

body.ha-theme.single-post .ha-watch-actions .ha-watch-switch.is-on,
body.ha-theme.single .ha-watch-actions .ha-watch-switch.is-on {
  background: #ff0000 !important;
}

/* Watch modals — neutral HA chrome, not RetroTube pink */
body.ha-theme .ha-modal__backdrop {
  background: rgba(0, 0, 0, 0.72) !important;
  background-color: rgba(0, 0, 0, 0.72) !important;
  border: 0 !important;
  border-color: transparent !important;
  color: transparent !important;
  box-shadow: none !important;
}

body.ha-theme .ha-modal__panel {
  background: rgba(20, 20, 20, 0.82) !important;
  background-color: rgba(20, 20, 20, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.ha-theme .ha-modal__close,
body.ha-theme .ha-report-form__reason,
body.ha-theme .ha-share-link__copy {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 0 !important;
  border-color: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: none !important;
}

body.ha-theme .ha-share-link__copy {
  background: #ff0000 !important;
  color: #fff !important;
}

body.ha-theme .ha-share-link__copy.is-copied {
  background: rgba(16, 185, 129, 0.2) !important;
  color: #6ee7b7 !important;
}

body.ha-theme .ha-report-form__submit {
  background: #ff0000 !important;
  border: 0 !important;
  color: #fff !important;
}

body.ha-theme .ha-report-form__reason.is-active {
  background: rgba(255, 0, 0, 0.2) !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.4) !important;
}

body.ha-theme .ha-modal__head {
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body.ha-theme .ha-share-link__row {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.ha-theme .ha-report-form__input,
body.ha-theme .ha-report-form__textarea {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

body.ha-theme .ha-modal__close:hover,
body.ha-theme .ha-report-form__reason:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

body.ha-theme .ha-watch-desc__toggle,
body.ha-theme .ha-watch-desc__toggle:hover,
body.ha-theme .ha-watch-desc__toggle:focus {
  background: transparent !important;
  border: 0 !important;
  border-color: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: none !important;
}

body.ha-theme .ha-watch-desc__toggle:hover,
body.ha-theme .ha-watch-desc__toggle:focus {
  color: #fff !important;
}

.ha-watch-desc {
  margin-top: 1rem;
  border-radius: 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.95rem 1rem;
}

.ha-watch-desc__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.ha-watch-desc__body {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.ha-watch-desc__body p {
  margin: 0 0 0.5rem;
  color: inherit;
}

.ha-watch-desc__muted {
  color: rgba(255, 255, 255, 0.4) !important;
}

.ha-watch-desc__body:not(.is-expanded) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ha-watch-desc__toggle {
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  box-shadow: none !important;
}

.ha-watch-desc__toggle:hover,
.ha-watch-desc__toggle:focus {
  background: transparent !important;
  border-color: transparent !important;
  color: #fff !important;
}

.ha-watch-desc__extra {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ha-watch-chips {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ha-watch-chip-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.4rem;
}

.ha-watch-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ha-watch-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.ha-watch-chip:hover {
  background: var(--ha-accent);
  color: #fff;
}

/* Related sidebar list */
.ha-watch-related {
  min-width: 0;
}

@media (min-width: 1280px) {
  .ha-watch-related {
    position: sticky;
    top: calc(var(--ha-header-h) + 0.75rem);
    align-self: start;
    max-height: calc(100vh - var(--ha-header-h) - 1.5rem);
    overflow-y: auto;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  }
}

.ha-watch-related__title {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ha-watch-related__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ha-watch-related__item {
  display: flex;
  gap: 0.75rem;
  min-width: 0;
}

.ha-watch-related__thumb {
  position: relative;
  width: 168px;
  max-width: 42%;
  aspect-ratio: 16 / 9;
  border-radius: 0.55rem;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ha-watch-related__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.ha-watch-related__item:hover .ha-watch-related__thumb img {
  transform: scale(1.05);
}

.ha-watch-related__dur {
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  font-size: 10px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.ha-watch-related__info {
  min-width: 0;
  flex: 1;
  padding-top: 0.1rem;
}

.ha-watch-related__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  transition: color 0.2s;
}

.ha-watch-related__item:hover .ha-watch-related__name {
  color: var(--ha-accent);
}

.ha-watch-related__sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-watch-related__empty {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.ha-watch-more {
  margin-top: 2.75rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.ha-watch-more__title {
  margin: 0 0 1.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.ha-watch-more__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.ha-watch-more__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: 999px;
  background: var(--ha-accent);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ha-watch-more__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.4);
}

/* Hide leftover RetroTube watch chrome */
body.ha-theme.single-post .title-block,
body.ha-theme.single-post #video-tabs,
body.ha-theme.single-post #rating-col,
body.ha-theme.single-post .under-video-block,
body.ha-theme.single-post .show-more-related,
body.ha-theme.single-post .breadcrumbs-area {
  display: none !important;
}

@media (max-width: 639.98px) {
  .ha-watch-related__thumb {
    width: 140px;
  }

  .ha-watch-title {
    font-size: 1.1rem;
  }
}

/* Watch modals — share & report */
.ha-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.ha-modal[hidden] {
  display: none !important;
}

@media (min-width: 640px) {
  .ha-modal {
    align-items: center;
    padding: 1rem;
  }
}

.ha-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0 !important;
  background: rgba(0, 0, 0, 0.72) !important;
  background-color: rgba(0, 0, 0, 0.72) !important;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  cursor: pointer;
  box-shadow: none !important;
}

.ha-modal__panel {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: 92vh;
  overflow: auto;
  border-radius: 1rem 1rem 0 0;
  background: rgba(20, 20, 20, 0.82) !important;
  background-color: rgba(20, 20, 20, 0.82) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
  .ha-modal__panel {
    border-radius: 1rem;
  }
}

.ha-modal__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ha-modal__head-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ha-modal__head-icon--share {
  background: rgba(255, 0, 0, 0.15);
  color: var(--ha-accent);
}

.ha-modal__head-icon--report {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
}

.ha-modal__head-text {
  min-width: 0;
  flex: 1;
}

.ha-modal__head-text h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.ha-modal__head-text p {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-modal__close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.ha-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ha-modal__body {
  padding: 1.25rem;
}

.ha-share-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.ha-share-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s;
}

.ha-share-grid__item--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.ha-share-grid__item--fb {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}

.ha-share-grid__item--x {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ha-share-grid__item--tg {
  background: rgba(34, 158, 217, 0.15);
  color: #229ed9;
}

.ha-share-grid__item--rd {
  background: rgba(255, 69, 0, 0.15);
  color: #ff4500;
}

.ha-share-grid__item--mail {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.ha-share-grid__item:hover {
  filter: brightness(1.08);
}

.ha-share-link {
  margin-top: 1.25rem;
}

.ha-share-link__label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ha-share-link__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.35rem 0.35rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ha-share-link__url {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.75rem;
  font-family: ui-monospace, monospace;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ha-share-link__copy {
  flex-shrink: 0;
  height: 2.25rem;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--ha-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.ha-share-link__copy:hover,
.ha-share-link__copy.is-copied {
  background: #e60000;
}

.ha-report-form__group {
  margin-bottom: 1rem;
}

.ha-report-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ha-report-form__reasons {
  display: grid;
  gap: 0.35rem;
}

.ha-report-form__reason {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.ha-report-form__reason.is-active {
  background: rgba(255, 0, 0, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.4);
}

.ha-report-form__reason:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ha-report-form__input,
.ha-report-form__textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.ha-report-form__input:focus,
.ha-report-form__textarea:focus {
  border-color: rgba(255, 0, 0, 0.5);
}

.ha-report-form__textarea {
  resize: vertical;
  min-height: 5rem;
}

.ha-report-form__submit {
  width: 100%;
  height: 2.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--ha-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.ha-report-form__submit:hover {
  background: #e60000;
}

.ha-report-form__hint {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
}
