:root {
  --bg: #050814;
  --panel: rgba(9, 21, 45, .74);
  --panel-strong: rgba(10, 31, 64, .88);
  --line: rgba(81, 217, 255, .24);
  --text: #eef8ff;
  --muted: #9bb8ca;
  --cyan: #5be7ff;
  --green: #79ffb2;
  --amber: #ffd36c;
  --red: #ff6b8a;
  --shadow: 0 22px 80px rgba(0, 0, 0, .42);
  --radius: 24px;
  --max: 1240px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(91, 231, 255, .18), transparent 32rem),
    radial-gradient(circle at 85% 5%, rgba(121, 255, 178, .12), transparent 28rem),
    linear-gradient(150deg, #040711 0%, #07162d 45%, #030611 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.78) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(91,231,255,.55) 0 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 35px 55px;
  opacity: .19;
}

.signal-bg {
  position: fixed;
  width: 60vmax;
  height: 60vmax;
  right: -25vmax;
  top: -20vmax;
  border: 1px solid rgba(91, 231, 255, .18);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(91,231,255,.13), 0 0 120px rgba(91,231,255,.09);
  pointer-events: none;
}

.signal-bg::before,
.signal-bg::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(121,255,178,.18);
  border-radius: 50%;
}

.signal-bg::after {
  inset: 23%;
  border-style: solid;
  border-color: rgba(255,211,108,.13);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.site-header,
main {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand strong {
  display: block;
  letter-spacing: .02em;
  font-size: clamp(1rem, 2.4vw, 1.28rem);
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: .82rem;
}

.brand-orb {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--cyan) 26%, #1257ff 66%, #050814 100%);
  box-shadow: 0 0 24px rgba(91, 231, 255, .7), inset 0 0 13px rgba(255,255,255,.45);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(91, 231, 255, .32);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(91,231,255,.16), rgba(91,231,255,.06));
  color: var(--text);
  padding: 9px 12px;
  min-height: 42px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(91,231,255,.55);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle b {
  font-size: .88rem;
  font-weight: 800;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-actions a,
.top-actions button,
.search-line button,
.load-more-wrap button,
.card-actions button,
.card-actions a,
.chips button {
  border: 1px solid rgba(91, 231, 255, .28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(91,231,255,.16), rgba(91,231,255,.06));
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.top-actions a:hover,
.top-actions button:hover,
.search-line button:hover,
.load-more-wrap button:hover,
.card-actions button:hover,
.card-actions a:hover,
.chips button:hover {
  transform: translateY(-1px);
  border-color: rgba(121, 255, 178, .58);
  background: linear-gradient(180deg, rgba(121,255,178,.18), rgba(91,231,255,.08));
}

.glass-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}


.cover-stage {
  position: relative;
  margin: 8px 0 18px;
  border-radius: calc(var(--radius) + 12px);
  overflow: hidden;
  background: rgba(2, 8, 21, .82);
  isolation: isolate;
}

.cover-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(121, 255, 178, .14),
    inset 0 0 55px rgba(91, 231, 255, .10),
    0 0 50px rgba(91, 231, 255, .08);
}

.cover-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  background: #030611;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 8%;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,231,255,.17), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--green);
  border: 1px solid rgba(121, 255, 178, .34);
  border-radius: 999px;
  padding: 7px 11px;
  margin: 0 0 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.hero p:not(.eyebrow) {
  max-width: 780px;
  color: #c8dfee;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero-badges,
.chips,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span,
.tag-list span {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 7px 10px;
  color: #cff8ff;
  font-size: .82rem;
}

.status-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid rgba(91, 231, 255, .25);
  padding: 18px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: var(--muted);
}

.status-row strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: right;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.dot-ok { background: var(--green); box-shadow: 0 0 12px var(--green); }
.dot-warn { background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.dot-bad { background: var(--red); box-shadow: 0 0 12px var(--red); }

.controls,
.notice {
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 18px;
}

.search-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
select {
  width: 100%;
  border: 1px solid rgba(91, 231, 255, .24);
  border-radius: 16px;
  background: rgba(2, 8, 21, .72);
  color: var(--text);
  outline: none;
  padding: 13px 14px;
}

input:focus,
select:focus {
  border-color: rgba(121, 255, 178, .64);
  box-shadow: 0 0 0 3px rgba(121,255,178,.12);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  align-items: end;
}

.filter-grid label {
  color: var(--muted);
  font-size: .88rem;
}

.filter-grid select {
  margin-top: 6px;
}

.check-label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(91, 231, 255, .2);
  background: rgba(2, 8, 21, .45);
  color: var(--text) !important;
}

.check-label input {
  width: auto;
}

.chips {
  margin-top: 14px;
}

.chips button {
  padding: 8px 12px;
  font-size: .9rem;
}

.notice {
  color: #d4eafa;
  line-height: 1.6;
}

.message-box {
  margin-top: 18px;
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 211, 108, .34);
  background: rgba(255, 211, 108, .09);
  color: #fff2cc;
}


