/*
Theme Name: GreenTV News
Theme URI: https://greentv.media
Description: News-style child theme for GreenTV Media built on Xtra.
Author: GreenTV / Hermes
Template: xtra
Version: 1.0.0
Text Domain: greentv-news
*/

:root {
  --gtv-bg: #0f0f0f;
  --gtv-bg-2: #1a1a1a;
  --gtv-surface: #1f3328;
  --gtv-surface-2: #274936;
  --gtv-card: #f7f3ec;
  --gtv-card-2: #fffaf2;
  --gtv-text: #f7f3ec;
  --gtv-ink: #1c2620;
  --gtv-muted: #d8d0c3;
  --gtv-muted-dark: #687769;
  --gtv-line: rgba(0, 177, 64, 0.24);
  --gtv-green: #00b140;
  --gtv-green-dark: #006400;
  --gtv-lime: #d4a842;
  --gtv-blue: #d4a842;
  --gtv-orange: #d4a842;
  --gtv-radius: 18px;
  --gtv-radius-sm: 10px;
  --gtv-shadow: 0 28px 80px rgba(0,0,0,.42);
}

body.greentv-news-home,
.greentv-news-home #layout,
.greentv-news-home .page_content {
  background: var(--gtv-bg) !important;
}

.greentv-news-home .page_content {
  padding: 0 !important;
}

.gtv-site {
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gtv-text);
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 177, 64, .16), transparent 40rem),
    radial-gradient(circle at 90% 15%, rgba(212, 168, 66, .08), transparent 32rem),
    linear-gradient(180deg, #0f0f0f 0%, #0f0f0f 80%, #1a1a1a 100%);
  min-height: 100vh;
  padding-bottom: 64px;
}

/* Cinematic Hero Section */
.gtv-hero-cinematic {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-bottom: 1px solid var(--gtv-line);
}

.gtv-hero-cinematic__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 177, 64, .25) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(0, 177, 64, .15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 168, 66, .12) 0%, transparent 50%),
    linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: 0;
}

.gtv-hero-cinematic__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(440px, 660px);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  width: min(1480px, calc(100% - 40px));
  padding: 44px 0 64px;
}

.gtv-hero-cinematic__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  animation: fadeInUp .8s ease-out;
  padding-top: 24px;
}

.gtv-hero-cinematic__eyebrow {
  margin: 0 0 18px;
  color: #00ff6b;
  font: 800 13px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gtv-hero-cinematic__title {
  margin: 0 0 12px;
  font-size: clamp(50px, 8.4vw, 116px);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #fff;
}

.gtv-hero-cinematic__title span {
  display: block;
  background: linear-gradient(135deg, #00b140 0%, #00ff6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.gtv-hero-cinematic__tagline {
  margin: 0 0 42px;
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gtv-muted);
  text-transform: uppercase;
  word-spacing: 0.2em;
}

.gtv-hero-cinematic__ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gtv-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.gtv-hero-cta svg {
  transition: transform .3s ease;
}

.gtv-hero-cta--primary {
  background: linear-gradient(135deg, #00b140 0%, #00ff6b 100%);
  color: #000 !important;
  box-shadow: 0 8px 32px rgba(0, 177, 64, .35);
  border-color: #00b140;
}

.gtv-hero-cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 177, 64, .5);
}

.gtv-hero-cta--primary:hover svg {
  transform: translateX(3px);
}

.gtv-hero-cta--secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
  border-color: rgba(0, 177, 64, .6);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.gtv-hero-cta--secondary:hover {
  background: rgba(0, 177, 64, .15);
  border-color: #00b140;
  color: #00ff6b !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 177, 64, .25);
}

.gtv-daily-video {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(0, 177, 64, .45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 177, 64, .22), transparent 34rem),
    linear-gradient(180deg, rgba(10, 18, 14, .96), rgba(5, 7, 5, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5), 0 0 46px rgba(0, 177, 64, .14);
  backdrop-filter: blur(16px);
  animation: fadeInUp .9s ease-out .1s both;
  transition: opacity .24s ease, transform .24s ease;
  margin-top: 0;
}

.gtv-daily-video.is-closing {
  opacity: 0;
  transform: translateY(12px);
}

.gtv-daily-video__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gtv-daily-video__close:hover,
.gtv-daily-video__close:focus-visible {
  border-color: rgba(0, 255, 107, .75);
  color: #00ff6b;
  outline: none;
}

.gtv-daily-video__header {
  padding: 22px 56px 16px 22px;
}

.gtv-daily-video__badge {
  display: inline-flex;
  margin-bottom: 8px;
  color: #00ff6b;
  font: 800 12px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gtv-daily-video__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.gtv-daily-video__date {
  margin: 8px 0 0;
  color: var(--gtv-muted);
  font-size: 14px;
  font-weight: 600;
}

.gtv-daily-video__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050705;
  border-top: 1px solid rgba(0, 177, 64, .24);
  border-bottom: 1px solid rgba(0, 177, 64, .24);
}

#daily-featured-embed,
#daily-featured-embed iframe,
#daily-featured-embed video,
#daily-featured-embed embed,
#daily-featured-embed object {
  display: block;
  width: 100%;
  height: 100%;
}

#daily-featured-embed iframe,
#daily-featured-embed video,
#daily-featured-embed embed,
#daily-featured-embed object {
  border: 0;
  object-fit: cover;
}

/* Daily hero unmute overlay (single source of truth; Grok/Cinematic hero styles) */
.gtv-unmute-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .4s ease, visibility .4s ease;
}

.gtv-unmute-overlay:hover,
.gtv-unmute-overlay:focus-visible {
  color: #00ff6b;
  outline: none;
}

.gtv-unmute-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* HTML5 featured player sizing (homepage + watch page)
   Ensure MP4 fills the container without letterboxing / side bars.
*/
.gtv-video-container video.gtv-html5-player,
.gtv-video-container .gtv-html5-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Watch page embed container id (separate from #daily-featured-embed). */
#watch-daily-featured-embed,
#watch-daily-featured-embed iframe,
#watch-daily-featured-embed video,
#watch-daily-featured-embed embed,
#watch-daily-featured-embed object {
  display: block;
  width: 100%;
  height: 100%;
}

#watch-daily-featured-embed iframe,
#watch-daily-featured-embed video,
#watch-daily-featured-embed embed,
#watch-daily-featured-embed object {
  border: 0;
  object-fit: cover;
}


.gtv-daily-video__footer {
  padding: 16px 22px 20px;
}

.gtv-daily-video__footer p {
  margin: 0;
  color: var(--gtv-muted);
  font-size: 14px;
  line-height: 1.45;
}

.gtv-hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, .3) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(0, 0, 0, .1) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.gtv-hero-cinematic.is-daily-video-closed .gtv-hero-cinematic__inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.gtv-hero-cinematic.is-daily-video-closed .gtv-hero-cinematic__content {
  text-align: center;
}

.gtv-hero-cinematic.is-daily-video-closed .gtv-hero-cinematic__ctas {
  justify-content: center;
}

.gtv-hero-cinematic.is-daily-video-closed .gtv-daily-video {
  display: none;
}

