:root {
  --bg: #06080b;
  --bg-soft: #0c1015;
  --panel: #11161d;
  --panel-2: #171d25;
  --border: rgba(118, 255, 179, 0.12);
  --border-strong: rgba(118, 255, 179, 0.24);
  --text: #e6f5ed;
  --muted: #92a6a0;
  --green: #43ff95;
  --green-soft: rgba(67, 255, 149, 0.14);
  --green-glow: rgba(67, 255, 149, 0.28);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --radius-sm: 12px;
  --content-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(67, 255, 149, 0.08), transparent 30%),
    linear-gradient(180deg, #050607 0%, #0a0d11 45%, #11151b 100%);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: #7affb6; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(4, 6, 8, 0.82);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
}

.brand-logo img {
  max-height: 52px;
  width: auto;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-description {
  color: var(--muted);
  font-size: 0.9rem;
}

.radio-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(67,255,149,0.24), rgba(67,255,149,0.12));
  color: #d8ffe9;
  border: 1px solid rgba(67,255,149,0.28);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frequency-text {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

.site-nav {
  padding-bottom: 1rem;
}
.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}
.site-nav li {
  margin: 0;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #d9e7e0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: #07100b;
  background: var(--green);
  border-color: var(--green);
}

.hero-section {
  padding: 2rem 0 1rem;
}

.hero-grid,
.content-grid,
.feature-strip,
.footer-widgets {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: 1.55fr 1fr;
  align-items: stretch;
}

.panel {
  background: linear-gradient(180deg, rgba(18, 23, 29, 0.95), rgba(12, 16, 21, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.glow-panel {
  box-shadow: 0 0 0 1px rgba(67, 255, 149, 0.16), 0 16px 50px rgba(0, 0, 0, 0.44), 0 0 80px rgba(67, 255, 149, 0.08);
}

.eyebrow {
  display: inline-flex;
  color: #9fffc8;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-copy h1,
.archive-heading h1,
.single-panel .entry-title,
.error-panel h1 {
  margin: 0 0 0.75rem;
  line-height: 1.1;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.hero-copy p {
  max-width: 52rem;
  color: #c7d4ce;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button-primary,
.button-secondary,
.wp-block-button__link,
.search-submit,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-primary,
.search-submit,
.wp-block-button__link,
button,
input[type="submit"] {
  background: linear-gradient(180deg, #49ff9c, #23d977);
  color: #04120b;
  border: 1px solid rgba(67, 255, 149, 0.42);
  box-shadow: 0 10px 26px rgba(67, 255, 149, 0.16);
}
.button-primary:hover,
.search-submit:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  color: #04120b;
}
.button-secondary {
  color: var(--text);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}
.button-secondary:hover {
  background: var(--green-soft);
}

.hero-stats {
  display: grid;
  gap: 1rem;
  align-content: center;
}
.stat-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.stat-label,
.entry-meta,
.entry-meta a,
.pagination .nav-links,
.footer-bottom,
.comment-metadata,
.logged-in-as,
.wp-caption-text,
figcaption,
.widget li,
.post-date {
  color: var(--muted);
  font-size: 0.92rem;
}
.stat-card strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 0.3rem;
  color: var(--text);
}

.site-main {
  flex: 1;
  padding: 1rem 0 3rem;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}
.feature-card h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 0.7rem;
}
.feature-card p {
  margin: 0;
  color: #c3d0c9;
}

.content-grid {
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.8fr);
  align-items: start;
}
.no-sidebar .content-grid,
.no-sidebar .frontpage-layout .content-grid {
  grid-template-columns: 1fr;
}

.primary-content,
.sidebar-area {
  min-width: 0;
}

.section-heading h2,
.section-heading p,
.archive-heading p {
  margin: 0;
}
.section-heading h2,
.archive-heading h1 {
  margin-bottom: 0.35rem;
}
.section-heading p,
.archive-heading p {
  color: var(--muted);
}
.section-heading {
  margin-bottom: 1rem;
}

.post-feed {
  display: grid;
  gap: 1.1rem;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
}
.post-card.no-post-thumbnail {
  grid-template-columns: 1fr;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--border);
}
.post-card-content {
  display: flex;
  flex-direction: column;
}
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}
.post-card .entry-title,
.widget-title,
.comment-reply-title,
.comments-title {
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}
.entry-summary p,
.entry-content p,
.comment-content p,
.widget p,
.widget li,
.error-panel p,
.empty-state p {
  color: #c7d3cd;
}
.text-link {
  margin-top: auto;
  font-weight: 700;
}

.single-panel {
  padding: 1.5rem;
}
.featured-image-wrap {
  margin: 1.1rem 0 1.2rem;
}
.featured-image-wrap img {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content ul,
.entry-content ol,
.widget ul,
.widget ol {
  padding-left: 1.2rem;
}

.sidebar-area {
  display: grid;
  gap: 1rem;
}
.widget {
  padding: 1.2rem;
}
.widget-title {
  color: var(--text);
}
.widget ul {
  margin: 0;
}
.widget li + li {
  margin-top: 0.55rem;
}

.search-form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.search-form label { flex: 1; min-width: 220px; }
.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
}
.search-field:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(67,255,149,0.45);
  box-shadow: 0 0 0 3px rgba(67,255,149,0.12);
}

.page-links,
.nav-links,
.post-navigation {
  margin-top: 1.2rem;
}
.post-navigation .nav-links {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.post-navigation a,
.page-numbers {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.page-numbers.current,
.page-numbers:hover,
.post-navigation a:hover {
  background: var(--green-soft);
  border-color: rgba(67,255,149,0.22);
}
.post-navigation a span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}
.post-navigation a strong {
  display: block;
}

.comments-area {
  margin-top: 1.2rem;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.comment-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.comment-meta {
  margin-bottom: 0.6rem;
}

.site-footer {
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(7, 10, 13, 0.72);
}
.footer-widgets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--green); }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  width: auto;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  z-index: 100000;
}

.wp-block-cover,
.wp-block-group,
.wp-block-image img,
.wp-block-quote,
pre,
code {
  border-radius: 14px;
}
blockquote {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--green);
  background: rgba(255,255,255,0.03);
}
pre,
code {
  background: rgba(255,255,255,0.04);
}
pre {
  padding: 1rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}
th,
td {
  text-align: left;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
th {
  color: #b6ffdb;
}

@media (max-width: 1024px) {
  .hero-grid,
  .content-grid,
  .feature-strip,
  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .radio-meta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    padding-bottom: 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul,
  .footer-bottom,
  .post-navigation .nav-links {
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--content-width));
  }

  .topbar {
    min-height: 74px;
  }

  .site-title {
    font-size: 1rem;
  }

  .site-description {
    font-size: 0.82rem;
  }

  .hero-copy h1,
  .archive-heading h1,
  .single-panel .entry-title,
  .error-panel h1 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

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

  .post-thumb img {
    min-height: 180px;
  }

  .panel,
  .single-panel,
  .widget {
    padding: 1rem;
  }
}