.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  letter-spacing: -.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.eyebrow.mini {
  margin-bottom: 8px;
  font-size: .68rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.signal-card {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.category {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(3, 8, 17, .78);
  border: 1px solid rgba(91, 231, 255, .34);
  color: var(--green);
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-body {
  padding: 16px;
  flex: 1;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 10px;
}

.channel,
.date {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.description {
  margin: 10px 0 12px;
  color: #b9d1df;
  line-height: 1.55;
  font-size: .92rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list span {
  padding: 5px 8px;
  font-size: .76rem;
  color: #c4f7ff;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.card-actions button,
.card-actions a {
  padding: 8px 10px;
  font-size: .86rem;
}

.fav-btn.is-active {
  color: #061018;
  background: linear-gradient(180deg, #fff0a6, #ffd36c);
  border-color: rgba(255, 211, 108, .95);
}

.video-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.youtube-consent {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5,8,20,.34), rgba(5,8,20,.88)),
    var(--thumb, none);
  background-size: cover;
  background-position: center;
}

.youtube-consent div {
  max-width: 92%;
  border: 1px solid rgba(91,231,255,.32);
  border-radius: 18px;
  background: rgba(3,8,17,.82);
  padding: 14px;
}

.youtube-consent p {
  margin: 0 0 10px;
  color: #dff6ff;
  line-height: 1.45;
  font-size: .9rem;
}

.youtube-consent button {
  border: 1px solid rgba(121,255,178,.42);
  border-radius: 999px;
  background: rgba(121,255,178,.16);
  color: var(--text);
  padding: 9px 12px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 42px;
}

.load-more-wrap button {
  min-width: 220px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
  }

  .top-actions {
    max-width: 620px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 20px auto;
    align-items: center;
  }

  .menu-toggle span {
    grid-column: 1;
  }

  .menu-toggle b {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .top-actions {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .24s ease, opacity .18s ease, transform .18s ease;
  }

  .site-header.nav-open .top-actions {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 6px;
  }

  .top-actions a,
  .top-actions button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cover-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 700px) {
  .site-header,
  main {
    width: min(100% - 20px, var(--max));
  }

  .cover-stage {
    margin-top: 4px;
    border-radius: 20px;
  }

  .hero,
  .controls,
  .notice {
    border-radius: 20px;
  }

  .hero {
    padding: 20px;
  }

  .search-line,
  .filter-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .status-row {
    gap: 8px;
  }

  .meta-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .card-actions a,
  .card-actions button {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand-orb {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand small {
    display: none;
  }

  .top-actions {
    grid-template-columns: 1fr;
  }

  .hero-badges span,
  .tag-list span {
    font-size: .76rem;
  }
}


.translation-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: .15rem 0 .25rem;
  padding: .22rem .52rem;
  border: 1px solid rgba(91, 255, 214, .28);
  border-radius: 999px;
  background: rgba(6, 255, 210, .08);
  color: #8dffe9;
  font-size: .74rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.original-text {
  margin-top: .6rem;
  padding: .65rem .75rem;
  border: 1px solid rgba(138, 186, 255, .16);
  border-radius: 16px;
  background: rgba(2, 8, 24, .42);
}

.original-text summary {
  cursor: pointer;
  color: #aee7ff;
  font-weight: 700;
  font-size: .85rem;
}

.original-text h3 {
  margin: .65rem 0 .35rem;
  color: #eff9ff;
  font-size: .95rem;
}

.original-text p {
  margin: 0;
  color: rgba(230, 243, 255, .76);
  font-size: .88rem;
  line-height: 1.48;
}


/* Legal pages & footer */
.site-footer,
.legal-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 34px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(230, 243, 255, .72);
  font-size: .92rem;
}

.footer-link-groups {
  display: grid;
  gap: 12px;
  justify-items: end;
  min-width: min(100%, 520px);
}

.footer-project-links,
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-nav-title {
  align-self: center;
  color: rgba(157, 255, 157, .86);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-right: 4px;
}

.legal-footer {
  align-items: flex-start;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.site-footer nav,
.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer a,
.legal-footer a {
  color: #b9f7ff;
  text-decoration: none;
  border: 1px solid rgba(91, 255, 214, .22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(6, 255, 210, .06);
}

.site-footer a:hover,
.legal-footer a:hover {
  color: #f3ffff;
  border-color: rgba(99, 255, 118, .45);
  box-shadow: 0 0 16px rgba(57, 255, 20, .18);
}

.legal-main {
  width: min(980px, calc(100% - 32px));
  margin: 28px auto;
}

.legal-card {
  padding: clamp(20px, 4vw, 42px);
}

.legal-card h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: #e8fbff;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
}

.legal-card p,
.legal-card li {
  color: rgba(232, 246, 255, .82);
  line-height: 1.72;
}

.legal-card a {
  color: #8dffe9;
}

.legal-card code {
  color: #9dff9d;
  background: rgba(57, 255, 20, .08);
  border: 1px solid rgba(57, 255, 20, .18);
  border-radius: 8px;
  padding: .1rem .35rem;
}

.legal-updated {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 255, 214, .22);
  background: rgba(6, 255, 210, .07);
  color: #b9f7ff !important;
  font-size: .9rem;
}

.legal-actions {
  display: flex;
}

.scan-button {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-color: rgba(57, 255, 20, .62) !important;
  background: linear-gradient(180deg, rgba(13, 40, 12, .96), rgba(4, 17, 7, .98)) !important;
  color: #caffc7 !important;
  box-shadow: 0 0 9px rgba(57, 255, 20, .28), 0 0 22px rgba(57, 255, 20, .14), inset 0 0 14px rgba(57, 255, 20, .08);
  animation: jarvisScanPulse 1.9s infinite ease-in-out;
}

.scan-button:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 0 13px rgba(57, 255, 20, .55), 0 0 28px rgba(57, 255, 20, .34), inset 0 0 16px rgba(57, 255, 20, .12);
}

.scan-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: #39ff14;
  box-shadow: 0 0 9px #39ff14, 0 0 18px rgba(57, 255, 20, .75);
  animation: jarvisScanDot 1.15s infinite ease-in-out;
}

@keyframes jarvisScanPulse {
  0%, 100% { box-shadow: 0 0 9px rgba(57, 255, 20, .25), 0 0 20px rgba(57, 255, 20, .12), inset 0 0 12px rgba(57, 255, 20, .07); }
  50% { box-shadow: 0 0 15px rgba(57, 255, 20, .66), 0 0 34px rgba(57, 255, 20, .34), 0 0 48px rgba(57, 255, 20, .16), inset 0 0 16px rgba(57, 255, 20, .13); }
}

@keyframes jarvisScanDot {
  0%, 100% { opacity: .58; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .scan-button,
  .scan-dot { animation: none; }
}

@media (max-width: 760px) {
  .site-footer,
  .legal-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-link-groups,
  .site-footer nav,
  .legal-footer,
  .legal-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .footer-project-links,
  .footer-legal-links {
    justify-content: stretch;
  }

  .footer-nav-title {
    margin: 6px 0 0;
  }
  .legal-actions {
    display: grid;
  }
}


.footer-news-live-link {
  border-color: rgba(57, 255, 20, 0.4) !important;
  color: #caffbf !important;
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.16);
}
.footer-news-live-link::before {
  content: "↗ ";
  color: #39ff14;
}


/* Jarvis Sprachpaket */
.voice-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border-color: rgba(57, 255, 20, .2);
}

.voice-panel::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -18%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,.16), transparent 68%);
  pointer-events: none;
}