@media (max-width: 980px) {
  .gtv-hero-cinematic {
    min-height: auto;
  }

  .gtv-hero-cinematic__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 0 44px;
  }

  .gtv-hero-cinematic__content {
    text-align: center;
    margin: 0 auto;
    padding-top: 0;
  }

  .gtv-hero-cinematic__ctas {
    justify-content: center;
  }

  .gtv-daily-video {
    width: min(760px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .gtv-hero-cinematic__inner {
    width: min(100% - 26px, 1480px);
    padding: 34px 0 32px;
  }

  .gtv-hero-cinematic__content {
    padding: 0;
  }

  .gtv-hero-cinematic__title {
    font-size: 42px;
  }

  .gtv-hero-cinematic__tagline {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .gtv-hero-cinematic__ctas {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .gtv-hero-cta {
    padding: 16px 24px;
    font-size: 15px;
    width: 100%;
  }

  .gtv-daily-video__header,
  .gtv-daily-video__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.gtv-container {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
}

.gtv-hero-band {
  border-bottom: 1px solid var(--gtv-line);
  background: linear-gradient(135deg, rgba(15, 15, 15, .95), rgba(26, 26, 26, .98));
}

.gtv-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 7, 5, .88);
  border-bottom: 1px solid rgba(0, 177, 64, .24);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.gtv-nav__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.gtv-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1;
  flex: 0 0 auto;
}

.gtv-brand__name {
  font-size: 28px;
  letter-spacing: -.055em;
  font-weight: 800;
}

.gtv-brand__name span {
  color: var(--gtv-green);
}

.gtv-brand__tagline {
  color: var(--gtv-muted);
  font: 700 10px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gtv-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.gtv-menu > li {
  position: relative;
}

.gtv-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(247, 243, 236, .78) !important;
  text-decoration: none !important;
  font: 700 12px/1 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* Auth menu item: label + small membership status underneath */
.gtv-menu-item--auth > a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding-top: 9px;
  padding-bottom: 9px;
  min-width: 120px; /* reduced width */
}

/* When auth item is also the CTA button, make it feel like a real button */
.gtv-menu-item--auth.gtv-menu-cta > a {
  min-width: 135px; /* reduced width */
  padding-left: 14px;
  padding-right: 14px;
}

.gtv-menu-item--auth .gtv-menu-label {
  color: #ffffff !important;
  font-weight: 900;
  font-size: 14px; /* slightly larger */
  letter-spacing: .05em;
}

.gtv-menu-item--auth .gtv-menu-status {
  font: 700 10px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

.gtv-menu a:hover,
.gtv-menu .current-menu-item > a,
.gtv-menu .current_page_item > a,
.gtv-menu .current-menu-ancestor > a {
  background: rgba(0, 177, 64, .14);
  color: #00ff6b !important;
  box-shadow: inset 0 0 0 1px rgba(0, 177, 64, .2);
}

.gtv-menu a:hover {
  transform: translateY(-1px);
}

/* Optional CTA-style menu item (set this class in WP Menu editor):
   CSS class: gtv-menu-cta

   Make it match the BuddyPress /register/ page header pills (darker green gradient + white text). */
.gtv-menu .gtv-menu-cta > a {
  margin-left: 6px;
  background: linear-gradient(180deg, rgba(26, 107, 54, .92), rgba(10, 45, 24, .92));
  border: 1px solid rgba(0, 177, 64, .35);
  color: #ffffff !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}

.gtv-menu .gtv-menu-cta > a:hover,
.gtv-menu .gtv-menu-cta.current-menu-item > a,
.gtv-menu .gtv-menu-cta.current_page_item > a {
  background: linear-gradient(180deg, rgba(34, 136, 71, .96), rgba(12, 58, 30, .96));
  border-color: rgba(0, 255, 107, .55);
  color: #ffffff !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

/* WordPress menu-editor dropdown support (sub-menus) */
.gtv-menu .menu-item-has-children > a::after {
  content: "\25be";
  font-size: 11px;
  margin-left: 8px;
  opacity: .7;
}

.gtv-menu .sub-menu {
  display: none; /* prevent all dropdown items showing open */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  min-width: 240px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border-radius: 16px;
  background: rgba(5, 7, 5, .96);
  border: 1px solid rgba(0, 177, 64, .22);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
}

/* Hover-bridge: prevents dropdown flicker when moving the cursor from the
   parent menu item down into the submenu. */
.gtv-menu li.menu-item-has-children::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 199;
}

.gtv-menu .sub-menu li { margin: 0; }

.gtv-menu .sub-menu a {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
}

.gtv-menu li.menu-item-has-children:hover > .sub-menu,
.gtv-menu li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

/* Safety net: if WPBakery / widgets output a WP menu that does NOT use our
   gtv-menu class, don't render all nested items expanded. */
.menu .sub-menu,
.wpb_wrapper .sub-menu,
.widget_nav_menu .sub-menu {
  display: none;
}

.menu li.menu-item-has-children:hover > .sub-menu,
.menu li.menu-item-has-children:focus-within > .sub-menu,
.wpb_wrapper li.menu-item-has-children:hover > .sub-menu,
.wpb_wrapper li.menu-item-has-children:focus-within > .sub-menu,
.widget_nav_menu li.menu-item-has-children:hover > .sub-menu,
.widget_nav_menu li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.gtv-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 90;
  width: min(520px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(0, 177, 64, .28);
  border-radius: 16px;
  background: rgba(5, 7, 5, .97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .52), 0 0 34px rgba(0, 177, 64, .12);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .2s ease, transform .2s ease;
}

/* Hover-bridge for the custom Latest News mega dropdown. */
.gtv-menu-item--has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  z-index: 89;
}

.gtv-menu-item--has-dropdown:hover .gtv-nav-dropdown,
.gtv-menu-item--has-dropdown:focus-within .gtv-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Keep dropdown open when hovering the dropdown itself */
.gtv-menu-item--has-dropdown:hover > .gtv-nav-dropdown,
.gtv-nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}


.gtv-nav-dropdown__sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.gtv-nav-dropdown__sections a {
  justify-content: flex-start;
  min-height: 42px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: #fff !important;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.gtv-nav-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 177, 64, .2);
}

.gtv-nav-hashtags a {
  min-height: 30px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 177, 64, .1);
  color: #00ff6b !important;
  font-size: 11px;
  letter-spacing: .02em;
  text-transform: none;
}

.gtv-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(0, 177, 64, .36);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}

.gtv-nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.gtv-nav.is-open .gtv-nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gtv-nav.is-open .gtv-nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.gtv-nav.is-open .gtv-nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gtv-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: var(--gtv-muted);
  font: 600 12px/1.2 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gtv-line);
}

.gtv-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 42px;
  align-items: end;
  /* Tighten top spacing */
  padding: clamp(28px, 4.5vw, 64px) 0 44px;
}

.gtv-eyebrow,
.gtv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gtv-lime);
  font: 700 11px/1 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
}

.gtv-kicker::before,
.gtv-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00b140;
  box-shadow: 0 0 18px rgba(0, 177, 64, .72);
}

.gtv-masthead h1 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .94;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.gtv-masthead h2 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .94;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.gtv-intro {
  margin: 0;
  color: var(--gtv-muted);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
}

.gtv-news-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 300px;
  gap: 22px;
  padding-top: 30px;
  align-items: start;
}

.gtv-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.gtv-sidebar h2,
.gtv-section-head h2,
.gtv-vision-strip h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}

.gtv-sidebar h2 {
  font-size: 24px;
}

.gtv-category-nav,
.gtv-mission-card,
.gtv-connect-card,
.gtv-founder-card,
.gtv-web3-card,
.gtv-title-stack,
.gtv-beat-card {
  border: 1px solid var(--gtv-line);
  border-radius: var(--gtv-radius);
  background: rgba(31, 51, 40, .45);
  box-shadow: var(--gtv-shadow);
  backdrop-filter: blur(10px);
}

.gtv-category-nav {
  padding: 10px;
}

.gtv-category-nav a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  color: var(--gtv-text);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 650;
}

.gtv-category-nav a:hover {
  background: rgba(0, 177, 64, .12);
  color: var(--gtv-lime);
}

.gtv-category-nav strong {
  color: #00b140;
  font-family: 'IBM Plex Mono', monospace;
}

.gtv-mission-card,
.gtv-connect-card,
.gtv-founder-card,
.gtv-web3-card {
  padding: 20px;
}

.gtv-mission-card h3,
.gtv-connect-card h2,
.gtv-founder-card h2,
.gtv-web3-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.gtv-mission-card p,
.gtv-connect-card p,
.gtv-founder-card p,
.gtv-web3-card p {
  margin: 0 0 16px;
  color: var(--gtv-muted);
  line-height: 1.5;
}

.gtv-mission-card a,
.gtv-founder-card a,
.gtv-beat-card__head a {
  color: var(--gtv-lime);
  font-weight: 700;
  text-decoration: none;
}

