﻿    :root {
      --navy: #0A1D56;
      --navy2: #0d245f;
      --gold: #E6C200;
      --gold2: #f0d000;
      --white: #FFFFFF;
      --off: #F5F6FA;
      --light: #EAECF4;
      --muted: #7A80A0;
      --text: #111827;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Cabin', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0
    }

    .live-bar {
      background: var(--gold);
      overflow: hidden;
      height: 36px;
      display: flex;
      align-items: center
    }

    .live-tag {
      background: var(--navy);
      color: var(--gold);
      font-family: 'Teko', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      padding: 0 24px 0 18px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%)
    }

    .live-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 1.2s infinite
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    .live-track {
      overflow: hidden;
      flex: 1
    }

    .live-items {
      display: flex;
      animation: liveScroll 28s linear infinite;
      width: max-content
    }

    @keyframes liveScroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .live-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 28px;
      border-right: 1px solid rgba(10, 29, 86, 0.2);
      white-space: nowrap;
      font-family: 'Cabin Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy)
    }

    .live-item-bullet {
      font-size: 16px;
      color: var(--navy);
      opacity: 0.4
    }

    .nav {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 999
    }

    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      min-height: 62px;
      display: flex;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 0;
      position: relative
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      margin-right: 48px;
      flex-shrink: 0;
      align-self: center
    }

    .nav-toggle {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0
    }

    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      cursor: pointer;
      flex-shrink: 0;
      align-self: center;
      border-radius: 4px;
      border: 1px solid rgba(230, 194, 0, 0.35);
      background: rgba(10, 29, 86, 0.35);
      margin-left: auto
    }

    .nav-burger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 1px
    }

    .nav-menu {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      flex: 1;
      min-width: 0;
      min-height: 62px
    }

    .nav-menu .nav-links {
      flex: 1
    }

    .nav-menu .nav-end {
      margin-left: auto
    }

    .nav-logo-wrap {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      line-height: 0
    }

    .nav-logo-img {
      height: 46px;
      width: auto;
      max-width: min(160px, 38vw);
      object-fit: contain;
      display: block
    }

    .nav-brand-name {
      font-family: 'Teko', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 1px;
      line-height: 1;
      display: block
    }

    .nav-brand-sub {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-top: 1px
    }

    .nav-links {
      display: flex;
      align-items: stretch;
      list-style: none
    }

    .nav-links li {
      display: flex;
      align-items: stretch
    }

    .nav-links a {
      font-family: 'Cabin Condensed', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      padding: 0 14px;
      display: flex;
      align-items: center;
      border-bottom: 3px solid transparent;
      transition: all 0.18s
    }

    .nav-links a:hover {
      color: var(--white);
      border-bottom-color: var(--gold)
    }

    .nav-links a.active {
      color: var(--gold);
      border-bottom-color: var(--gold)
    }

    .nav-end {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .btn-nav {
      font-family: 'Cabin Condensed', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 9px 20px;
      border-radius: 3px;
      text-decoration: none;
      border: none;
      transition: all 0.18s
    }

    .btn-nav-ghost {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid rgba(230, 194, 0, 0.4)
    }

    .btn-nav-ghost:hover {
      border-color: var(--gold);
      background: rgba(230, 194, 0, 0.08)
    }

    .btn-nav-solid {
      background: var(--gold);
      color: var(--navy)
    }

    .btn-nav-solid:hover {
      background: var(--gold2)
    }

    .wrap {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px
    }
    footer {
      background: var(--off);
      border-top: 3px solid var(--gold)
    }

    .foot-top {
      max-width: 1440px;
      margin: 0 auto;
      padding: 44px 40px 0;
      display: grid;
      grid-template-columns: 240px 1fr 1fr 260px;
      gap: 48px
    }

    .foot-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px
    }

    .foot-logo-img {
      height: 44px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      display: block
    }

    .foot-bname {
      font-family: 'Teko', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--navy)
    }

    .foot-bsub {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted)
    }

    .foot-about {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 16px
    }

    .foot-socials {
      display: flex;
      gap: 10px
    }

    .foot-soc {
      width: 36px;
      height: 36px;
      background: var(--navy);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      transition: background 0.18s
    }

    .foot-soc:hover {
      background: var(--navy2)
    }

    .foot-soc svg {
      width: 16px;
      height: 16px
    }

    .foot-col-h {
      font-family: 'Cabin Condensed', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 16px
    }

    .foot-links {
      list-style: none
    }

    .foot-links li {
      margin-bottom: 8px
    }

    .foot-links a {
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.18s
    }

    .foot-links a:hover {
      color: var(--navy)
    }

    .foot-contact {
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .fci {
      display: flex;
      gap: 10px
    }

    .fci-icon {
      width: 30px;
      height: 30px;
      background: var(--navy);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .fci-icon svg {
      width: 13px;
      height: 13px;
      color: var(--gold)
    }

    .fci-l {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2px
    }

    .fci-v {
      font-size: 12px;
      font-weight: 700;
      color: var(--text)
    }

    .foot-bottom {
      max-width: 1440px;
      margin: 0 auto;
      padding: 18px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
      border-top: 1px solid var(--light)
    }

    .foot-copy {
      font-size: 11px;
      color: var(--muted)
    }

    .foot-legal {
      display: flex;
      gap: 18px
    }

    .foot-legal a {
      font-size: 11px;
      color: var(--muted);
      text-decoration: none
    }

    .foot-legal a:hover {
      color: var(--navy)
    }

    @media (max-width: 1024px) {
      .wrap {
        padding-left: 24px;
        padding-right: 24px
      }

      .nav-inner {
        padding: 0 24px;
        flex-wrap: wrap;
        align-items: center
      }

      .nav-brand {
        margin-right: 12px;
        flex: 1 1 auto;
        min-width: 0
      }

      .nav-burger {
        display: flex
      }

      .nav-menu {
        order: 4;
        flex: 1 1 100%;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.2s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 8px
      }

      .nav-toggle:checked~.nav-menu {
        max-height: min(88vh, 620px);
        opacity: 1;
        overflow-y: auto
      }

      .nav-menu .nav-links {
        flex: none;
        flex-direction: column;
        width: 100%
      }

      .nav-menu .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07)
      }

      .nav-menu .nav-links a {
        padding: 14px 4px;
        border-bottom: none
      }

      .nav-menu .nav-end {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding: 14px 0 8px;
        gap: 10px;
        align-items: stretch
      }

      .nav-menu .btn-nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center
      }

      .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 24px 0
      }

      .foot-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
      }

      .nw-split {
        grid-template-columns: 1fr
      }

      .nw-trend-grid,
      .nw-vid-grid,
      .nw-archive-grid {
        grid-template-columns: 1fr 1fr
      }

      .nw-newsletter-inner {
        grid-template-columns: 1fr
      }
    }

    @media (max-width: 768px) {
      .foot-top {
        grid-template-columns: 1fr
      }

      .nw-item {
        grid-template-columns: 88px 1fr
      }

      .nw-item-thumb {
        height: 72px
      }

      .nw-trend-grid,
      .nw-vid-grid,
      .nw-archive-grid {
        grid-template-columns: 1fr
      }

      .nw-toolbar {
        flex-direction: column;
        align-items: stretch
      }

      .nw-filters {
        justify-content: flex-start
      }
    }

    @media (max-width: 480px) {
      .nav-inner {
        padding: 0 16px
      }
    }