.voice-copy h2 {
  margin: 4px 0 8px;
  color: #eaffea;
  text-shadow: 0 0 18px rgba(57, 255, 20, .2);
}

.voice-copy p {
  margin: 0;
  color: var(--muted, #a8bed4);
}

.voice-controls {
  display: grid;
  gap: 12px;
}

.voice-controls label {
  display: grid;
  gap: 6px;
  color: #b8f7c8;
  font-weight: 700;
  font-size: .92rem;
}

.voice-controls select {
  width: 100%;
  min-height: 43px;
  border-radius: 13px;
  border: 1px solid rgba(91, 255, 214, .24);
  background: rgba(1, 10, 20, .78);
  color: #e7fbff;
  padding: 10px 12px;
}

.voice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-buttons button {
  border: 1px solid rgba(91, 255, 214, .22);
  background: rgba(2, 20, 36, .75);
  color: #dcfbff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.voice-buttons button:hover {
  transform: translateY(-1px);
  border-color: rgba(57, 255, 20, .55);
  box-shadow: 0 0 20px rgba(57, 255, 20, .18);
}

.voice-buttons button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.voice-buttons .voice-primary {
  border-color: rgba(57, 255, 20, .6);
  background: linear-gradient(180deg, rgba(20, 70, 16, .95), rgba(6, 24, 8, .98));
  color: #d8ffd7;
  box-shadow: 0 0 16px rgba(57, 255, 20, .18), inset 0 0 10px rgba(57, 255, 20, .08);
}

.voice-status {
  margin: 0;
  color: #b8f7c8;
  font-size: .92rem;
}

.voice-panel.is-speaking {
  box-shadow: 0 0 0 1px rgba(57, 255, 20, .25), 0 0 42px rgba(57, 255, 20, .14);
}

.signal-card.is-voice-current {
  outline: 2px solid rgba(57, 255, 20, .66);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, .09), 0 0 34px rgba(57, 255, 20, .2);
}

@media (max-width: 820px) {
  .voice-panel {
    grid-template-columns: 1fr;
  }
  .voice-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .voice-buttons .voice-primary {
    grid-column: 1 / -1;
  }
}