.gtv-button {
  display: inline-flex;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b140, #00ff6b);
  color: #000 !important;
  font-weight: 800;
  text-decoration: none !important;
  transition: all .3s ease;
  box-shadow: 0 8px 24px rgba(0, 177, 64, .3);
}

/* Solutions Spotlight page: the bottom CTA "Submit Your Knowledge →"
   should use the darker GreenTV green used elsewhere (not neon/bright).
   Page ID from body class: page-id-4014 */
body.page-id-4014 .gtv-button {
  background: #1a6b36 !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(26, 107, 54, .28);
}

body.page-id-4014 .gtv-button:hover {
  background: #2d9e6b !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(26, 107, 54, .38);
}

.gtv-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 177, 64, .45);
}

.gtv-main-column {
  display: grid;
  gap: 22px;
}

.gtv-card {
  overflow: hidden;
  border-radius: var(--gtv-radius);
  background: var(--gtv-card-2);
  color: var(--gtv-ink);
  box-shadow: var(--gtv-shadow);
  border: 1px solid rgba(255,255,255,.1);
}

.gtv-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gtv-surface), #274936);
  text-decoration: none;
}

.gtv-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gtv-card:hover .gtv-card__image img {
  transform: scale(1.035);
  filter: saturate(1.1);
}

.gtv-card__placeholder {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  color: var(--gtv-green);
  font: 800 28px/1 'IBM Plex Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gtv-card__body {
  padding: 18px;
}

.gtv-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.03;
  letter-spacing: -.04em;
  color: var(--gtv-ink);
}

.gtv-card h3 a {
  color: inherit;
  text-decoration: none;
}

.gtv-card h3 a:hover {
  color: #00b140;
}

.gtv-card p {
  color: #687769;
  margin: 0 0 14px;
  line-height: 1.48;
}

.gtv-card .gtv-kicker {
  color: #006400;
}

.gtv-card .gtv-kicker::before {
  background: #006400;
  box-shadow: none;
}

.gtv-meta {
  color: var(--gtv-muted-dark);
  font: 600 12px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gtv-card--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  min-height: 460px;
}

.gtv-card--hero .gtv-card__image img,
.gtv-card--hero .gtv-card__placeholder {
  min-height: 460px;
}

.gtv-card--hero .gtv-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.gtv-card--hero h3 {
  font-size: clamp(38px, 4.3vw, 72px);
  letter-spacing: -.065em;
}

.gtv-card--hero p {
  font-size: 18px;
}

.gtv-four-pack,
.gtv-card-grid,
.gtv-category-sections {
  display: grid;
  gap: 18px;
}

.gtv-four-pack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gtv-card--compact .gtv-card__image img,
.gtv-card--compact .gtv-card__placeholder {
  min-height: 150px;
  height: 150px;
}

.gtv-card--compact .gtv-card__body {
  padding: 14px;
}

.gtv-card--compact h3 {
  font-size: 19px;
}

.gtv-title-stack {
  padding: 24px;
}

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

.gtv-title-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.gtv-title-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--gtv-line);
}

.gtv-title-list a {
  color: var(--gtv-text);
  text-decoration: none;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.035em;
}

.gtv-title-list a:hover {
  color: var(--gtv-lime);
}

.gtv-title-list span {
  color: var(--gtv-muted);
  font: 600 12px/1.3 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

.gtv-section {
  padding-top: 56px;
}

.gtv-vision-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 36px;
  align-items: end;
  margin-top: 48px;
  padding: 42px;
  border-radius: calc(var(--gtv-radius) + 10px);
  background: linear-gradient(135deg, rgba(0,177,64,.15), rgba(53,194,255,.08));
  border: 1px solid var(--gtv-line);
}

.gtv-vision-strip p {
  margin: 0;
  color: var(--gtv-muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.gtv-beat-card {
  padding: 18px;
}

.gtv-beat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.gtv-beat-card .gtv-card {
  box-shadow: none;
}

.gtv-beat-card .gtv-card__image img,
.gtv-beat-card .gtv-card__placeholder {
  min-height: 220px;
  height: 220px;
}

.gtv-beat-card .gtv-title-list {
  margin-top: 12px;
}

.gtv-beat-card .gtv-title-list a {
  font-size: 18px;
}

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

@media (max-width: 1200px) {
  .gtv-news-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .gtv-sidebar--right {
    grid-column: 1 / -1;
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gtv-four-pack,
  .gtv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .gtv-container { width: min(100% - 26px, 1480px); }
  .gtv-nav__inner {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
  }
  .gtv-brand__name {
    font-size: 25px;
  }
  .gtv-brand__tagline {
    font-size: 9px;
  }
  .gtv-nav-toggle {
    display: inline-flex;
  }
  .gtv-menu {
    position: absolute;
    top: 100%;
    left: 13px;
    right: 13px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(0, 177, 64, .28);
    border-radius: 16px;
    background: rgba(5, 7, 5, .96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .gtv-menu > li {
    width: 100%;
  }
  .gtv-nav.is-open .gtv-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .gtv-menu a {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 13px 14px;
    font-size: 11px;
  }
  .gtv-menu .gtv-menu-cta > a {
    margin-left: 0;
    justify-content: center;
  }
  .gtv-nav-dropdown {
    position: static;
    width: 100%;
    margin: 4px 0 6px;
    padding: 10px;
    border-radius: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(0, 177, 64, .06);
  }
  .gtv-menu-item--has-dropdown:hover .gtv-nav-dropdown,
  .gtv-menu-item--has-dropdown:focus-within .gtv-nav-dropdown {
    transform: none;
  }
  .gtv-nav-dropdown__sections {
    grid-template-columns: 1fr;
  }
  .gtv-nav-dropdown__sections a {
    min-height: 38px;
  }
  .gtv-nav-hashtags {
    gap: 6px;
  }
  .gtv-topline,
  .gtv-masthead,
  .gtv-news-grid,
  .gtv-card--hero,
  .gtv-vision-strip,
  .gtv-category-sections,
  .gtv-card-grid,
  .gtv-sidebar--right {
    grid-template-columns: 1fr;
  }
  .gtv-sidebar {
    position: static;
  }
  .gtv-four-pack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gtv-card--hero .gtv-card__image img,
  .gtv-card--hero .gtv-card__placeholder {
    min-height: 280px;
  }
  .gtv-masthead h1 { letter-spacing: -.055em; }
}

@media (max-width: 560px) {
  .gtv-four-pack,
  .gtv-card-grid {
    grid-template-columns: 1fr;
  }
  .gtv-vision-strip,
  .gtv-title-stack,
  .gtv-beat-card {
    padding: 20px;
  }
  .gtv-title-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Video Hero Section */
.gtv-video-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 36px 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 177, 64, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gtv-video-hero:hover {
  border-color: rgba(0, 177, 64, 0.6);
  box-shadow: 0 16px 48px rgba(0, 177, 64, 0.2);
}

.gtv-video-hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 177, 64, .3), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(212, 168, 66, .15), transparent 45%),
    linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  z-index: 0;
}

.gtv-video-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.gtv-video-play-icon {
  color: #00b140;
  filter: drop-shadow(0 8px 24px rgba(0, 177, 64, 0.4));
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gtv-video-hero:hover .gtv-video-play-icon {
  color: #00ff6b;
  transform: scale(1.15);
  filter: drop-shadow(0 12px 36px rgba(0, 177, 64, 0.6));
}

.gtv-video-hero__label {
  margin: 0;
  color: var(--gtv-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Roku-style Channel Grid */
.gtv-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0;
}

.gtv-channel-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 177, 64, 0.2);
  background: rgba(31, 51, 40, 0.3);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gtv-channel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 177, 64, 0.6);
  box-shadow: 0 20px 48px rgba(0, 177, 64, 0.25);
}

.gtv-channel-card__image {
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.gtv-channel-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.gtv-channel-card h3 {
  margin: 16px 16px 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gtv-channel-card p {
  margin: 0 16px 16px;
  color: var(--gtv-muted);
  font-size: 14px;
  line-height: 1.4;
  flex-grow: 1;
}

@media (max-width: 1200px) {
  .gtv-channel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .gtv-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  
  .gtv-video-hero {
    min-height: 360px;
  }
  
  .gtv-video-play-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 560px) {
  .gtv-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  
  .gtv-video-hero {
    min-height: 280px;
    margin: 24px 0;
  }
  
  .gtv-video-play-icon {
    width: 48px;
    height: 48px;
  }
  
  .gtv-channel-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .gtv-channel-card p {
    font-size: 12px;
  }
}


/* Remove parent-theme chrome on GreenTV custom pages and keep palette consistent. */
.greentv-news-home header,
.greentv-news-home .header_1,
.greentv-news-home .header_2,
.greentv-news-home .header_3,
.greentv-news-home .header_4,
.greentv-news-home .page_title,
.gt-page header,
.gt-page .header_1,
.gt-page .header_2,
.gt-page .header_3,
.gt-page .header_4,
.gt-page .page_title {
  display: none !important;
}

a { color: #006400; }
a:hover { color: #00b140; }

.gtv-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 177, 64, .12), transparent 28rem),
    #0a0a0a;
  color: var(--gtv-muted);
  border-top: 1px solid var(--gtv-line);
  padding: 44px 0 24px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

.gtv-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .7fr) minmax(220px, .7fr);
  gap: 28px;
  align-items: start;
}

.gtv-footer__section {
  display: grid;
  gap: 10px;
}

.gtv-footer__brand {
  width: max-content;
  color: #fff !important;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 900;
  text-decoration: none !important;
}

.gtv-footer__brand span {
  color: var(--gtv-green);
}

.gtv-footer h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -.02em;
}

.gtv-footer strong {
  color: #00ff6b;
  font: 800 12px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gtv-footer p {
  margin: 0;
  max-width: 620px;
  line-height: 1.55;
}

.gtv-footer a {
  color: var(--gtv-muted) !important;
  text-decoration: none !important;
  border: 1px solid rgba(0, 177, 64, .2);
  border-radius: 12px;
  padding: 10px 12px;
  transition: all .3s ease;
}

.gtv-footer a:hover {
  color: #000 !important;
  background: linear-gradient(135deg, #00b140, #00ff6b);
  border-color: #00b140;
}

.gtv-footer__brand,
.gtv-footer__brand:hover {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff !important;
}

.gtv-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 177, 64, .18);
  color: rgba(216, 208, 195, .72);
  font: 700 11px/1.4 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Scroll-to-top button */
.gtv-scrolltop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0, 177, 64, .28);
  background: rgba(5, 7, 5, .78);
  color: #00ff6b;
  box-shadow: 0 18px 44px rgba(0,0,0,.5);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
  z-index: 9999;
}
.gtv-scrolltop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gtv-scrolltop:hover {
  background: rgba(0, 177, 64, .12);
  box-shadow: 0 22px 60px rgba(0, 177, 64, .16);
}
.gtv-scrolltop span {
  font: 900 16px/1 'IBM Plex Mono', ui-monospace, monospace;
  transform: translateY(-1px);
}

