body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

a {
  color: #93c5fd;
  text-decoration: none;
}

.av-main {
  min-height: 60vh;
}

.av-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111827;
  border-bottom: 1px solid #1f2937;
}

.av-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  min-height: 68px;
  justify-content: space-between;
}
.av-locale-switcher {
  flex-shrink: 0;
}
.av-header .site-locale-switcher__btn {
  background: #1f2937;
  border-color: #334155;
  color: #93c5fd;
}
.av-header .site-locale-switcher__menu {
  background: #1f2937;
  border-color: #334155;
}
.av-header .site-locale-switcher__opt {
  color: #e5e7eb;
}
.av-header .site-locale-switcher__opt:hover {
  background: #273449;
}
.av-header .site-locale-switcher__opt.is-active {
  background: #1e3a5f;
  color: #93c5fd;
}

.av-brand {
  color: #fff;
  font-weight: 700;
}

.av-brand img {
  height: 34px;
}

.av-brand span {
  font-size: 18px;
  letter-spacing: 0.2px;
}

.av-nav {
  display: flex;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.av-nav a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 10px;
  line-height: 1;
  display: inline-block;
}

.av-nav a:hover {
  color: #fff;
  background: rgba(148, 163, 184, 0.08);
  text-decoration: none;
}

.av-search {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.av-search input {
  background: #0b1220;
  border: 1px solid #334155;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  width: 240px;
}

.av-search button,
.av-btn {
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
}

.av-btn-primary,
.av-search button {
  background: #2563eb;
  color: #fff;
}

.av-btn-ghost {
  background: transparent;
  color: #bfdbfe;
  border: 1px solid #3b82f6;
}

.av-search button {
  padding: 10px 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.av-hero,
.av-section {
  padding: 28px 0;
}

.av-hero h1,
.av-page-title {
  color: #fff;
  margin: 0 0 10px;
}

.av-hero p,
.av-page-intro,
.av-meta-line {
  color: #cbd5e1;
}

.av-hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.av-section-soft {
  background: #111827;
}

.av-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.av-card {
  display: block;
  overflow: hidden;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  height: 100%;
}

.av-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.av-card-body {
  padding: 10px;
}

.av-card h3 {
  font-size: 15px;
  color: #fff;
  margin: 0 0 6px;
}

.av-card p {
  color: #94a3b8;
  margin: 0;
  font-size: 12px;
}

.av-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.av-tags a {
  border: 1px solid #475569;
  color: #dbeafe;
  padding: 8px 10px;
  border-radius: 999px;
}

.av-content-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.av-content-grid article {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 16px;
}

.av-content-grid h2,
.av-content-grid h3 {
  color: #fff;
}

.av-player-wrap {
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.av-iframe {
  width: 100%;
  min-height: 620px;
}

.av-breadcrumb {
  color: #9ca3af;
  margin-bottom: 10px;
}

.av-pagination {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.av-faq details {
  border: 1px solid #334155;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 10px 12px;
  background: #1e293b;
}

.av-thumb {
  width: 100%;
  border-radius: 10px;
}

.av-footer {
  padding: 30px 0 20px;
  border-top: 1px solid #1f2937;
  background: #020617;
}

.av-footer h3 {
  color: #fff;
  font-size: 18px;
}

.av-footer p,
.av-footer li,
.av-copy {
  color: #94a3b8;
}

.av-footer a {
  color: #94a3b8;
  text-decoration: none;
}

.av-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.av-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.av-footer li {
  margin-bottom: 8px;
}

.av-copy {
  margin-top: 18px;
  border-top: 1px solid #1f2937;
  padding-top: 12px;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 991px) {
  .av-nav {
    display: none;
  }
  .av-search input {
    width: 160px;
  }
  .av-content-grid {
    grid-template-columns: 1fr;
  }
  .av-iframe {
    min-height: 480px;
  }
}

/* News list contrast fixes (shared news template fallback) */
.homeSec2 .heading1,
.homeSec2 .heading1 span {
  color: #f8fafc !important;
}

.homeSec2 .panel.panel-default {
  background: #1e293b !important;
  border: 1px solid #334155 !important;
}

.homeSec2 .panel.panel-default h3 a {
  color: #e2e8f0 !important;
}

.homeSec2 .panel.panel-default .text-muted,
.homeSec2 .text-muted {
  color: #cbd5e1 !important;
}

/* Single pages: about / contact / privacy / terms */
.av-legal-hero {
  padding-bottom: 12px;
}

.av-legal-nav {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.av-legal-nav__item {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #334155;
  color: #cbd5e1;
  background: #0b1220;
}

.av-legal-nav__item.is-active {
  color: #fff;
  border-color: #3b82f6;
  background: #1e3a8a;
}

.av-legal-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 20px;
}

.av-legal-card .gp-legal-prose {
  color: #dbeafe;
  line-height: 1.75;
}

.av-legal-card .gp-legal-prose h2,
.av-legal-card .gp-legal-prose h3,
.av-legal-card .gp-legal-prose h4 {
  color: #fff;
  margin-top: 1.2em;
}

.av-legal-card .gp-legal-prose p,
.av-legal-card .gp-legal-prose li {
  color: #d1d5db;
}

.av-legal-card .gp-legal-prose a {
  color: #93c5fd;
  text-decoration: underline;
}

.av-legal-card .gp-legal-table {
  width: 100%;
  border-collapse: collapse;
}

.av-legal-card .gp-legal-table td,
.av-legal-card .gp-legal-table th {
  border: 1px solid #475569;
  padding: 8px 10px;
}

.av-legal-card .gp-legal-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Subject page tabs */
.av-subject-nav {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.av-subject-nav__item {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #334155;
  background: #0b1220;
  color: #cbd5e1;
}

.av-subject-nav__item.is-active {
  color: #fff;
  border-color: #3b82f6;
  background: #1e3a8a;
}

/* Empty state */
.av-empty {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 18px;
  color: #d1d5db;
}

.av-empty h2 {
  color: #fff;
  margin-top: 0;
}

/* News cards + article */
.av-news-card .av-card-body h3 {
  margin: 6px 0 8px;
  font-size: 16px;
}

.av-news-card .av-card-body p {
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

.av-news-more {
  color: #bfdbfe;
  font-weight: 700;
  font-size: 13px;
}

.av-article-lead {
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 0;
}

.av-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
