:root {
  --bg: #000;
  --panel: #050505;
  --line: #242424;
  --line-soft: #1c1c1c;
  --text: #f0f0f0;
  --muted: #888;
  --dim: #5d5d5d;
  --page-max: 1600px;
}

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

html {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.90)),
    url("/bg_images/site_bg.jpg") center / cover no-repeat fixed,
    #000;
}

.page {
  width: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid #292929;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;

  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid #222;
  backdrop-filter: blur(8px);
}

.brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ddd;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #666;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}


/* HOME VIDEO */

.video-section {
  position: relative;
  width: 100%;
  height: clamp(440px, 72vh, 850px);
  background: #000;
  overflow: hidden;
}

.video-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #000;
}


/* GLOBAL LATEST REPORTING */

.latest {
  width: 100%;
  padding: 28px 22px 36px;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid #222;
}

.latest-inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header h2 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ddd;
}

.section-header a {
  font-size: 9px;
  color: #666;
  text-decoration: none;
  transition: color 0.15s ease;
}

.section-header a:hover {
  color: #fff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  min-width: 0;
  background: #050505;
  border: 1px solid #242424;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}

.article-card:hover {
  border-color: #555;
  transform: translateY(-2px);
}

.article-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
}

.article-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.article-placeholder span {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #444;
  text-align: center;
}

.article-content {
  padding: 12px 12px 14px;
}

.article-content h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text);
}

.article-subtitle {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-date {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.articles-unavailable {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid #222;
  color: #777;
  text-align: center;
  font-size: 11px;
}

.articles-unavailable a {
  color: #bbb;
}


/* ABOUT */

.about {
  width: 100%;
  padding: 70px 22px 90px;
  background: rgba(0, 0, 0, 0.88);
}

.about-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.about-label {
  margin-bottom: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #555;
}

.about h1 {
  margin: 0 0 42px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #fff;
}

.about h2 {
  margin: 65px 0 22px;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
  color: #fff;
}

.about-copy {
  font-size: 17px;
  line-height: 1.75;
  color: #b8b8b8;
}

.about-copy p {
  margin: 0 0 26px;
}

.about-copy strong {
  color: #fff;
}

.hero-line {
  margin: 48px 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.disclosure {
  margin: 55px 0;
  padding: 30px 32px;
  border: 1px solid #292929;
  background: rgba(5, 5, 5, 0.94);
}

.disclosure-label {
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #666;
}

.praise-list {
  margin-top: 55px;
  font-size: 20px;
  line-height: 1.8;
  color: #e5e5e5;
}

.shrine {
  margin-top: 65px;
  padding-top: 42px;
  border-top: 1px solid #222;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
}


/* 404 */

.not-found {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.not-found h1 {
  margin: 0 0 15px;
  font-size: 60px;
}

.not-found p {
  color: #777;
}

.not-found a {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #aaa;
  text-decoration: none;
}


/* FOOTER */

.site-footer {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(0, 0, 0, 0.96);
  border-top: 1px solid #222;
}

.site-footer a {
  font-size: 8px;
  color: #555;
  text-decoration: none;
}

.site-footer a:hover {
  color: #aaa;
}


/* TABLET */

@media (max-width: 1100px) {
  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* MOBILE */

@media (max-width: 650px) {
  .site-header {
    height: 38px;
    padding: 0 12px;
  }

  .brand {
    font-size: 9px;
  }

  .video-section {
    height: 58vh;
    min-height: 330px;
  }

  .latest {
    padding: 20px 10px 28px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-link {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .article-image {
    height: 100%;
    min-height: 120px;
    aspect-ratio: auto;
  }

  .article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
  }

  .article-content h3 {
    font-size: 13px;
  }

  .article-subtitle {
    font-size: 10px;
  }

  .about {
    padding: 48px 18px 65px;
  }

  .about h1 {
    margin-bottom: 32px;
  }

  .about-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-line {
    margin: 36px 0;
  }

  .disclosure {
    padding: 24px 20px;
  }

  .praise-list {
    font-size: 17px;
  }
}