.gt-page {
  min-height: 100vh;
  background: var(--gtv-bg);
  color: var(--gtv-text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
.gt-page-hero {
  /* Tighten top spacing */
  padding: clamp(34px, 5vw, 72px) 0 44px;
  background:
    radial-gradient(circle at 10% 0%, rgba(0,177,64,.24), transparent 32rem),
    linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border-bottom: 1px solid var(--gtv-line);
}

/* BuddyPress pages (Members, Activity, Groups, user subpages, etc.)
   We don't want the generic .gt-page-hero block showing above BP content. */
body.buddypress .gt-page-hero {
  display: none;
}

/* BuddyPress: default cover background (when no custom cover image is set)
   Use a GreenTV-style green gradient as the fallback. */
body.buddypress #cover-image-container,
body.buddypress #item-header {
  /* Default BuddyPress cover background (when no user-uploaded cover exists) */
  background:
    linear-gradient(135deg, rgba(0, 177, 64, .22), rgba(0, 70, 28, .62)),
    url('/wp-content/themes/greentv-news/assets/bp-cover-default.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ensure the cover area still has a visible height even with no uploaded cover */
body.buddypress #cover-image-container {
  min-height: 240px;
  border-bottom: 1px solid rgba(0, 177, 64, .18);
}

/* If BuddyPress injects a cover element, keep the gradient behind it */
body.buddypress #header-cover-image {
  background-color: transparent;
}

/* BuddyPress Register/Login (/register/): make submit button match GreenTV greens */
body.buddypress.register input[type="submit"],
body.buddypress.register button[type="submit"],
body.buddypress.register .button,
body.buddypress.register a.button {
  background: linear-gradient(135deg, #00b140 0%, #006400 100%) !important;
  border: 1px solid rgba(0, 177, 64, .55) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(0, 177, 64, .20) !important;
  text-decoration: none;
}
body.buddypress.register input[type="submit"]:hover,
body.buddypress.register button[type="submit"]:hover,
body.buddypress.register .button:hover,
body.buddypress.register a.button:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 42px rgba(0, 177, 64, .28) !important;
}
body.buddypress.register input[type="submit"]:focus,
body.buddypress.register button[type="submit"]:focus,
body.buddypress.register .button:focus,
body.buddypress.register a.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 177, 64, .28), 0 18px 42px rgba(0, 177, 64, .18) !important;
}

/* BuddyPress Register/Login fields: make input backgrounds DARK GREEN so entered text is always visible */
body.buddypress.register input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
body.buddypress.register textarea,
body.buddypress.register select,
/* BP Nouveau selectors (covers many templates even if body classes differ) */
body.buddypress .buddypress-wrap .standard-form input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
body.buddypress .buddypress-wrap .standard-form textarea,
body.buddypress .buddypress-wrap .standard-form select {
  background-color: #063b1b !important; /* dark green */
  border-color: rgba(0, 177, 64, .65) !important;
  color: #eafff1 !important;
  caret-color: #eafff1 !important;
  -webkit-text-fill-color: #eafff1 !important;
}

body.buddypress.register input::placeholder,
body.buddypress.register textarea::placeholder,
body.buddypress .buddypress-wrap .standard-form input::placeholder,
body.buddypress .buddypress-wrap .standard-form textarea::placeholder {
  color: rgba(234, 255, 241, .65) !important;
}

/* Kill Chrome/Safari autofill yellow + keep dark green background */
body.buddypress.register input:-webkit-autofill,
body.buddypress.register textarea:-webkit-autofill,
body.buddypress.register select:-webkit-autofill,
body.buddypress .buddypress-wrap .standard-form input:-webkit-autofill,
body.buddypress .buddypress-wrap .standard-form textarea:-webkit-autofill,
body.buddypress .buddypress-wrap .standard-form select:-webkit-autofill {
  -webkit-text-fill-color: #eafff1 !important;
  box-shadow: 0 0 0px 1000px #063b1b inset !important;
  transition: background-color 9999s ease-in-out 0s;
}


.gt-page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--gtv-text);
  font-size: clamp(46px, 7vw, 94px);
  line-height: .96;
  letter-spacing: -.065em;
}
.gt-page-hero p {
  max-width: 760px;
  color: var(--gtv-muted);
  font-size: 20px;
  line-height: 1.55;
}
.gt-page-content {
  padding: 48px 0 72px;
}
.gt-page-content .gtv-page-panel {
  background: var(--gtv-card);
  color: var(--gtv-ink);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--gtv-shadow);
}
.gt-page-content h2,
.gt-page-content h3 {
  color: var(--gtv-ink);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin-top: 36px;
}
.gt-page-content h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 18px; }
.gt-page-content h3 { font-size: 28px; margin-bottom: 16px; }
.gt-page-content p,
.gt-page-content li { font-size: 18px; line-height: 1.65; margin: 0 0 16px; }
.gt-page-content strong { color: var(--gtv-green-dark); font-weight: 700; }
.gt-page-content a { 
  color: #006400;
  text-decoration: underline;
  transition: color .2s ease;
}
.gt-page-content a:hover { color: #00b140; }
.gtv-page-grid,
.gtv-page-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 26px 0;
}
.gtv-page-card {
  background: #fffaf2;
  border: 1px solid rgba(26,107,54,.16);
  border-radius: 20px;
  padding: 24px;
}
.gtv-page-card--dark {
  background: #1c2620;
  color: var(--gtv-text);
}
.gtv-page-card--dark h3 { color: var(--gtv-text); }
.gtv-page-card--dark p { color: var(--gtv-muted); }
.gtv-page-image {
  overflow: hidden;
  border-radius: 24px;
  min-height: 260px;
  background: linear-gradient(135deg, #1a6b36, #2d9e6b);
}
.gtv-page-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}


/* dev.greentv.com Connect with GreenTV: larger, cleaner Contact Form 7 inputs */
body.page-id-2093 .wpcf7 form {
  margin-top: 18px;
}
body.page-id-2093 .wpcf7 label {
  display: block;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--gtv-ink);
}
body.page-id-2093 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
body.page-id-2093 .wpcf7 input[type="text"],
body.page-id-2093 .wpcf7 input[type="email"],
body.page-id-2093 .wpcf7 textarea {
  width: 85%;
  font-size: 18px;
  line-height: 1.35;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(26,107,54,.18);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
body.page-id-2093 .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}
body.page-id-2093 .wpcf7 input[type="text"]:focus,
body.page-id-2093 .wpcf7 input[type="email"]:focus,
body.page-id-2093 .wpcf7 textarea:focus {
  outline: none;
  border-color: rgba(0, 177, 64, .55);
  box-shadow: 0 0 0 4px rgba(0, 177, 64, .14), 0 16px 40px rgba(0,0,0,.10);
}
body.page-id-2093 .wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.gtv-palette-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 18px;
  overflow: hidden;
  margin: 26px 0;
  min-height: 18px;
}
.gtv-palette-strip span:nth-child(1){background:#1a6b36}.gtv-palette-strip span:nth-child(2){background:#2d9e6b}.gtv-palette-strip span:nth-child(3){background:#d4a842}.gtv-palette-strip span:nth-child(4){background:#f7f3ec}.gtv-palette-strip span:nth-child(5){background:#1c2620}

@media (max-width: 760px) {
  .gtv-footer__inner,
  .gtv-page-grid,
  .gtv-page-feature-grid { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .gtv-footer__bottom { flex-direction: column; }
}

/* Single post pages */
body.greentv-news-single,
body.greentv-news-single #layout,
body.greentv-news-single .page_content {
  background: var(--gtv-bg) !important;
}

body.greentv-news-single > header,
body.greentv-news-single #layout > header,
.greentv-news-single .header_1,
.greentv-news-single .header_2,
.greentv-news-single .header_3,
.greentv-news-single .header_4,
.greentv-news-single .page_title {
  display: none !important;
}

.gt-post {
  min-height: 100vh;
  background: var(--gtv-bg);
  color: var(--gtv-text);
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gt-post-hero {
  /* Tighten top spacing */
  padding: clamp(30px, 4.5vw, 64px) 0 42px;
  border-bottom: 1px solid var(--gtv-line);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 177, 64, .24), transparent 34rem),
    radial-gradient(circle at 92% 8%, rgba(212, 168, 66, .13), transparent 28rem),
    linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.gt-post-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.gt-post-hero h1 {
  margin: 0 0 18px;
  color: var(--gtv-text);
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: .96;
  letter-spacing: -.065em;
}

.gt-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--gtv-muted);
  font: 700 12px/1.2 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gt-post-deck {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--gtv-muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.gt-post-hero__image {
  overflow: hidden;
  border: 1px solid var(--gtv-line);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gtv-surface), #274936);
  box-shadow: var(--gtv-shadow);
}

.gt-post-hero__image img,
.gt-post-hero__placeholder {
  display: block;
  width: 100%;
  min-height: clamp(300px, 38vw, 540px);
  object-fit: cover;
}

.gt-post-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gtv-green);
  font: 800 34px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gt-post-wrap {
  padding: 46px 0 70px;
}

.gt-post-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 860px);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  justify-content: center;
}

.gt-post-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.gt-post-side-card {
  padding: 20px;
  border: 1px solid var(--gtv-line);
  border-radius: var(--gtv-radius);
  background: rgba(16, 41, 28, .72);
  box-shadow: var(--gtv-shadow);
}

.gt-post-side-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  letter-spacing: -.04em;
}

.gt-post-side-card p {
  margin: 0 0 16px;
  color: var(--gtv-muted);
  line-height: 1.5;
}

.gt-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gt-post-tags a {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid var(--gtv-line);
  border-radius: 999px;
  color: var(--gtv-muted) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
}

.gt-post-tags a:hover {
  background: var(--gtv-lime);
  color: var(--gtv-ink) !important;
}

.gt-post-content {
  overflow: hidden;
  border-radius: 28px;
  background: var(--gtv-card);
  color: var(--gtv-ink);
  padding: clamp(26px, 4.5vw, 58px);
  box-shadow: var(--gtv-shadow);
}

.gt-post-content > *:first-child { margin-top: 0; }
.gt-post-content > *:last-child { margin-bottom: 0; }
.gt-post-content p,
.gt-post-content li {
  color: #2e3a32;
  font-size: 19px;
  line-height: 1.76;
}
.gt-post-content h2,
.gt-post-content h3,
.gt-post-content h4 {
  color: var(--gtv-ink);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-top: 1.55em;
}
.gt-post-content h2 { font-size: clamp(32px, 4vw, 52px); }
.gt-post-content h3 { font-size: clamp(26px, 3vw, 36px); }
.gt-post-content a { color: var(--gtv-green-dark); font-weight: 700; }
.gt-post-content img,
.gt-post-content iframe,
.gt-post-content video {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.gt-post-content figure { margin: 28px 0; }
.gt-post-content figcaption {
  color: var(--gtv-muted-dark);
  font-size: 14px;
  text-align: center;
}

.gt-post-related {
  padding: 0 0 76px;
  background: var(--gtv-bg);
}

@media (max-width: 980px) {
  .gt-post-hero__grid,
  .gt-post-layout {
    grid-template-columns: 1fr;
  }
  .gt-post-sidebar {
    position: static;
    order: 2;
  }
}

/* Category and archive pages */
body.greentv-news-archive,
body.greentv-news-archive #layout,
body.greentv-news-archive .page_content {
  background: var(--gtv-bg) !important;
}

body.greentv-news-archive > header,
body.greentv-news-archive #layout > header,
.greentv-news-archive .header_1,
.greentv-news-archive .header_2,
.greentv-news-archive .header_3,
.greentv-news-archive .header_4,
.greentv-news-archive .page_title {
  display: none !important;
}

.gt-archive {
  min-height: 100vh;
  background: var(--gtv-bg);
  color: var(--gtv-text);
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gt-archive-hero {
  /* Tighten top spacing */
  padding: clamp(34px, 5vw, 72px) 0 44px;
  border-bottom: 1px solid var(--gtv-line);
  background:
    radial-gradient(circle at 9% 0%, rgba(45, 158, 107, .25), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(212, 168, 66, .15), transparent 28rem),
    linear-gradient(135deg, #1c2620, #1f3328);
}

.gt-archive-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: end;
}

.gt-archive-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--gtv-text);
  font-size: clamp(46px, 7vw, 98px);
  line-height: .94;
  letter-spacing: -.065em;
}

.gt-archive-description {
  max-width: 780px;
  margin-top: 22px;
  color: var(--gtv-muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.gt-archive-stat {
  padding: 24px;
  border: 1px solid var(--gtv-line);
  border-radius: var(--gtv-radius);
  background: rgba(16, 41, 28, .72);
  box-shadow: var(--gtv-shadow);
}

.gt-archive-stat strong {
  display: block;
  color: var(--gtv-lime);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -.06em;
}

.gt-archive-stat span {
  display: block;
  margin-top: 10px;
  color: var(--gtv-muted);
  font: 700 12px/1.35 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gt-archive-content {
  padding: 34px 0 78px;
}

.gt-archive-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.gt-archive-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.gt-archive-side-card {
  padding: 18px;
  border: 1px solid var(--gtv-line);
  border-radius: var(--gtv-radius);
  background: rgba(16, 41, 28, .72);
  box-shadow: var(--gtv-shadow);
}

.gt-archive-side-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  letter-spacing: -.04em;
}

.gt-archive-side-card p {
  color: var(--gtv-muted);
  line-height: 1.5;
}

.gt-archive-category-list {
  display: grid;
  gap: 6px;
}

.gt-archive-category-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--gtv-text) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.gt-archive-category-list a:hover,
.gt-archive-category-list a.is-current {
  background: rgba(45, 158, 107, .15);
  color: var(--gtv-lime) !important;
}

.gt-archive-category-list strong {
  color: var(--gtv-green);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
}

.gt-archive-main {
  display: grid;
  gap: 24px;
}

.gt-archive-main--wide {
  max-width: 1240px;
}

.gt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gt-archive-pagination {
  color: var(--gtv-text);
}

.gt-archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gt-archive-pagination a,
.gt-archive-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--gtv-line);
  border-radius: 999px;
  color: var(--gtv-muted) !important;
  text-decoration: none !important;
  font-weight: 800;
}

.gt-archive-pagination .current,
.gt-archive-pagination a:hover {
  background: var(--gtv-lime);
  color: var(--gtv-ink) !important;
}

.gt-archive-empty {
  padding: 38px;
  border-radius: 24px;
  background: var(--gtv-card);
  color: var(--gtv-ink);
}

@media (max-width: 1120px) {
  .gt-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .gt-archive-hero__inner,
  .gt-archive-layout {
    grid-template-columns: 1fr;
  }
  .gt-archive-sidebar {
    position: static;
    order: 2;
  }
  .gt-archive-grid { grid-template-columns: 1fr; }
}

/* Grok Daily Video Hero: centered cinematic implementation. */
.gtv-cinematic-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
  margin-top: -20px;
  padding: clamp(34px, 6vw, 72px) 0 clamp(42px, 7vw, 84px);
  border-bottom: 1px solid rgba(0, 177, 64, .24);
  transition: opacity .26s ease, transform .26s ease;
}

.gtv-cinematic-hero.is-closing {
  opacity: 0;
  transform: translateY(-10px);
}

.gtv-cinematic-hero.is-daily-hero-closed {
  display: none;
}

.gtv-hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 45%, rgba(0, 177, 64, .28), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(0, 177, 64, .18), transparent 38%),
    linear-gradient(135deg, rgba(0, 100, 0, .64), rgba(0, 177, 64, .18)),
    linear-gradient(135deg, #071007 0%, #111813 52%, #050705 100%);
  background-size: cover;
}

.gtv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, calc(100% - 40px));
  max-width: 1100px;
  padding: 0 20px;
}

.gtv-hero-badge {
  display: inline-block;
  background: #00b140;
  color: #000;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gtv-hero-title {
  font-size: clamp(42px, 7vw, 110px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: #fff;
  margin: 0 0 12px;
}

.gtv-hero-title span {
  display: block;
  background: linear-gradient(135deg, #00b140 0%, #00ff6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gtv-hero-tagline {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #d0f0c0;
  margin: 0 0 30px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gtv-daily-video-wrapper {
  position: center;
  max-width: 90%;
  margin-top: 50px;
  padding-left: 0%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 177, 64, .42);
  background: #050705;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .7), 0 0 44px rgba(0, 177, 64, .16);
  
}

.gtv-daily-video-wrapper.is-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 177, 64, .18), transparent 65%),
    rgba(5, 7, 5, .92);
}


.gtv-hero-close.is-hidden {
  display: none;
}

.gtv-daily-video-placeholder,
.gtv-daily-playlist-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 32px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(0, 177, 64, .1), rgba(0, 177, 64, .02));
  border: 1px dashed rgba(0, 177, 64, .32);
  color: var(--gtv-muted);
  font: 700 12px/1.4 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .86;
}
.gtv-video-grid iframe,
.gtv-video-grid video {
  aspect-ratio: 16 / 9;
}

/* Conversion funnel strip (Buy -> Consult -> Done-for-You -> Growth -> Support + Docs) */
.gtv-funnel-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 30px auto 60px;
}

.gtv-funnel-strip__item {
  background: linear-gradient(180deg, rgba(39, 73, 54, .46), rgba(20, 32, 24, .92));
  border: 1px solid rgba(0, 177, 64, .35);
  border-radius: 14px;
  padding: 16px 14px;
  color: #f7f3ec;
}

.gtv-funnel-strip__item h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.gtv-funnel-strip__item p,
.gtv-funnel-strip__item li {
  margin: 0;
  color: #d8d0c3;
  font-size: 14px;
  line-height: 1.5;
}

.gtv-funnel-strip__item ul {
  margin: 0;
  padding-left: 18px;
}

.gtv-funnel-strip__item a {
  color: #00ff6b;
}

.gtv-funnel-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 177, 64, .65);
  background: linear-gradient(120deg, rgba(0, 177, 64, .26), rgba(0, 255, 107, .18));
  color: #ecfff3 !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.gtv-funnel-strip__cta:hover,
.gtv-funnel-strip__cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 107, .95);
  box-shadow: 0 8px 22px rgba(0, 177, 64, .35);
  outline: none;
}

.gtv-funnel-strip__note {
  margin-top: 10px !important;
  font-size: 12px !important;
  opacity: .88;
}

.gtv-daily-video-placeholder span,
.gtv-daily-playlist-placeholder span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gtv-daily-video-placeholder span::after,
.gtv-daily-playlist-placeholder span::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00b140;
  box-shadow: 0 0 12px rgba(0, 177, 64, .6);
  animation: gtvPulse 1.4s ease-in-out infinite;
}

@keyframes gtvPulse {
  0%, 100% {
    opacity: .4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.gtv-video-container,
.gtv-video-container iframe,
.gtv-video-container video,
.gtv-video-container embed,
.gtv-video-container object {
  display: block;
  width: 100%;
  height: 100%;
}

.gtv-video-container iframe,
.gtv-video-container video,
.gtv-video-container embed,
.gtv-video-container object {
  border: none;
  object-fit: cover;
}

.gtv-video-container {
  position: relative;
  width: 100%;
  min-height: 100%;
}

#daily-featured-embed .gtv-video--hero-embed,
#daily-featured-embed .gtv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: inherit;
}

/* When the featured embed is a direct <video> (HTML5 player), ensure it also fills the hero box. */
#daily-featured-embed > video,
#daily-featured-embed video.gtv-html5-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

#daily-featured-embed .gtv-video--hero-embed iframe,
#daily-featured-embed .gtv-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.gtv-cinematic-hero.is-hero-no-video {
  min-height: auto;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.gtv-cinematic-hero.is-hero-no-video .gtv-hero-close {
  display: none;
}

.gtv-daily-now-playing {
  margin: 12px 0 0;
  color: #d0f0c0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* Watch GreenTV — daily pipeline player */
.gtv-watch-page__hero {
  padding-bottom: 0;
}

.gtv-watch-daily {
  margin: 0 auto 48px;
}

.gtv-watch-daily__head {
  margin-bottom: 24px;
}

.gtv-watch-daily__intro {
  margin: 8px 0 0;
  color: var(--gtv-muted);
  max-width: 62ch;
}

.gtv-watch-daily__player {
  /* Bigger player on the watch page */
  max-width: 1260px;
  width: 100%;
  margin: 0 auto 36px;
}

/* Watch page: the featured wrapper should not be offset.
   (The base .gtv-daily-video-wrapper includes padding-left/max-width tweaks
   that cause the video to look misaligned with a black bar on the left.) */
.gtv-watch-daily__player .gtv-daily-video-wrapper {
  max-width: 100%;
  margin-top: 0;
  padding-left: 0;
}

.gtv-video-container--watch {
  min-height: 0;
}

.gtv-watch-daily__playlist .gtv-playlist {
  margin-top: 0;
}

.gtv-watch-daily__playlist .gtv-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #050705;
  margin: 12px 0 20px;
}

.gtv-watch-daily__playlist .gtv-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gtv-watch-daily__playlist .gtv-item-title {
  color: #fff;
  margin-top: 1.25rem;
}

.gtv-watch-daily__playlist .gtv-meta {
  color: var(--gtv-muted);
}

/* (removed duplicate) .gtv-unmute-overlay styling is defined once above */


.gtv-hero-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.gtv-hero-close:hover,
.gtv-hero-close:focus-visible {
  color: #00ff6b;
  border-color: rgba(0, 177, 64, .72);
  outline: none;
}

/* Ensure close button stays above the video overlay */
#daily-hero .gtv-hero-close {
  z-index: 25;
}


@media (max-width: 760px) {
  .gtv-cinematic-hero {
    min-height: auto;
    margin-top: 0;
    padding: 36px 0 44px;
  }

  .gtv-hero-content {
    width: min(100% - 26px, 1100px);
    padding: 0;
  }

  .gtv-hero-title {
    font-size: 42px;
  }

  .gtv-hero-tagline {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .gtv-hero-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .gtv-daily-video-wrapper {
    border-radius: 12px;
  }
}

/* Premium Membership Page */
.gtv-membership-page {
  color: var(--gtv-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 177, 64, .18), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(212, 168, 66, .1), transparent 30rem),
    linear-gradient(180deg, #050705 0%, #0f0f0f 54%, #151915 100%);
  min-height: 100vh;
  padding-bottom: 72px;
}

.gtv-membership-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 177, 64, .24);
  background: #050705;
}

.gtv-membership-hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(0, 177, 64, .3), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(0, 255, 107, .12), transparent 36%),
    linear-gradient(135deg, rgba(0, 100, 0, .42), rgba(0, 0, 0, .28));
  opacity: .95;
}

.gtv-membership-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  /* Tighten top spacing */
  padding: clamp(36px, 5vw, 72px) 0 clamp(38px, 6vw, 72px);
  text-align: center;
}

.gtv-membership-kicker,
.gtv-membership-tier {
  display: inline-flex;
  align-items: center;
  color: #00ff6b;
  font: 800 12px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gtv-membership-hero h1 {
  margin: 18px auto 16px;
  max-width: 920px;
  color: #fff;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .96;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.gtv-membership-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--gtv-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.gtv-membership-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.gtv-membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(0, 177, 64, .22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
    rgba(8, 12, 9, .82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .34);
}

.gtv-membership-card--featured {
  border-color: rgba(0, 255, 107, .72);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 177, 64, .24), transparent 26rem),
    radial-gradient(circle at 0% 100%, rgba(0, 255, 107, .10), transparent 38rem),
    linear-gradient(180deg, rgba(0, 177, 64, .12), rgba(255, 255, 255, .04)),
    rgba(8, 12, 9, .9);
  box-shadow:
    0 26px 80px rgba(0, 177, 64, .18),
    0 24px 70px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(0, 255, 107, .12);
  transform: translateY(-10px);
  animation: gtvFeaturedGlow 3.2s ease-in-out infinite;
}

@keyframes gtvFeaturedGlow {
  0%, 100% {
    box-shadow:
      0 26px 80px rgba(0, 177, 64, .18),
      0 24px 70px rgba(0, 0, 0, .42),
      0 0 0 1px rgba(0, 255, 107, .12);
  }
  50% {
    box-shadow:
      0 26px 80px rgba(0, 177, 64, .25),
      0 24px 70px rgba(0, 0, 0, .44),
      0 0 0 1px rgba(0, 255, 107, .24),
      0 0 56px rgba(0, 255, 107, .10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gtv-membership-card--featured {
    animation: none;
  }
}


.gtv-membership-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b140, #00ff6b);
  color: #020402;
  font: 900 11px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 177, 64, .35);
}


.gtv-membership-card__head h2 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: clamp(42px, 5vw, 62px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.gtv-membership-card__head h2 span {
  color: var(--gtv-muted);
  font-size: 18px;
  letter-spacing: 0;
}

.gtv-membership-best {
  margin-top: 12px;
  color: #d0f0c0;
  font-weight: 700;
  line-height: 1.4;
  font-size: 16px;
}


.gtv-membership-card__head p,
.gtv-membership-card li {
  color: var(--gtv-muted);
  line-height: 1.5;
}

.gtv-membership-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.gtv-membership-card li {
  position: relative;
  padding-left: 24px;
}

.gtv-membership-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #00b140;
  box-shadow: 0 0 16px rgba(0, 177, 64, .65);
}

.gtv-membership-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(0, 177, 64, .45);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.gtv-membership-card--featured .gtv-membership-select,
.gtv-membership-select:hover {
  background: linear-gradient(135deg, #00b140, #00ff6b);
  color: #020402 !important;
  box-shadow: 0 12px 34px rgba(0, 177, 64, .28);
  transform: translateY(-2px);
}

.gtv-membership-checkout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(0, 177, 64, .24);
  border-radius: 20px;
  background: rgba(5, 7, 5, .74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.gtv-membership-checkout__copy h2 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.gtv-membership-checkout__copy p {
  margin: 0;
  color: var(--gtv-muted);
  font-size: 17px;
  line-height: 1.55;
}

.gtv-membership-checkout__box {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(0, 177, 64, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

@media (max-width: 980px) {
  .gtv-membership-plans,
  .gtv-membership-checkout {
    grid-template-columns: 1fr;
  }

  .gtv-membership-card--featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .gtv-membership-plans {
    gap: 14px;
    padding-top: 22px;
  }

  .gtv-membership-card,
  .gtv-membership-checkout {
    padding: 20px;
    border-radius: 14px;
  }

  .gtv-membership-ribbon {
    position: static;
    width: max-content;
    margin-bottom: 14px;
  }
}

/* GreenTV hubs, blogroll, and contribution pages */
.gtv-hub-page {
  min-height: 100vh;
  color: var(--gtv-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 177, 64, .18), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(212, 168, 66, .08), transparent 30rem),
    linear-gradient(180deg, #050705 0%, #0f0f0f 58%, #151915 100%);
  padding-bottom: 76px;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gtv-hub-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 177, 64, .24);
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 177, 64, .28), transparent 40%),
    radial-gradient(circle at 82% 14%, rgba(0, 255, 107, .1), transparent 36%),
    linear-gradient(135deg, #071007, #121812);
}

.gtv-hub-hero--solutions {
  background:
    radial-gradient(circle at 16% 36%, rgba(0, 177, 64, .34), transparent 42%),
    radial-gradient(circle at 82% 14%, rgba(212, 168, 66, .13), transparent 34%),
    linear-gradient(135deg, #071007, #121812);
}

.gtv-hub-hero--voices {
  background:
    radial-gradient(circle at 18% 32%, rgba(0, 177, 64, .22), transparent 42%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(135deg, #050705, #151915);
}

.gtv-hub-hero--contribute {
  background:
    radial-gradient(circle at 20% 34%, rgba(0, 177, 64, .28), transparent 42%),
    radial-gradient(circle at 88% 16%, rgba(0, 255, 107, .16), transparent 30%),
    linear-gradient(135deg, #071007, #121812);
}

.gtv-hub-hero__inner {
  max-width: 1040px;
  /* Tighten top spacing above hub page titles (was very tall). */
  padding: clamp(22px, 3vw, 48px) 0 clamp(42px, 6vw, 74px);
}

.gtv-hub-hero__inner--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.gtv-hub-visual {
  min-height: clamp(260px, 34vw, 460px);
  border: 1px solid rgba(0, 177, 64, .34);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 24px;
  background:
    /* Image layer (set per page modifier class below). */
    var(--gtv-hub-visual-image, none),
    radial-gradient(circle at 36% 28%, rgba(0, 255, 107, .22), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(212, 168, 66, .12), transparent 36%),
    linear-gradient(135deg, rgba(0, 177, 64, .18), rgba(5, 7, 5, .72)),
    linear-gradient(135deg, #1f3328, #050705);
  background-size: cover, auto, auto, auto, auto;
  background-position: center, 36% 28%, 82% 72%, center, center;
  background-repeat: no-repeat;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), 0 0 42px rgba(0, 177, 64, .12);
}

.gtv-hub-visual span {
  color: #fff;
  max-width: 280px;
  font-size: clamp(30px, 5vw, 64px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.06em;
}

/* Hub visuals: page-specific hero images */
.gtv-hub-hero--voices .gtv-hub-visual {
  --gtv-hub-visual-image:
    linear-gradient(90deg, rgba(5, 7, 5, 0) 62%, rgba(5, 7, 5, .92) 100%),
    url('https://dev.greentv.com/wp-content/uploads/2026/05/featured-leonardo-independent-voices-535x510-cropped-blackmic.png');
}

.gtv-builder-content,
.gtv-homepage-content {
  margin-top: 26px;
}

.gtv-builder-content:empty,
.gtv-homepage-content:empty {
  display: none;
}

.gtv-builder-content .entry-content,
.gtv-homepage-content .entry-content {
  color: var(--gtv-muted);
}

.gtv-hub-kicker {
  display: inline-flex;
  color: #00ff6b;
  font: 800 12px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gtv-hub-hero h1,
.gtv-hub-section-head h2 {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.gtv-hub-hero h1 {
  max-width: 960px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 94px);
  line-height: .96;
}

.gtv-hub-hero p {
  max-width: 800px;
  margin: 0;
  color: var(--gtv-muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.gtv-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gtv-hub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b140, #00ff6b);
  color: #020402 !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 14px 38px rgba(0, 177, 64, .28);
}

.gtv-hub-button--secondary {
  background: rgba(255, 255, 255, .06);
  color: #fff !important;
  border: 1px solid rgba(0, 177, 64, .42);
  box-shadow: none;
}

.gtv-blogroll {
  padding-top: 34px;
}

.gtv-blogroll-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  overflow: hidden;
  border: 1px solid rgba(0, 177, 64, .28);
  border-radius: 22px;
  background: rgba(8, 12, 9, .82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.gtv-blogroll-featured__image,
.gtv-blogroll-card__image {
  display: block;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 177, 64, .22), transparent 42%),
    linear-gradient(135deg, #1f3328, #0f0f0f);
  text-decoration: none !important;
}

.gtv-blogroll-featured__image img,
.gtv-blogroll-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gtv-blogroll-featured:hover img,
.gtv-blogroll-card:hover img {
  transform: scale(1.035);
}

.gtv-blogroll-featured__image span,
.gtv-blogroll-card__image span {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: #00ff6b;
  font: 900 24px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gtv-blogroll-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.gtv-blogroll-featured h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 70px);
  line-height: .96;
  letter-spacing: -0.06em;
}

.gtv-blogroll-featured h2 a,
.gtv-blogroll-card h3 a {
  color: inherit;
  text-decoration: none !important;
}

.gtv-blogroll-featured p,
.gtv-blogroll-card p {
  color: var(--gtv-muted);
  line-height: 1.5;
}

.gtv-blogroll-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.gtv-blogroll-card {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, .58fr);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(0, 177, 64, .22);
  border-radius: 18px;
  background: rgba(8, 12, 9, .78);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.gtv-blogroll-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
}

.gtv-blogroll-card__body {
  padding: 22px;
}

.gtv-blogroll-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.gtv-blogroll-card__meta > span {
  color: var(--gtv-muted);
  font: 800 11px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gtv-blogroll-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.gtv-hub-feature-grid,
.gtv-hub-story-grid,
.gtv-paypal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 30px;
}

.gtv-hub-feature-card,
.gtv-hub-panel,
.gtv-paypal-grid article {
  padding: 24px;
  border: 1px solid rgba(0, 177, 64, .24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
    rgba(8, 12, 9, .82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.gtv-hub-feature-card span,
.gtv-paypal-grid article span {
  color: #00ff6b;
  font: 900 12px/1 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gtv-hub-feature-card h2,
.gtv-hub-panel h2,
.gtv-paypal-grid h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.gtv-hub-feature-card p,
.gtv-hub-panel p,
.gtv-paypal-grid p,
.gtv-hub-checklist li {
  color: var(--gtv-muted);
  line-height: 1.5;
}

.gtv-hub-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 18px;
  padding-top: 30px;
}

.gtv-hub-checklist {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.gtv-hub-checklist li {
  position: relative;
  padding-left: 24px;
}

.gtv-hub-checklist li::before {
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #00b140;
  box-shadow: 0 0 16px rgba(0, 177, 64, .68);
}

.gtv-hub-story-section,
.gtv-paypal-options {
  padding-top: 44px;
}

.gtv-hub-section-head {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.gtv-hub-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

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

.gtv-paypal-grid article.is-featured {
  border-color: rgba(0, 255, 107, .68);
  box-shadow: 0 28px 80px rgba(0, 177, 64, .18), 0 22px 60px rgba(0, 0, 0, .34);
}

.gtv-paypal-grid strong {
  display: block;
  margin: 12px 0 8px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -0.05em;
}

.gtv-paypal-grid a {
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  align-items: center;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b140, #00ff6b);
  color: #020402 !important;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 1040px) {
  .gtv-blogroll-featured,
  .gtv-blogroll-card,
  .gtv-blogroll-card--wide,
  .gtv-hub-split,
  .gtv-hub-hero__inner--split {
    grid-template-columns: 1fr;
  }

  .gtv-hub-feature-grid,
  .gtv-hub-story-grid,
  .gtv-paypal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gtv-blogroll-list,
  .gtv-hub-feature-grid,
  .gtv-hub-story-grid,
  .gtv-paypal-grid {
    grid-template-columns: 1fr;
  }

  .gtv-blogroll-featured__body,
  .gtv-blogroll-card__body,
  .gtv-hub-feature-card,
  .gtv-hub-panel,
  .gtv-paypal-grid article {
    padding: 20px;
  }
}
gtv-video gtv-video--hero-embed{
  padding-top: 120px;
}

/* BuddyPress register page: 2-column layout + GreenTV headings */
.gtv-register {
  padding: 44px 0 64px;
}

.gtv-register__layout {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.gtv-register__card,
.gtv-register__main #register-page {
  background: linear-gradient(180deg, rgba(10, 18, 14, .92), rgba(5, 7, 5, .96));
  border: 1px solid rgba(0, 177, 64, .35);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  padding: 22px;
}

.gtv-register__card h2,
.gtv-register__main h2.bp-heading,
.gtv-register__main .register-section > h2 {
  display: inline-block;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(26, 107, 54, .92), rgba(10, 45, 24, .92));
  border: 1px solid rgba(0, 177, 64, .35);
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gtv-register__card p,
.gtv-register__main {
  color: rgba(255,255,255,.92);
}

.gtv-register__main label,
.gtv-register__main .description {
  color: rgba(255,255,255,.86);
}

.gtv-register__main input[type="text"],
.gtv-register__main input[type="email"],
.gtv-register__main input[type="password"],
.gtv-register__main textarea,
.gtv-register__main select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 177, 64, .35);
  background: rgba(0,0,0,.35);
  color: #fff;
  padding: 12px 12px;
}

.gtv-register__main input:focus,
.gtv-register__main textarea:focus,
.gtv-register__main select:focus {
  outline: none;
  border-color: rgba(0, 255, 107, .85);
  box-shadow: 0 0 0 4px rgba(0, 255, 107, .12);
}

.gtv-register__main button,
.gtv-register__main input[type="submit"] {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 2px solid #00b140;
  background: linear-gradient(135deg, #00b140 0%, #00ff6b 100%);
  color: #000;
  cursor: pointer;
}

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

/* Tighten spacing so Profile Details sits right above interests */
.gtv-register__main .register-section.extended-profile {
  margin-bottom: 10px;
}

.gtv-register-options {
  margin-top: 10px;
}

/* Interests + Personalize blocks: white text + green highlight headings */
.gtv-register-options h3 {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 177, 64, .18);
  border: 1px solid rgba(0, 177, 64, .35);
  color: #fff !important;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gtv-register-options,
.gtv-register-options label,
.gtv-register-options span,
.gtv-register-options p {
  color: rgba(255,255,255,.92) !important;
}

.gtv-register-options p {
  opacity: 1 !important;
}

