@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&family=Syncopate:wght@400;700&family=Maven+Pro:wght@400;500;600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --line: #dce4f2;
  --ink: #0c2e66;
  --muted: #395684;
  --indigo: #1a4286;
  --indigo-dark: #0b2a62;
  --brand-favicon: url("../img/association-mark.svg");
  --pink: #ff284a;
  --pink-strong: #ff3e5d;
  --orange: #ff8828;
  --success: #16b46a;
  --danger: #d94051;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 20px rgba(18, 18, 48, 0.08);
  --shadow-md: 0 18px 44px rgba(10, 10, 34, 0.18);
  --container: min(1240px, calc(100% - 2.4rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Maven Pro", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1001;
  width: auto;
  height: auto;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--indigo-dark);
  color: #fff;
}

.site-wrap {
  overflow: clip;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 7px 20px rgba(8, 8, 28, 0.11);
}

.top-meta {
  background: #ffffff;
  color: #2b3352;
  font-size: 0.78rem;
  border-bottom: 1px solid #dde6f3;
  overflow: visible;
}

.top-meta-wrap {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  overflow: visible;
}

.meta-left,
.meta-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 40, 74, 0.16);
}

.ticker-label {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #16233f;
  font-size: 0.67rem;
}

.ticker-track {
  overflow: hidden;
  max-width: 36rem;
  white-space: nowrap;
}

.ticker-text {
  display: inline-block;
  font-size: 0.74rem;
  color: #4f5e80;
  animation: ticker-scroll 20s linear infinite;
  padding-left: 100%;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

#current-date {
  margin: 0;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  border: 1px solid #d6e1f6;
  background: rgba(255, 255, 255, 0.72);
  color: #344766;
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 0.34rem;
}

.top-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #425679;
  border: 1px solid #cfdbf1;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.top-social a:hover,
.top-social a:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(20, 31, 65, 0.58);
  background: #1c2f56;
}

.top-social a[aria-label="Instagram"]:hover,
.top-social a[aria-label="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #f58529, #dd2a7b 58%, #8134af);
  border-color: rgba(245, 133, 41, 0.76);
}

.top-social a[aria-label="Official Site"]:hover,
.top-social a[aria-label="Official Site"]:focus-visible {
  background: #0f4fa8;
  border-color: rgba(15, 79, 168, 0.82);
}

.top-social a[aria-label="LinkedIn"]:hover,
.top-social a[aria-label="LinkedIn"]:focus-visible {
  background: #0a66c2;
  border-color: rgba(10, 102, 194, 0.76);
}

.top-social a[aria-label="YouTube"]:hover,
.top-social a[aria-label="YouTube"]:focus-visible {
  background: #ff0000;
  border-color: rgba(255, 0, 0, 0.72);
}

.top-social a[aria-label="Facebook"]:hover,
.top-social a[aria-label="Facebook"]:focus-visible {
  background: #1877f2;
  border-color: rgba(24, 119, 242, 0.72);
}

.top-social a.social-link-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.top-social a.social-link-disabled:hover,
.top-social a.social-link-disabled:focus-visible {
  transform: none;
  color: #425679;
  border-color: #cfdbf1;
  background: rgba(255, 255, 255, 0.78);
}

.ticker-login {
  position: relative;
  z-index: 20;
}

.ticker-login-btn {
  border: 1px solid #cbd9f2;
  border-radius: 999px;
  min-height: 28px;
  padding: 0.26rem 0.62rem 0.26rem 0.33rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(255, 255, 255, 0.86);
  color: #193058;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ticker-login-btn:hover,
.ticker-login-btn:focus-visible {
  border-color: rgba(26, 57, 107, 0.55);
  background: #fff;
  color: #0f2243;
}

.ticker-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #64b0ff 0%, #2e64c8 100%);
  color: #fff;
  font-size: 0.54rem;
}

.ticker-login-caret {
  font-size: 0.54rem;
  transition: transform 0.2s ease;
}

.ticker-login.is-open .ticker-login-caret {
  transform: rotate(180deg);
}

.ticker-login-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 192px;
  border-radius: 12px;
  border: 1px solid #d8e1f3;
  background: #fff;
  box-shadow: 0 14px 30px rgba(7, 22, 54, 0.16);
  padding: 0.4rem;
  display: grid;
  gap: 0.14rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ticker-login.is-open .ticker-login-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ticker-login-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  border-radius: 8px;
  padding: 0.45rem 0.52rem;
  color: #20395f;
  font-size: 0.75rem;
  font-weight: 600;
}

.ticker-login-menu a i {
  width: 14px;
  text-align: center;
  color: #2f68c9;
}

.ticker-login-menu a:hover,
.ticker-login-menu a:focus-visible {
  background: #eff5ff;
  color: #13284b;
}

.meta-link {
  color: #1a3d7c;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.meta-link:hover {
  color: #0f2243;
  border-color: rgba(15, 34, 67, 0.35);
}

.mid-head {
  background: #fff;
  border-bottom: 1px solid #efeff7;
}

.mid-head-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-self: start;
}

.brand img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border: 1px solid #d8dbef;
}

.brand-text {
  display: flex;
  flex-direction: column;
  width: 13rem;
  line-height: 1;
}

.brand-text strong,
.brand-text span {
  display: block;
  width: 100%;
}

.brand-text strong {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-size: 1.03rem;
  letter-spacing: 0.18em;
  color: var(--indigo-dark);
  font-weight: 800;
}

.brand-text span {
  margin-top: 0.26rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #4f5384;
  font-weight: 800;
}

.head-nav {
  min-width: 0;
  justify-self: end;
  overflow: visible;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a,
.main-nav > li > button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--indigo-dark);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  padding: 0.95rem 0.54rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.main-nav > li > a::after,
.main-nav > li > button::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0.65rem;
  left: 0.54rem;
  background: var(--pink);
  transition: width 0.2s ease;
}

.main-nav > li:hover > a::after,
.main-nav > li:focus-within > a::after,
.main-nav > li > a[aria-current="page"]::after {
  width: calc(100% - 1.08rem);
}

.main-nav > li.current > a::after,
.main-nav > li.current > button::after {
  width: calc(100% - 1.08rem);
}

.main-nav > li:hover > a,
.main-nav > li:hover > button,
.main-nav > li:focus-within > a,
.main-nav > li:focus-within > button,
.main-nav > li > button[aria-expanded="true"] {
  color: #132a50;
}

.has-sub > a::before,
.has-sub > button::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid #6e6f93;
  border-bottom: 1.6px solid #6e6f93;
  transform: rotate(45deg) translateY(-1px);
  font-size: 0.68rem;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid #e3e8f4;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.submenu li {
  position: relative;
}

.submenu a {
  display: block;
  padding: 0.52rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 7px;
  color: #2d2e57;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.submenu button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.52rem 0.6rem;
  font: inherit;
  font-size: 0.8rem;
  border-radius: 7px;
  color: #2d2e57;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.submenu a:hover {
  background: #edf4ff;
  color: #15305a;
}

.submenu button:hover {
  background: #edf4ff;
  color: #15305a;
}

.submenu .has-sub > button::before {
  width: 6px;
  height: 6px;
  border-right: 1.6px solid #6e6f93;
  border-bottom: 1.6px solid #6e6f93;
  transform: rotate(-45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.submenu .submenu {
  top: -0.45rem;
  left: calc(100% + 0.25rem);
  border-radius: 12px;
}

.main-nav > li.mega-item > .mega-submenu {
  right: 0;
  left: auto;
  min-width: min(860px, calc(100vw - 2.2rem));
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.mega-submenu .mega-col {
  border: 1px solid #e8edf8;
  border-radius: 10px;
  background: #fbfcff;
  padding: 0.55rem;
  display: grid;
  gap: 0.14rem;
}

.mega-submenu .mega-title {
  display: block;
  margin-bottom: 0.22rem;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #143660;
  font-size: 0.78rem;
  font-weight: 800;
}

.mega-submenu .mega-col > a {
  padding: 0.45rem 0.48rem;
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2d3e61;
}

.mega-submenu .mega-col > a:hover,
.mega-submenu .mega-col > a:focus-visible {
  background: #e9f2ff;
  color: #12345f;
}

.main-nav > li:hover > .submenu,
.main-nav > li:focus-within > .submenu,
.submenu li:hover > .submenu,
.submenu li:focus-within > .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.has-sub > button[aria-expanded="true"] + .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav > li.open > .submenu,
.submenu li.open > .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav > li.nav-contact {
  margin-left: auto;
}

.main-nav > li.nav-contact > a {
  min-height: 34px;
  padding: 0.52rem 1.02rem;
  border: 1px solid #24487f;
  border-radius: 999px;
  background: linear-gradient(135deg, #17345f 0%, #265290 100%);
  color: #fff;
  letter-spacing: 0.07em;
  box-shadow: 0 8px 18px rgba(18, 45, 93, 0.2);
}

.main-nav > li.nav-contact > a::after {
  display: none;
}

.main-nav > li.nav-contact > a:hover,
.main-nav > li.nav-contact > a:focus-visible {
  color: #fff;
  border-color: #163c71;
  background: linear-gradient(135deg, #132d55 0%, #1f457e 100%);
}

.main-nav > li.open > button::before {
  transform: rotate(225deg) translateY(1px);
  border-color: #1a3e78;
}

.submenu .has-sub.open > button::before {
  transform: rotate(45deg);
  border-color: #1a3e78;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: clamp(500px, 78vh, 700px);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.6) 42%, rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 18% 20%, rgba(33, 85, 166, 0.14), transparent 35%);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-content {
  min-height: inherit;
  position: relative;
  z-index: 2;
  color: var(--indigo-dark);
  display: grid;
  align-content: end;
  padding: 4rem 0 3.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #1a417f;
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.hero-content h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 900px;
}

.hero-content p {
  margin-top: 1rem;
  max-width: 710px;
  color: rgba(11, 42, 98, 0.9);
  font-size: 1.03rem;
}

.action-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #12397a, #24539c);
  box-shadow: 0 14px 28px rgba(17, 53, 108, 0.24);
}

.btn-ghost {
  color: var(--indigo-dark);
  border-color: rgba(11, 42, 98, 0.42);
  background: rgba(255, 255, 255, 0.86);
}

.slider-controls {
  position: absolute;
  right: 2rem;
  bottom: 1.45rem;
  z-index: 10;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.slider-btn,
.slider-dot {
  border: 1px solid rgba(11, 42, 98, 0.32);
  background: rgba(255, 255, 255, 0.88);
  color: var(--indigo-dark);
  border-radius: 999px;
  cursor: pointer;
}

.slider-btn {
  width: 36px;
  height: 36px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  background: rgba(11, 42, 98, 0.34);
}

.slider-dot.active {
  width: 20px;
  background: var(--indigo-dark);
}

.ring-strip {
  height: 6px;
  display: flex;
}

.ring-strip span { flex: 1; }
.ring-strip .r1 { background: #2e2d7f; }
.ring-strip .r2 { background: #16163f; }
.ring-strip .r3 { background: #ff284a; }
.ring-strip .r4 { background: #ff8828; }
.ring-strip .r5 { background: #16b46a; }

/* Global sections */
.section {
  padding: 3.1rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--indigo-dark);
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
}

.view-btn {
  border: 1px solid #dadbee;
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--indigo-dark);
  text-transform: uppercase;
  background: #fff;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 0.95rem 0.95rem 1rem;
}

.date {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #73749b;
  font-weight: 700;
}

.card h3 {
  margin-top: 0.5rem;
  font-size: 1.04rem;
  line-height: 1.35;
  color: var(--indigo-dark);
}

.card p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.link-more {
  display: inline-flex;
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--pink);
  font-size: 0.85rem;
}

.section-tight {
  padding-top: 0.35rem;
}

.latest-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  grid-auto-rows: minmax(108px, auto);
  gap: 0.72rem;
}

.latest-news-card {
  position: relative;
  min-height: 108px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5ebf7;
  box-shadow: var(--shadow-sm);
}

.latest-news-lead {
  grid-row: span 3;
  min-height: 320px;
}

.latest-news-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.latest-news-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.36rem;
  padding: 0.66rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.9) 72%),
    linear-gradient(125deg, rgba(220, 233, 252, 0.22), rgba(255, 255, 255, 0.76));
}

.latest-news-date {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: fit-content;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 46, 96, 0.25);
  color: #1a386b;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.latest-news-card h3 {
  margin: 0;
  color: #102f62;
  font-size: 0.84rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-news-lead h3 {
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  line-height: 1.16;
  -webkit-line-clamp: 3;
}

.latest-news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  width: fit-content;
  color: #14396e;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.latest-news-date i,
.latest-news-link i,
.notice-icon i {
  display: none;
}

.latest-news-date::before,
.latest-news-link::before,
.notice-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-image: var(--brand-favicon);
  background-size: cover;
  background-position: center;
  flex: 0 0 14px;
  box-shadow: 0 0 0 1px rgba(12, 46, 102, 0.18);
}

.latest-news-card:hover .latest-news-media,
.latest-news-card:focus-within .latest-news-media {
  transform: scale(1.04);
}

.notice-widget {
  background: #fff;
  border: 1px solid #e0e7f5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 0.95rem;
}

.notice-widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.notice-widget-head h3 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  color: #152d53;
}

.notice-widget-head a {
  border: 1px solid #d4ddf0;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  font-weight: 800;
  color: #1b396b;
}

.notice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.notice-item {
  display: flex;
  gap: 0.65rem;
  border: 1px solid #e8edf8;
  border-radius: 11px;
  background: #fbfcff;
  padding: 0.66rem;
}

.notice-icon {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 66, 133, 0.12);
  color: #194285;
}

.notice-content h4 {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.34;
  color: #1f355e;
}

.notice-content h4 a {
  color: inherit;
}

.notice-meta {
  margin-top: 0.45rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.notice-meta span {
  color: #637594;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.notice-meta a {
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #1d4279;
}

.newsletter-band {
  background: #ffffff;
  color: var(--indigo-dark);
  border: 1px solid #dce5f2;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1rem;
  align-items: center;
}

.newsletter-band h3 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.2vw, 2.45rem);
  line-height: 1;
}

.newsletter-band p {
  margin-top: 0.5rem;
  color: #35507c;
}

.newsletter-form {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4d6e8;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.newsletter-form input {
  border-color: #cfdbef;
  background: #ffffff;
  color: var(--indigo-dark);
}

.newsletter-form input::placeholder {
  color: #6a7e9f;
}

.newsletter-form button {
  white-space: nowrap;
}

.schedule-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.schedule-tabs {
  display: flex;
  background: #f7f7fd;
  border-bottom: 1px solid #e7e8f2;
}

.tab-btn {
  flex: 1;
  appearance: none;
  border: 0;
  padding: 0.8rem;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5f608b;
  background: transparent;
  cursor: pointer;
}

.tab-btn.active {
  background: #fff;
  color: var(--indigo-dark);
  box-shadow: inset 0 -2px 0 var(--pink);
}

.tab-panel {
  display: none;
  padding: 1rem;
}

.tab-panel.active {
  display: block;
}

.fixture-list {
  display: grid;
  gap: 0.65rem;
}

.fixture-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid #ececf6;
  border-radius: 12px;
  padding: 0.72rem;
}

.team {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: #2f3060;
}

.team-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid #d8d9e8;
}

.score {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
  color: var(--indigo-dark);
}

.fixture-meta {
  text-align: right;
  font-size: 0.78rem;
  color: #696a8d;
  font-weight: 700;
}

.poll-wrap {
  background: linear-gradient(165deg, #fff, #f5f5fc);
  border: 1px solid #e7e8f3;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.poll-wrap h3 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-size: 1.65rem;
  color: var(--indigo-dark);
}

.poll-q {
  margin-top: 0.6rem;
  color: #3d3e68;
  font-weight: 700;
}

.poll-option {
  margin-top: 0.55rem;
}

.poll-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #4d4e74;
  margin-bottom: 0.25rem;
}

.poll-bar {
  height: 8px;
  border-radius: 999px;
  background: #ececf7;
  overflow: hidden;
}

.poll-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--pink-strong));
}

.video-card .thumb {
  position: relative;
}

.video-card .thumb::after {
  content: ">";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(11, 42, 98, 0.86);
  color: #fff;
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  margin-top: 2.6rem;
  background: #ffffff;
  color: var(--indigo-dark);
  border-top: 1px solid #dce5f2;
}

.partners-row {
  border-bottom: 1px solid #e1e8f4;
  padding: 1.1rem 0;
}

.partners-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.partners-wrap img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.1);
}

.footer-main {
  padding: 2.1rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-brand p {
  margin-top: 0.6rem;
  color: #4e678f;
  font-size: 0.9rem;
  max-width: 38ch;
}

.footer-title {
  color: var(--indigo-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.footer-list {
  display: grid;
  gap: 0.42rem;
}

.footer-list a,
.footer-list span {
  color: #4e678f;
  font-size: 0.87rem;
}

.footer-list a:hover {
  color: var(--indigo-dark);
}

.footer-bottom {
  border-top: 1px solid #e1e8f4;
  padding: 0.9rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #4e678f;
}

/* Inner pages */
.page-hero {
  background: #ffffff;
  color: var(--indigo-dark);
  border-top: 1px solid #dce5f2;
  border-bottom: 1px solid #dce5f2;
  padding: 2.8rem 0;
}

.page-hero h1 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.98;
}

.page-hero p {
  margin-top: 0.8rem;
  max-width: 70ch;
  color: #35507c;
}

.breadcrumb {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b6690;
  margin-bottom: 0.6rem;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.05rem;
}

.panel h2,
.panel h3 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  color: var(--indigo-dark);
  line-height: 1;
}

.panel h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.panel h3 {
  font-size: 1.48rem;
  margin-bottom: 0.45rem;
}

.panel p {
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  color: var(--indigo-dark);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.25rem;
  color: #616286;
  font-size: 0.85rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e6e7f2;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  text-align: left;
  padding: 0.72rem;
  border-bottom: 1px solid #ececf6;
}

th {
  background: #f8f8ff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: #525385;
}

td {
  font-size: 0.9rem;
  color: #303164;
}

.timeline {
  display: grid;
  gap: 0.65rem;
}

.timeline li {
  background: #fff;
  border: 1px solid #eaebf5;
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

.timeline strong {
  font-size: 0.83rem;
  text-transform: uppercase;
  color: #44457a;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.badge.live {
  background: rgba(255, 40, 74, 0.12);
  color: var(--pink);
}

.badge.open {
  background: rgba(22, 180, 106, 0.14);
  color: #0f8e52;
}

.badge.soon {
  background: rgba(255, 136, 40, 0.18);
  color: #9e5619;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #323363;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Utility */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }

/* Mobile */
@media (max-width: 1140px) {
  .mid-head-wrap {
    grid-template-columns: auto minmax(0, 1fr);
  }

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

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

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

  .brand-text {
    width: 11.4rem;
  }

  .main-nav > li > a,
  .main-nav > li > button {
    padding: 0.92rem 0.42rem;
    font-size: 0.67rem;
  }
}

@media (max-width: 960px) {
  .top-meta-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    padding: 0.52rem 0;
    gap: 0.52rem;
  }

  .meta-left,
  .meta-right {
    width: 100%;
  }

  .ticker-track {
    max-width: none;
    flex: 1;
  }

  .meta-right {
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 0.45rem;
  }

  .mid-head {
    position: relative;
  }

  .mid-head-wrap {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 66px;
    gap: 0.65rem;
    justify-content: start;
  }

  .head-nav {
    position: static;
    order: 2;
    grid-column: auto;
    justify-self: end;
    max-width: 100%;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: flex-end;
    max-height: none;
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding-block: 0.1rem;
  }

  .main-nav > li > a,
  .main-nav > li > button {
    width: auto;
    justify-content: flex-start;
    padding: 0.8rem 0.4rem;
    border-bottom: 0;
  }

  .main-nav > li.nav-contact > a {
    min-height: 30px;
    padding: 0.42rem 0.76rem;
  }

  .main-nav > li.mega-item > .mega-submenu {
    min-width: min(700px, calc(100vw - 1.7rem));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-news-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(162px, auto);
    gap: 0.6rem;
  }

  .latest-news-lead {
    grid-row: span 1;
    min-height: 260px;
  }

  .notice-list {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: clamp(470px, 70vh, 620px);
  }

  .hero-content {
    padding-top: 3.25rem;
  }

  .slider-controls {
    right: 1rem;
    bottom: 1rem;
  }

  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.4rem, 1240px);
  }

  .top-meta {
    font-size: 0.72rem;
  }

  .meta-right {
    justify-content: flex-end;
  }

  .top-social {
    display: none;
  }

  #current-date {
    display: none;
  }

  .ticker-login-text {
    display: none;
  }

  .ticker-login-btn {
    padding: 0.22rem 0.42rem 0.22rem 0.28rem;
    gap: 0.3rem;
  }

  .ticker-login-menu {
    right: auto;
    left: 50%;
    transform: translate(-50%, 8px);
  }

  .ticker-login.is-open .ticker-login-menu {
    transform: translate(-50%, 0);
  }

  .head-nav {
    width: 100%;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .main-nav > li.nav-contact {
    margin-left: auto;
  }

  .main-nav > li.mega-item > .mega-submenu {
    left: 0;
    right: auto;
    min-width: min(360px, calc(100vw - 1.7rem));
    grid-template-columns: 1fr;
  }

  .latest-news-card {
    min-height: 156px;
  }

  .latest-news-lead {
    min-height: 210px;
  }

  .latest-news-overlay {
    padding: 0.56rem;
    gap: 0.3rem;
  }

  .latest-news-card h3 {
    font-size: 0.8rem;
  }

  .notice-widget-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-text strong {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .brand-text span {
    font-size: 0.63rem;
    letter-spacing: 0.12em;
  }

  .brand-text {
    width: 8.8rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section {
    padding: 2.4rem 0;
  }

  .section-head {
    margin-bottom: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fixture-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .fixture-meta {
    text-align: left;
  }
}

/* Theme refresh: interactive multi-color light system */
:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-soft: #f7f9ff;
  --line: #d7e2f5;
  --line-strong: #b8c9eb;
  --ink: #0b224a;
  --muted: #49628f;
  --indigo: #2253a5;
  --indigo-dark: #0a2a62;
  --pink: #ef476f;
  --pink-strong: #d62d58;
  --orange: #f59f00;
  --teal: #0ea5b5;
  --brand-gradient: linear-gradient(135deg, #1e3a8a 0%, #2563eb 34%, #0ea5b5 70%, #ef476f 100%);
  --shadow-sm: 0 10px 28px rgba(19, 35, 70, 0.09);
  --shadow-md: 0 22px 56px rgba(15, 31, 66, 0.16);
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.09), transparent 34%),
    radial-gradient(circle at 90% 16%, rgba(14, 165, 181, 0.1), transparent 32%),
    radial-gradient(circle at 78% 88%, rgba(239, 71, 111, 0.08), transparent 28%),
    var(--bg);
  color: var(--ink);
}

a,
button,
input,
select,
textarea {
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(34, 83, 165, 0.5);
  outline-offset: 2px;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(179, 199, 234, 0.48);
  box-shadow: 0 14px 36px rgba(17, 36, 76, 0.12);
  backdrop-filter: blur(10px);
}

.top-meta {
  position: relative;
  background: linear-gradient(95deg, #ffffff 0%, #f4f8ff 44%, #eef7ff 100%);
  border-bottom: 1px solid #d9e4f6;
}

.top-meta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 85, 173, 0.42), transparent);
}

.ticker-label {
  color: #113873;
  letter-spacing: 0.13em;
}

.ticker-track {
  max-width: 40rem;
}

.ticker-text {
  color: #3f5d8f;
  font-weight: 600;
}

.live-dot {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(239, 71, 111, 0.14);
}

.top-social a {
  width: 28px;
  height: 28px;
  border: 1px solid #ccdaf2;
  background: linear-gradient(180deg, #fff 0%, #eef4ff 100%);
  color: #274475;
  box-shadow: 0 4px 12px rgba(23, 51, 98, 0.08);
}

.top-social a:hover,
.top-social a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(23, 51, 98, 0.18);
}

.ticker-login-btn {
  border-color: #c7d6f0;
  background: linear-gradient(180deg, #fff 0%, #ecf4ff 100%);
  color: #133363;
  box-shadow: 0 4px 12px rgba(20, 44, 89, 0.1);
}

.ticker-login-btn:hover,
.ticker-login-btn:focus-visible {
  border-color: #a8bee7;
  box-shadow: 0 10px 20px rgba(20, 44, 89, 0.14);
}

.ticker-avatar {
  background: var(--brand-gradient);
}

.ticker-login-menu {
  border-color: #cfddf4;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(10, 31, 68, 0.18);
  backdrop-filter: blur(8px);
}

.ticker-login-menu a {
  border: 1px solid transparent;
}

.ticker-login-menu a:hover,
.ticker-login-menu a:focus-visible {
  border-color: #d8e4f8;
  background: linear-gradient(130deg, #eef4ff, #f8fcff);
}

.mid-head {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2ebf9;
  backdrop-filter: blur(10px);
}

.brand img {
  border-color: #c7d6ef;
  box-shadow: 0 10px 20px rgba(17, 39, 85, 0.14);
}

.brand-text strong {
  color: transparent;
  background-image: linear-gradient(120deg, #0d2d66 0%, #245ac3 45%, #0c9bb7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-text span {
  color: #3f5f95;
}

.main-nav > li > a,
.main-nav > li > button {
  border-radius: 999px;
  padding: 0.68rem 0.66rem;
  color: #153769;
  letter-spacing: 0.055em;
}

.main-nav > li > a::after,
.main-nav > li > button::after {
  display: none;
}

.main-nav > li:hover > a,
.main-nav > li:hover > button,
.main-nav > li:focus-within > a,
.main-nav > li:focus-within > button,
.main-nav > li.current > a,
.main-nav > li > button[aria-expanded="true"] {
  background: linear-gradient(130deg, rgba(34, 83, 165, 0.14), rgba(14, 165, 181, 0.14));
  color: #102f5c;
}

.has-sub > a::before,
.has-sub > button::before {
  border-color: #5573a8;
}

.submenu {
  border: 1px solid #cfdef5;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(13, 34, 74, 0.18);
  backdrop-filter: blur(10px);
}

.submenu a,
.submenu button {
  border: 1px solid transparent;
  color: #1d406f;
}

.submenu a:hover,
.submenu button:hover,
.submenu a:focus-visible,
.submenu button:focus-visible {
  border-color: #d4e2f8;
  background: linear-gradient(130deg, #edf4ff, #f7fbff);
  color: #11335e;
}

.mega-submenu .mega-col {
  border-color: #d7e4f7;
  background: linear-gradient(165deg, #ffffff, #f6faff);
}

.mega-submenu .mega-title {
  color: #123a72;
}

.main-nav > li.nav-contact > a {
  border-color: transparent;
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 14px 24px rgba(22, 58, 116, 0.28);
}

.main-nav > li.nav-contact > a:hover,
.main-nav > li.nav-contact > a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(22, 58, 116, 0.35);
  filter: saturate(1.06);
}

.hero-slide::before {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 255, 0.64) 44%, rgba(239, 247, 255, 0.82)),
    linear-gradient(165deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 181, 0.11) 52%, rgba(239, 71, 111, 0.1));
}

.hero-content {
  align-content: center;
  padding: 4.3rem 0 4rem;
}

.hero-content h1 {
  color: #0a2a5d;
  text-shadow: 0 8px 24px rgba(24, 49, 90, 0.12);
}

.hero-content p {
  color: #2b4d83;
  font-size: 1.05rem;
}

.eyebrow {
  color: #114186;
}

.eyebrow::before {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.action-row {
  margin-top: 1.6rem;
}

.btn,
.view-btn,
.notice-widget-head a,
.notice-meta a {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before,
.view-btn::before,
.notice-widget-head a::before,
.notice-meta a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 40%, rgba(255, 255, 255, 0.18));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.btn:hover::before,
.view-btn:hover::before,
.notice-widget-head a:hover::before,
.notice-meta a:hover::before,
.btn:focus-visible::before,
.view-btn:focus-visible::before,
.notice-widget-head a:focus-visible::before,
.notice-meta a:focus-visible::before {
  opacity: 1;
}

.btn {
  border-width: 1px;
  box-shadow: 0 8px 18px rgba(22, 49, 95, 0.13);
}

.btn:hover,
.view-btn:hover,
.notice-widget-head a:hover,
.notice-meta a:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(20, 49, 101, 0.28);
}

.btn-ghost {
  border-color: rgba(23, 68, 132, 0.34);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(4px);
}

.slider-btn,
.slider-dot {
  border-color: rgba(23, 63, 121, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(18, 47, 96, 0.14);
}

.slider-btn:hover,
.slider-dot:hover,
.slider-btn:focus-visible,
.slider-dot:focus-visible {
  transform: translateY(-2px);
}

.slider-dot.active {
  background: linear-gradient(90deg, #224da2, #0ea5b5);
}

.section {
  position: relative;
  padding: 3rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(243, 248, 255, 0.8));
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section:nth-of-type(even)::before {
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.88), rgba(238, 246, 255, 0.7));
}

.section-head h2 {
  color: #0f2f67;
}

.view-btn {
  border-color: #c9d9f3;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  color: #173f79;
}

.card,
.notice-widget,
.schedule-wrap,
.poll-wrap,
.newsletter-band,
.panel,
.table-wrap,
.stat,
.fixture-item,
.timeline li,
.notice-item {
  background: linear-gradient(165deg, #ffffff, #f8fbff);
  border-color: #d8e4f6;
  box-shadow: var(--shadow-sm);
}

.card,
.notice-item,
.fixture-item,
.timeline li,
.panel,
.stat,
.latest-news-card,
.video-card .thumb,
.poll-wrap,
.schedule-wrap,
.notice-widget {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.card:focus-within,
.notice-item:hover,
.notice-item:focus-within,
.fixture-item:hover,
.timeline li:hover,
.panel:hover,
.stat:hover,
.latest-news-card:hover,
.video-card .thumb:hover,
.poll-wrap:hover,
.schedule-wrap:hover,
.notice-widget:hover {
  transform: translateY(-4px);
  border-color: #c4d7f4;
  box-shadow: var(--shadow-md);
}

.card h3,
.panel h2,
.panel h3,
.notice-content h4,
.poll-wrap h3 {
  color: #123669;
}

.card p,
.panel p,
.footer-brand p,
.footer-list a,
.footer-list span,
.notice-meta span {
  color: #4a6592;
}

.latest-news-card {
  border-color: #d5e2f4;
}

.latest-news-overlay {
  background:
    linear-gradient(180deg, rgba(8, 24, 53, 0.1), rgba(8, 24, 53, 0.68) 88%),
    linear-gradient(145deg, rgba(29, 78, 216, 0.18), rgba(20, 184, 166, 0.16) 45%, rgba(251, 113, 133, 0.18));
}

.latest-news-date {
  border-color: rgba(255, 255, 255, 0.34);
  color: #f6f9ff;
  background: rgba(8, 24, 53, 0.38);
}

.latest-news-card h3,
.latest-news-link {
  color: #f4f8ff;
}

.latest-news-date::before,
.latest-news-link::before,
.notice-icon::before {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.notice-widget {
  padding: 1rem;
}

.notice-widget-head h3 {
  color: #123667;
}

.notice-widget-head a {
  background: linear-gradient(125deg, #1f4fa0, #2969d8);
  border: 1px solid transparent;
  color: #fff;
}

.notice-item {
  border-color: #dce7f8;
}

.notice-icon {
  background: linear-gradient(135deg, rgba(34, 83, 165, 0.14), rgba(14, 165, 181, 0.18));
  border: 1px solid #c7d9f3;
}

.notice-meta a {
  background: linear-gradient(135deg, #1d4d9e, #235cc0);
  border: 1px solid transparent;
}

.newsletter-band {
  border-color: #cfddf3;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.92)),
    linear-gradient(170deg, rgba(29, 78, 216, 0.14), rgba(14, 165, 181, 0.13) 58%, rgba(251, 113, 133, 0.1));
}

.newsletter-band h3 {
  color: #0f3266;
}

.newsletter-band p {
  color: #3f5e8d;
}

input,
select,
textarea {
  border-color: #ccdaef;
  background: #fff;
  color: #163a6e;
}

input::placeholder,
textarea::placeholder {
  color: #6d83a7;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #7ca5e7;
  box-shadow: 0 0 0 4px rgba(34, 83, 165, 0.14);
}

.schedule-tabs {
  background: linear-gradient(180deg, #f5f9ff, #edf4ff);
  border-bottom-color: #dbe7f7;
}

.tab-btn {
  color: #5170a4;
}

.tab-btn.active {
  color: #123869;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  box-shadow: inset 0 -2px 0 #2b63c8;
}

.fixture-item {
  border-color: #dce7f8;
}

.team,
.score {
  color: #163c74;
}

.team-badge {
  border-color: #bfd1ef;
  box-shadow: 0 3px 8px rgba(20, 46, 91, 0.16);
}

.poll-wrap {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(242, 248, 255, 0.92)),
    linear-gradient(170deg, rgba(29, 78, 216, 0.11), rgba(236, 72, 153, 0.07));
}

.poll-q,
.poll-label {
  color: #395886;
}

.poll-bar {
  background: #dfe9f9;
}

.poll-bar > span {
  background: linear-gradient(90deg, #1d4fa2, #0ea5b5 58%, #ef476f);
}

.video-card .thumb::after {
  background: linear-gradient(135deg, rgba(13, 42, 94, 0.92), rgba(32, 85, 173, 0.9));
  box-shadow: 0 10px 20px rgba(11, 33, 74, 0.28);
}

.site-footer {
  background:
    linear-gradient(170deg, #f8fbff 0%, #eef5ff 52%, #e7f2ff 100%);
  border-top-color: #d2e0f5;
}

.partners-row,
.footer-bottom {
  border-color: #d6e3f6;
}

.partners-wrap img {
  filter: none;
  opacity: 0.84;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.partners-wrap img:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-title {
  color: #143a71;
}

.footer-list a:hover {
  color: #1b4f9e;
}

.page-hero {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.95)),
    linear-gradient(170deg, rgba(29, 78, 216, 0.12), rgba(14, 165, 181, 0.1));
  border-color: #d6e2f5;
}

.page-hero h1,
.breadcrumb {
  color: #123667;
}

.badge.live {
  background: rgba(239, 71, 111, 0.14);
  color: #c12f55;
}

.badge.open {
  background: rgba(14, 165, 181, 0.16);
  color: #0f7682;
}

.badge.soon {
  background: rgba(245, 159, 0, 0.19);
  color: #9f6612;
}

.table-wrap {
  border-color: #dbe6f7;
}

th {
  background: linear-gradient(180deg, #f3f8ff, #eaf2ff);
  color: #3f5e8d;
}

td {
  color: #294979;
}

label {
  color: #2f4f80;
}

.reveal-up {
  opacity: 1;
  transform: none;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 960px) {
  .top-meta {
    background: linear-gradient(160deg, #ffffff 0%, #f1f7ff 100%);
  }

  .main-nav > li > a,
  .main-nav > li > button {
    padding: 0.72rem 0.44rem;
  }

  .card:hover,
  .notice-item:hover,
  .fixture-item:hover,
  .timeline li:hover,
  .panel:hover,
  .stat:hover,
  .latest-news-card:hover,
  .poll-wrap:hover,
  .schedule-wrap:hover,
  .notice-widget:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 2.2rem 0;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .btn,
  .view-btn,
  .notice-widget-head a,
  .notice-meta a {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
}

/* Premium dark theme override */
:root {
  --bg: #06050f;
  --surface: #121024;
  --surface-soft: #1a1630;
  --line: #2e2648;
  --line-strong: #4a3a71;
  --ink: #f7f8ff;
  --muted: #a7abc2;
  --indigo: #331a4f;
  --indigo-dark: #231039;
  --pink: #bfdf20;
  --pink-strong: #ddf566;
  --orange: #7e5bc7;
  --teal: #73d7cf;
  --success: #48d38d;
  --brand-gradient: linear-gradient(135deg, #bfdf20 0%, #ddf566 100%);
  --shadow-sm: 0 14px 28px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 24px 54px rgba(0, 0, 0, 0.52);
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -10%, rgba(126, 91, 199, 0.22), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(115, 215, 207, 0.15), transparent 34%),
    radial-gradient(circle at 28% 86%, rgba(191, 223, 32, 0.1), transparent 33%),
    var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Syncopate", sans-serif;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: rgba(191, 223, 32, 0.54);
}

.site-header {
  background: rgba(7, 6, 16, 0.88);
  border-bottom: 1px solid rgba(141, 122, 190, 0.26);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.top-meta {
  background: linear-gradient(90deg, rgba(18, 15, 36, 0.95) 0%, rgba(35, 16, 57, 0.92) 100%);
  border-bottom: 1px solid #30284b;
}

.ticker-label {
  color: #e9eefb;
  font-family: "Syncopate", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.ticker-text {
  color: #bcc1da;
}

.live-dot {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(191, 223, 32, 0.16);
}

.meta-link,
#current-date {
  color: #d3daf2;
  border-color: #433768;
  background: rgba(20, 17, 34, 0.9);
}

.skip-link:focus {
  background: #bfdf20;
  color: #190f2b;
}

.top-social a {
  border-color: #413660;
  background: rgba(27, 23, 44, 0.95);
  color: #d5dcf5;
  box-shadow: none;
}

.top-social a:hover,
.top-social a:focus-visible {
  border-color: rgba(191, 223, 32, 0.8);
  background: rgba(191, 223, 32, 0.13);
  color: #f7ffcd;
}

.top-social a[aria-label="Instagram"]:hover,
.top-social a[aria-label="Instagram"]:focus-visible,
.top-social a[aria-label="Official Site"]:hover,
.top-social a[aria-label="Official Site"]:focus-visible,
.top-social a[aria-label="LinkedIn"]:hover,
.top-social a[aria-label="LinkedIn"]:focus-visible,
.top-social a[aria-label="YouTube"]:hover,
.top-social a[aria-label="YouTube"]:focus-visible,
.top-social a[aria-label="Facebook"]:hover,
.top-social a[aria-label="Facebook"]:focus-visible {
  background: rgba(191, 223, 32, 0.13);
  border-color: rgba(191, 223, 32, 0.8);
  color: #f7ffcd;
}

.top-social a.social-link-disabled,
.top-social a.social-link-disabled:hover,
.top-social a.social-link-disabled:focus-visible {
  background: rgba(27, 23, 44, 0.95);
  border-color: #413660;
  color: #9ca3c4;
}

.ticker-login-btn {
  border-color: #433767;
  background: rgba(24, 20, 38, 0.95);
  color: #e8edff;
  box-shadow: none;
}

.ticker-login-btn:hover,
.ticker-login-btn:focus-visible {
  border-color: rgba(191, 223, 32, 0.7);
  background: rgba(191, 223, 32, 0.12);
}

.ticker-avatar {
  background: linear-gradient(135deg, #5f4394 0%, #73d7cf 100%);
}

.ticker-login-menu {
  border-color: #433667;
  background: rgba(16, 13, 31, 0.98);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
}

.ticker-login-menu a {
  color: #d6ddf5;
}

.ticker-login-menu a i {
  color: #bfdf20;
}

.ticker-login-menu a:hover,
.ticker-login-menu a:focus-visible {
  background: rgba(191, 223, 32, 0.12);
  color: #f5ffd2;
}

.mid-head {
  background: rgba(9, 8, 20, 0.92);
  border-bottom: 1px solid rgba(65, 54, 101, 0.64);
}

.brand img {
  border-color: #4e4177;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.42);
}

.brand-text strong,
.brand-text span {
  font-family: "Syncopate", sans-serif;
}

.brand-text strong {
  color: #ffffff;
  background: none;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.brand-text span {
  color: #bfdf20;
  letter-spacing: 0.11em;
}

.main-nav > li > a,
.main-nav > li > button {
  font-family: "Montserrat", sans-serif;
  color: #edf1ff;
  font-size: 0.71rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.main-nav > li:hover > a,
.main-nav > li:hover > button,
.main-nav > li:focus-within > a,
.main-nav > li:focus-within > button,
.main-nav > li.current > a,
.main-nav > li > button[aria-expanded="true"] {
  color: #f2ffd4;
  background: rgba(191, 223, 32, 0.14);
}

.has-sub > a::before,
.has-sub > button::before {
  border-color: #d4dcf7;
}

.submenu {
  border-color: #4a3c70;
  background: rgba(14, 12, 28, 0.98);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.55);
}

.submenu a,
.submenu button,
.mega-submenu .mega-col > a {
  color: #d2dbf8;
}

.submenu a:hover,
.submenu button:hover,
.submenu a:focus-visible,
.submenu button:focus-visible,
.mega-submenu .mega-col > a:hover,
.mega-submenu .mega-col > a:focus-visible {
  border-color: rgba(191, 223, 32, 0.44);
  background: rgba(191, 223, 32, 0.14);
  color: #f2ffd3;
}

.mega-submenu .mega-col {
  border-color: #3a2f5b;
  background: rgba(23, 19, 39, 0.95);
}

.mega-submenu .mega-title {
  color: #bfdf20;
  font-family: "Syncopate", sans-serif;
  letter-spacing: 0.06em;
}

.main-nav > li.nav-contact > a {
  background: var(--brand-gradient);
  border: 1px solid rgba(191, 223, 32, 0.9);
  color: #1a1427;
  box-shadow: 0 14px 26px rgba(191, 223, 32, 0.24);
}

.main-nav > li.nav-contact > a:hover,
.main-nav > li.nav-contact > a:focus-visible {
  background: linear-gradient(135deg, #331a4f 0%, #2a1442 100%);
  border-color: #4b3676;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.52);
}

.home-hero {
  background: #0a0816;
}

.hero-slide::before {
  background:
    linear-gradient(112deg, rgba(6, 5, 15, 0.88), rgba(8, 7, 18, 0.52) 42%, rgba(8, 7, 18, 0.86)),
    linear-gradient(145deg, rgba(115, 215, 207, 0.08), rgba(126, 91, 199, 0.12) 46%, rgba(191, 223, 32, 0.08));
}

.eyebrow {
  font-family: "Syncopate", sans-serif;
  color: #dff4a2;
}

.eyebrow::before {
  background: var(--pink);
}

.hero-content h1 {
  font-family: "Syncopate", sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 4.4rem);
  color: #ffffff;
  text-shadow: none;
}

.hero-content p {
  color: #d2d9f0;
}

.ring-strip .r1 { background: #331a4f; }
.ring-strip .r2 { background: #28133f; }
.ring-strip .r3 { background: #bfdf20; }
.ring-strip .r4 { background: #73d7cf; }
.ring-strip .r5 { background: #7e5bc7; }

.btn,
.view-btn,
.notice-widget-head a,
.notice-meta a {
  font-family: "Syncopate", sans-serif;
  border-radius: 999px;
}

.btn-primary,
.notice-widget-head a,
.notice-meta a {
  background: var(--brand-gradient);
  border-color: rgba(191, 223, 32, 0.9);
  color: #1a1427;
}

.btn-primary:hover,
.notice-widget-head a:hover,
.notice-meta a:hover,
.btn-primary:focus-visible,
.notice-widget-head a:focus-visible,
.notice-meta a:focus-visible {
  background: #331a4f;
  border-color: #4f3b77;
  color: #ffffff;
}

.btn-ghost,
.view-btn {
  background: rgba(23, 19, 39, 0.86);
  border-color: #4b3c72;
  color: #ecf2ff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.view-btn:hover,
.view-btn:focus-visible {
  border-color: rgba(191, 223, 32, 0.72);
  color: #f6ffd8;
}

.slider-btn,
.slider-dot {
  border-color: #4e3f78;
  background: rgba(16, 13, 29, 0.86);
  color: #e5ebff;
  box-shadow: none;
}

.slider-dot.active {
  background: linear-gradient(90deg, #bfdf20, #dff56e);
}

.section::before {
  background: linear-gradient(180deg, rgba(9, 8, 19, 0.88), rgba(10, 9, 20, 0.95));
}

.section:nth-of-type(even)::before {
  background: linear-gradient(180deg, rgba(13, 11, 25, 0.94), rgba(15, 13, 28, 0.98));
}

.section-head h2,
.panel h2,
.panel h3,
.notice-widget-head h3,
.poll-wrap h3,
.newsletter-band h3 {
  font-family: "Syncopate", sans-serif;
  color: #ffffff;
}

.card,
.notice-widget,
.schedule-wrap,
.poll-wrap,
.newsletter-band,
.panel,
.table-wrap,
.stat,
.fixture-item,
.timeline li,
.notice-item {
  background: linear-gradient(165deg, rgba(21, 17, 36, 0.95), rgba(14, 12, 26, 0.95));
  border-color: #372d54;
}

.card h3,
.notice-content h4,
.team,
.score,
.page-hero h1,
.footer-title {
  color: #ffffff;
}

.card p,
.panel p,
.footer-brand p,
.footer-list a,
.footer-list span,
.notice-meta span,
.page-hero p,
.section-head p,
.newsletter-band p,
.poll-q,
.poll-label,
.fixture-meta,
.date,
td,
label {
  color: #aab0cb;
}

.latest-news-card {
  border-color: #3a3058;
}

.latest-news-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(5, 5, 9, 0.88) 80%),
    linear-gradient(145deg, rgba(51, 26, 79, 0.26), rgba(0, 0, 0, 0.16));
}

.latest-news-date,
.latest-news-card h3,
.latest-news-link {
  color: #f5f8ff;
}

.latest-news-date {
  border-color: rgba(191, 223, 32, 0.34);
  background: rgba(17, 15, 29, 0.74);
}

.notice-icon {
  border-color: #4a3c71;
  background: rgba(191, 223, 32, 0.14);
}

.newsletter-band {
  background:
    linear-gradient(145deg, rgba(22, 18, 38, 0.94), rgba(14, 12, 28, 0.94)),
    linear-gradient(165deg, rgba(51, 26, 79, 0.2), rgba(191, 223, 32, 0.1));
}

input,
select,
textarea {
  background: rgba(15, 13, 29, 0.94);
  border-color: #433666;
  color: #edf2ff;
}

input::placeholder,
textarea::placeholder {
  color: #8188aa;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(191, 223, 32, 0.68);
  box-shadow: 0 0 0 4px rgba(191, 223, 32, 0.12);
}

.schedule-tabs {
  background: rgba(16, 13, 30, 0.95);
  border-bottom-color: #372d54;
}

.tab-btn {
  color: #afb5d0;
}

.tab-btn.active {
  color: #f4ffd4;
  background: rgba(191, 223, 32, 0.12);
  box-shadow: inset 0 -2px 0 var(--pink);
}

.poll-bar {
  background: #2a2240;
}

.poll-bar > span {
  background: linear-gradient(90deg, #bfdf20, #ddf566);
}

.video-card .thumb::after {
  background: rgba(10, 8, 20, 0.86);
  border: 1px solid rgba(191, 223, 32, 0.76);
  color: #e5f7a2;
}

.page-hero {
  background:
    linear-gradient(145deg, rgba(14, 12, 28, 0.96), rgba(11, 9, 21, 0.95)),
    linear-gradient(165deg, rgba(51, 26, 79, 0.22), rgba(191, 223, 32, 0.08));
  border-color: #30284a;
}

.breadcrumb {
  color: #d9e1fb;
}

th {
  background: rgba(23, 19, 39, 0.96);
  color: #dbe3ff;
}

td {
  border-bottom-color: #342b4f;
}

.site-footer {
  background: linear-gradient(180deg, #090813 0%, #06050f 100%);
  border-top-color: #30284b;
}

.partners-row,
.footer-bottom {
  border-color: #2f2747;
}

.footer-list a:hover {
  color: #f5ffd2;
}

@media (max-width: 960px) {
  .top-meta-wrap {
    background: transparent;
  }

  .main-nav > li > a,
  .main-nav > li > button {
    font-size: 0.67rem;
  }
}

/* Editorial light theme override */
:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #f5f7fc;
  --line: #dbe3ef;
  --line-strong: #b8c8de;
  --ink: #111827;
  --muted: #4b5b73;
  --indigo: #0057ff;
  --indigo-dark: #071a36;
  --pink: #0057ff;
  --pink-strong: #0045c7;
  --orange: #f5b400;
  --teal: #00a651;
  --success: #0f9a5c;
  --brand-gradient: linear-gradient(135deg, #0057ff 0%, #0c7bff 100%);
  --shadow-sm: 0 10px 24px rgba(11, 22, 44, 0.08);
  --shadow-md: 0 20px 48px rgba(11, 22, 44, 0.14);
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 8% -6%, rgba(0, 87, 255, 0.09), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(0, 166, 81, 0.08), transparent 30%),
    var(--bg);
  color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: rgba(0, 87, 255, 0.45);
}

.skip-link:focus {
  background: #0057ff;
  color: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(188, 203, 224, 0.66);
  box-shadow: 0 14px 34px rgba(12, 24, 48, 0.1);
  backdrop-filter: blur(8px);
}

.top-meta {
  background: linear-gradient(90deg, #0a1f45 0%, #0c2d63 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ticker-label {
  color: #f8fbff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
}

.ticker-text {
  color: rgba(234, 241, 255, 0.92);
  font-size: 0.77rem;
}

.live-dot {
  background: #00a651;
  box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.2);
}

#current-date,
.meta-link {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  color: #edf3ff;
}

.top-social a {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: #eef3ff;
  box-shadow: none;
}

.top-social a:hover,
.top-social a:focus-visible {
  transform: translateY(-1px);
  color: #fff;
}

.top-social a[aria-label="Official Site"]:hover,
.top-social a[aria-label="Official Site"]:focus-visible {
  background: #0085c7;
  border-color: #0085c7;
}

.top-social a[aria-label="Instagram"]:hover,
.top-social a[aria-label="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #f58529, #dd2a7b 62%, #8134af);
  border-color: #f58529;
}

.top-social a[aria-label="YouTube"]:hover,
.top-social a[aria-label="YouTube"]:focus-visible {
  background: #df0024;
  border-color: #df0024;
}

.top-social a[aria-label="Facebook"]:hover,
.top-social a[aria-label="Facebook"]:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
}

.ticker-login-btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.ticker-login-btn:hover,
.ticker-login-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.ticker-avatar {
  background: linear-gradient(135deg, #0057ff, #0c7bff);
}

.ticker-login-menu {
  border-color: #ced9ea;
  background: #fff;
  box-shadow: 0 16px 30px rgba(12, 24, 48, 0.16);
}

.ticker-login-menu a {
  color: #1b3357;
}

.ticker-login-menu a i {
  color: #0057ff;
}

.ticker-login-menu a:hover,
.ticker-login-menu a:focus-visible {
  border-color: #d9e2ef;
  background: #f2f6fd;
}

.mid-head {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e3ebf6;
}

.brand img {
  border-color: #c9d7eb;
  box-shadow: 0 10px 20px rgba(12, 24, 48, 0.14);
}

.brand-text strong {
  font-family: "Barlow Condensed", sans-serif;
  color: #0c2248;
  background: none;
  letter-spacing: 0.11em;
}

.brand-text span {
  font-family: "Barlow Condensed", sans-serif;
  color: #0057ff;
  letter-spacing: 0.11em;
}

.main-nav > li > a,
.main-nav > li > button {
  font-family: "Montserrat", sans-serif;
  color: #122c56;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.main-nav > li:hover > a,
.main-nav > li:hover > button,
.main-nav > li:focus-within > a,
.main-nav > li:focus-within > button,
.main-nav > li.current > a,
.main-nav > li > button[aria-expanded="true"] {
  background: rgba(0, 87, 255, 0.1);
  color: #073277;
}

.has-sub > a::before,
.has-sub > button::before {
  border-color: #496da3;
}

.submenu {
  border-color: #d5e1f2;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px rgba(12, 24, 48, 0.14);
}

.submenu a,
.submenu button,
.mega-submenu .mega-col > a {
  color: #1d3d6d;
}

.submenu a:hover,
.submenu button:hover,
.submenu a:focus-visible,
.submenu button:focus-visible,
.mega-submenu .mega-col > a:hover,
.mega-submenu .mega-col > a:focus-visible {
  border-color: #d8e3f3;
  background: #edf3fc;
  color: #12335f;
}

.mega-submenu .mega-col {
  border-color: #d8e3f2;
  background: #f7faff;
}

.mega-submenu .mega-title {
  color: #0e2d59;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.07em;
}

.main-nav > li.nav-contact > a {
  background: var(--brand-gradient);
  border: 1px solid transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 87, 255, 0.26);
}

.main-nav > li.nav-contact > a:hover,
.main-nav > li.nav-contact > a:focus-visible {
  background: linear-gradient(135deg, #0b2146 0%, #12366f 100%);
  color: #fff;
}

.home-hero {
  background: #0d1f43;
}

.hero-slide::before {
  background:
    linear-gradient(110deg, rgba(8, 20, 44, 0.8), rgba(8, 20, 44, 0.42) 42%, rgba(8, 20, 44, 0.78)),
    linear-gradient(145deg, rgba(0, 87, 255, 0.14), rgba(0, 166, 81, 0.1) 56%, rgba(245, 180, 0, 0.12));
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  color: #f5f8ff;
}

.eyebrow::before {
  background: #f5b400;
}

.hero-content h1 {
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.hero-content p {
  color: #e4ebf9;
}

.btn,
.view-btn,
.notice-widget-head a,
.notice-meta a {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
}

.btn-primary,
.notice-widget-head a,
.notice-meta a {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #fff;
}

.btn-primary:hover,
.notice-widget-head a:hover,
.notice-meta a:hover,
.btn-primary:focus-visible,
.notice-widget-head a:focus-visible,
.notice-meta a:focus-visible {
  background: #0c2d63;
  color: #fff;
}

.btn-ghost,
.view-btn {
  background: rgba(255, 255, 255, 0.88);
  border-color: #c8d6ea;
  color: #0c2d63;
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.view-btn:hover,
.view-btn:focus-visible {
  border-color: #9db8df;
  color: #09214a;
}

.slider-btn,
.slider-dot {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.88);
  color: #0c2d63;
}

.slider-dot.active {
  background: #0057ff;
}

.ring-strip .r1 { background: #0085c7; }
.ring-strip .r2 { background: #f4c300; }
.ring-strip .r3 { background: #000000; }
.ring-strip .r4 { background: #009f3d; }
.ring-strip .r5 { background: #df0024; }

.section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 247, 252, 0.9));
}

.section:nth-of-type(even)::before {
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.95), rgba(241, 246, 253, 0.86));
}

.section-head h2,
.panel h2,
.panel h3,
.notice-widget-head h3,
.poll-wrap h3,
.newsletter-band h3 {
  font-family: "Barlow Condensed", sans-serif;
  color: #0d2a57;
}

.card,
.notice-widget,
.schedule-wrap,
.poll-wrap,
.newsletter-band,
.panel,
.table-wrap,
.stat,
.fixture-item,
.timeline li,
.notice-item {
  background: linear-gradient(165deg, #ffffff, #f6f9fe);
  border-color: #d9e4f2;
}

.card h3,
.notice-content h4,
.team,
.score,
.page-hero h1,
.footer-title {
  color: #122d59;
}

.card p,
.panel p,
.footer-brand p,
.footer-list a,
.footer-list span,
.notice-meta span,
.page-hero p,
.section-head p,
.newsletter-band p,
.poll-q,
.poll-label,
.fixture-meta,
.date,
td,
label {
  color: #52627b;
}

.latest-news-card {
  border-color: #d2def0;
}

.latest-news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 0.8rem;
}

.latest-news-lead {
  grid-row: span 1;
  min-height: 220px;
}

.latest-news-card {
  min-height: 220px;
}

.latest-news-card h3,
.latest-news-lead h3 {
  font-size: 0.88rem;
  line-height: 1.3;
  -webkit-line-clamp: 3;
}

.latest-news-overlay {
  background:
    linear-gradient(180deg, rgba(6, 18, 40, 0.16), rgba(6, 18, 40, 0.8) 80%),
    linear-gradient(145deg, rgba(0, 87, 255, 0.22), rgba(0, 0, 0, 0.1));
}

.latest-news-date,
.latest-news-card h3,
.latest-news-link {
  color: #f5f8ff;
}

.latest-news-date {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(10, 27, 58, 0.42);
}

.notice-icon {
  border-color: #c7d8ee;
  background: rgba(0, 87, 255, 0.1);
}

.newsletter-band {
  background:
    linear-gradient(140deg, #ffffff, #f3f8ff),
    linear-gradient(160deg, rgba(0, 87, 255, 0.1), rgba(0, 166, 81, 0.08));
}

input,
select,
textarea {
  background: #fff;
  border-color: #c9d7eb;
  color: #17345f;
}

input::placeholder,
textarea::placeholder {
  color: #7b8fae;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #7fa6df;
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.12);
}

.schedule-tabs {
  background: linear-gradient(180deg, #f3f7fe, #edf3fd);
  border-bottom-color: #dbe6f4;
}

.tab-btn {
  color: #52698e;
}

.tab-btn.active {
  color: #0f3367;
  background: #fff;
  box-shadow: inset 0 -2px 0 #0057ff;
}

.poll-bar {
  background: #dce7f6;
}

.poll-bar > span {
  background: linear-gradient(90deg, #0057ff, #0c7bff);
}

.video-card .thumb::after {
  background: rgba(7, 31, 70, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.page-hero {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 254, 0.95)),
    linear-gradient(160deg, rgba(0, 87, 255, 0.1), rgba(0, 166, 81, 0.08));
  border-color: #d5e0f0;
}

.breadcrumb {
  color: #1d3c6f;
}

th {
  background: linear-gradient(180deg, #edf3fc, #e5eefb);
  color: #486187;
}

td {
  border-bottom-color: #dde8f5;
}

.section-head.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-head.center > div {
  text-align: center;
}

.section-head.center p {
  max-width: 64ch;
  margin-inline: auto;
}

.section-soft {
  background: linear-gradient(180deg, rgba(236, 243, 253, 0.66), rgba(247, 250, 255, 0.9));
  border-top: 1px solid #dbe6f5;
  border-bottom: 1px solid #dbe6f5;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-identity-card,
.contact-form-card {
  background: linear-gradient(165deg, #ffffff, #f6f9ff);
  border: 1px solid #d9e5f4;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.contact-identity-card h3,
.contact-form-head h3 {
  margin-top: 0.2rem;
  color: #123463;
}

.contact-identity-card p,
.contact-form-head p {
  color: #536a8f;
  margin-top: 0.44rem;
}

.contact-channel-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid #d9e5f3;
  border-radius: 12px;
  padding: 0.62rem;
  background: #fff;
}

.contact-channel i {
  width: 20px;
  min-width: 20px;
  color: #0c63d6;
  margin-top: 0.1rem;
}

.contact-channel strong {
  display: block;
  font-size: 0.84rem;
  color: #133c73;
}

.contact-channel small {
  display: block;
  margin-top: 0.1rem;
  color: #607aa3;
  font-size: 0.75rem;
  line-height: 1.35;
}

.contact-panel-map {
  margin-top: 0.78rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5e2f2;
  box-shadow: 0 8px 20px rgba(10, 24, 46, 0.1);
}

.contact-panel-map iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.contact-social-wrap {
  margin-top: 0.82rem;
}

.contact-social-wrap p {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #36598f;
  font-weight: 700;
}

.social-icons.contact-social-icons {
  display: flex;
  align-items: center;
  gap: 0.34rem;
}

.social-icons.contact-social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccd9ee;
  color: #0d2f5f;
  background: #fff;
}

.contact-form-head {
  margin-bottom: 0.66rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.contact-field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.83rem;
  color: #2c4f83;
  font-weight: 700;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-check {
  margin-top: 0.82rem;
  display: flex;
  align-items: flex-start;
  gap: 0.44rem;
  color: #4e668c;
  font-size: 0.82rem;
}

.contact-check input {
  width: 16px;
  min-width: 16px;
  margin-top: 0.2rem;
}

.contact-form-actions {
  margin-top: 0.82rem;
}

.contact-form-actions .btn {
  width: 100%;
  justify-content: center;
}

.contact-flow-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-flow-stage {
  border: 1px solid #d9e5f4;
  border-top: 3px solid #0660d8;
  border-radius: 15px;
  background: #fff;
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.contact-flow-stage.stage-green {
  border-top-color: #00a651;
}

.contact-flow-stage.stage-yellow {
  border-top-color: #f5b400;
}

.contact-flow-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-flow-count {
  display: inline-block;
  margin-bottom: 0.26rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5a74a2;
  font-weight: 700;
}

.contact-flow-headline h3 {
  color: #123761;
  font-size: 1.2rem;
}

.contact-flow-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #d6e2f3;
  color: #0e63d6;
  background: #f4f8fe;
}

.contact-flow-list {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.34rem;
}

.contact-flow-list li {
  position: relative;
  padding-left: 0.84rem;
  font-size: 0.85rem;
  color: #486084;
}

.contact-flow-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e63d6;
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: translateY(-50%);
}

.contact-flow-cta {
  margin-top: 1rem;
  border: 1px solid #d9e5f4;
  border-radius: 14px;
  background: #fff;
  padding: 0.76rem 0.92rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.contact-flow-cta p {
  color: #446185;
  font-weight: 600;
  display: inline-flex;
  gap: 0.34rem;
  align-items: center;
}

.site-footer {
  margin-top: 2.5rem;
  background: linear-gradient(180deg, #071937 0%, #05142e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-grid-astra {
  padding: 2rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid-astra .footer-brand {
  align-items: center;
}

.footer-grid-astra .footer-brand img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-copy {
  margin-top: 0.72rem;
  color: rgba(228, 237, 252, 0.86);
  max-width: 34ch;
  font-size: 0.88rem;
}

.footer-heading {
  margin: 0 0 0.58rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
  color: #f3f7ff;
}

.footer-grid-astra .footer-list {
  display: grid;
  gap: 0.42rem;
}

.footer-grid-astra .footer-list a,
.footer-grid-astra .footer-list span {
  color: rgba(228, 237, 252, 0.82);
  font-size: 0.85rem;
}

.footer-grid-astra .footer-list a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.86rem 0;
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.86rem;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(228, 237, 252, 0.82);
  font-size: 0.82rem;
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

.footer-meta {
  display: contents;
}

.footer-credit-line {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #ffffff;
  white-space: nowrap;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  text-align: left;
  grid-column: 2;
  justify-self: center;
  width: auto;
  color: #b9c6d8;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.footer-credit-line .footer-credit {
  margin-left: 0.12rem;
  grid-column: auto;
  justify-self: auto;
}

.footer-credit img {
  width: 72px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-credit span {
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #ffffff;
}

.footer-bottom-social {
  display: inline-flex;
  align-items: center;
  grid-column: 3;
  justify-self: end;
  gap: 0.55rem;
  color: rgba(228, 237, 252, 0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.34rem;
}

.footer-social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #eff4ff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social-icons a:hover,
.footer-social-icons a:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.footer-social-icons a[aria-label="Instagram"]:hover,
.footer-social-icons a[aria-label="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #f58529, #dd2a7b 58%, #8134af);
  border-color: rgba(245, 133, 41, 0.72);
}

.footer-social-icons a[aria-label="Website"]:hover,
.footer-social-icons a[aria-label="Website"]:focus-visible {
  background: #0f4fa8;
  border-color: rgba(15, 79, 168, 0.78);
}

.footer-social-icons a[aria-label="YouTube"]:hover,
.footer-social-icons a[aria-label="YouTube"]:focus-visible {
  background: #ff0000;
  border-color: rgba(255, 0, 0, 0.72);
}

.footer-social-icons a[aria-label="Facebook"]:hover,
.footer-social-icons a[aria-label="Facebook"]:focus-visible {
  background: #1877f2;
  border-color: rgba(24, 119, 242, 0.72);
}

/* AstraSports color alignment */
:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --ink: #10131a;
  --muted: #5a6270;
  --line: #d7e0ed;
  --indigo: #0384c6;
  --indigo-dark: #056ba0;
  --pink: #db0032;
  --orange: #f3c000;
  --success: #07934d;
  --brand-gradient: linear-gradient(135deg, #0384c6 0%, #056ba0 100%);
  --shadow-sm: 0 8px 24px rgba(8, 18, 33, 0.08);
  --shadow-md: 0 18px 44px rgba(8, 18, 33, 0.16);
}

body {
  background: var(--bg);
  color: var(--ink);
}

.section::before {
  background: linear-gradient(180deg, #f8faff, #f0f5fd);
}

.section:nth-of-type(even)::before {
  background: linear-gradient(180deg, #f5f9ff, #ecf3fd);
}

.section-soft {
  background: linear-gradient(180deg, #f8faff, #f0f5fd);
  border-color: var(--line);
}

.top-meta {
  background: linear-gradient(90deg, #000000 0%, #141923 30%, #0a1f3e 75%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.top-meta::after {
  display: none;
}

.top-meta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
}

.meta-left {
  min-width: 0;
  width: 100%;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.meta-right {
  flex-shrink: 0;
  justify-content: flex-end;
}

.ticker-track {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  margin-left: 0.24rem;
}

.ticker-text {
  padding-left: 100%;
}

.live-dot,
.ticker-label {
  flex: 0 0 auto;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}

.ticker-label,
.ticker-text {
  color: #dce8fb;
}

.ticker-label {
  font-size: 0.76rem;
}

.live-dot {
  background: #ff214c;
  box-shadow: 0 0 0 6px rgba(255, 33, 76, 0.15);
}

#current-date,
.meta-link {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  color: #edf3ff;
}

.top-social a {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #e6eef9;
  box-shadow: none;
}

.top-social a:hover,
.top-social a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.ticker-login-btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.ticker-login-btn:hover,
.ticker-login-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.ticker-login-menu {
  border-color: #d7e0ed;
  box-shadow: 0 18px 44px rgba(8, 18, 33, 0.16);
}

.main-nav > li.nav-contact > a,
.btn-primary,
.notice-widget-head a,
.notice-meta a {
  background: #0384c6;
  border-color: #0384c6;
  color: #fff;
}

.main-nav > li.nav-contact > a:hover,
.main-nav > li.nav-contact > a:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.notice-widget-head a:hover,
.notice-widget-head a:focus-visible,
.notice-meta a:hover,
.notice-meta a:focus-visible {
  background: #056ba0;
  border-color: #056ba0;
}

.btn-ghost,
.view-btn {
  border-color: #d7e0ed;
  background: #fff;
  color: #10131a;
}

.card,
.notice-widget,
.schedule-wrap,
.poll-wrap,
.newsletter-band,
.panel,
.table-wrap,
.stat,
.fixture-item,
.timeline li,
.notice-item,
.contact-identity-card,
.contact-form-card,
.contact-channel,
.contact-flow-stage,
.contact-flow-cta {
  background: #fff;
  border-color: #d7e0ed;
  box-shadow: var(--shadow-sm);
}

.card,
.panel,
.notice-item,
.stat,
.fixture-item,
.timeline li,
.contact-channel {
  --card-accent: #0384c6;
  box-shadow: inset 0 3px 0 var(--card-accent), var(--shadow-sm);
}

.grid-2 > *:nth-child(5n + 1),
.grid-3 > *:nth-child(5n + 1),
.grid-4 > *:nth-child(5n + 1),
.notice-list > *:nth-child(5n + 1),
.stat-grid > *:nth-child(5n + 1),
.fixture-list > *:nth-child(5n + 1),
.timeline > *:nth-child(5n + 1),
.contact-channel-grid > *:nth-child(5n + 1) {
  --card-accent: #0384c6;
}

.grid-2 > *:nth-child(5n + 2),
.grid-3 > *:nth-child(5n + 2),
.grid-4 > *:nth-child(5n + 2),
.notice-list > *:nth-child(5n + 2),
.stat-grid > *:nth-child(5n + 2),
.fixture-list > *:nth-child(5n + 2),
.timeline > *:nth-child(5n + 2),
.contact-channel-grid > *:nth-child(5n + 2) {
  --card-accent: #db0032;
}

.grid-2 > *:nth-child(5n + 3),
.grid-3 > *:nth-child(5n + 3),
.grid-4 > *:nth-child(5n + 3),
.notice-list > *:nth-child(5n + 3),
.stat-grid > *:nth-child(5n + 3),
.fixture-list > *:nth-child(5n + 3),
.timeline > *:nth-child(5n + 3),
.contact-channel-grid > *:nth-child(5n + 3) {
  --card-accent: #f3c000;
}

.grid-2 > *:nth-child(5n + 4),
.grid-3 > *:nth-child(5n + 4),
.grid-4 > *:nth-child(5n + 4),
.notice-list > *:nth-child(5n + 4),
.stat-grid > *:nth-child(5n + 4),
.fixture-list > *:nth-child(5n + 4),
.timeline > *:nth-child(5n + 4),
.contact-channel-grid > *:nth-child(5n + 4) {
  --card-accent: #07934d;
}

.grid-2 > *:nth-child(5n + 5),
.grid-3 > *:nth-child(5n + 5),
.grid-4 > *:nth-child(5n + 5),
.notice-list > *:nth-child(5n + 5),
.stat-grid > *:nth-child(5n + 5),
.fixture-list > *:nth-child(5n + 5),
.timeline > *:nth-child(5n + 5),
.contact-channel-grid > *:nth-child(5n + 5) {
  --card-accent: #0a1f3e;
}

.site-footer {
  background: #080d15;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  color: #96a4b8;
}

.footer-heading {
  color: #fff;
}

.footer-grid-astra .footer-list a,
.footer-grid-astra .footer-list span {
  color: #b9c6d8;
}

.footer-grid-astra .footer-list a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner p {
  color: #95a4b8;
}

.footer-bottom-social {
  color: #a8b7cb;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(3, 132, 198, 0.88);
  background: #0384c6;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(3, 132, 198, 0.34);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.to-top::before {
  content: "Back to top";
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(9, 23, 47, 0.92);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.to-top:hover,
.to-top:focus-visible {
  color: #fff;
  background: #056ba0;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(3, 132, 198, 0.4);
}

.to-top:hover::before,
.to-top:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .top-meta-wrap {
    padding-block: 0.58rem;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .meta-left,
  .meta-right {
    width: 100%;
  }

  .meta-right {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .latest-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(200px, auto);
  }

  .latest-news-card,
  .latest-news-lead {
    min-height: 200px;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 8vw, 3.6rem);
  }

  .contact-page-grid,
  .contact-flow-shell {
    grid-template-columns: 1fr;
  }

  .contact-channel-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-flow-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid-astra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom-inner p,
  .footer-bottom-social {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }

  .footer-credit-line {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }

  .footer-credit {
    grid-column: auto;
    justify-self: center;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .top-social {
    display: flex;
  }

  .latest-news-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(180px, auto);
  }

  .latest-news-card,
  .latest-news-lead {
    min-height: 180px;
  }

  .contact-identity-card,
  .contact-form-card,
  .contact-flow-stage {
    padding: 0.82rem;
  }

  .footer-grid-astra {
    grid-template-columns: 1fr;
  }

  .footer-social-icons a {
    width: 28px;
    height: 28px;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .to-top::before {
    display: none;
  }
}

/* Inner pages: dark hero + home-style language */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 34vh, 390px);
  padding: clamp(2.8rem, 6vw, 4.6rem) 0;
  background:
    linear-gradient(112deg, rgba(5, 13, 26, 0.88), rgba(10, 31, 62, 0.8) 46%, rgba(5, 13, 26, 0.9)),
    url("https://instagram.fdel27-4.fna.fbcdn.net/v/t39.30808-6/634108962_851888491191948_9104078139335940644_n.jpg?stp=dst-jpg_e35_p1080x1080_sh0.08_tt6&_nc_ht=instagram.fdel27-4.fna.fbcdn.net&_nc_cat=100&_nc_oc=Q6cZ2QFmtJqZ-Pr-TnrenaSJ78HBKq2sIumttwnDWdT5zJuqItcL8h4YNQm8BmyUdwDschX7BAXhgkJYZzdCjkCRNL6K&_nc_ohc=M--rKJDnkccQ7kNvwGTyBuS&_nc_gid=BggaAeY-ExNZqnZrKmAoDw&edm=AOQ1c0wAAAAA&ccb=7-5&oh=00_Aft2UYF5l-miahGhFGCymTrYt-2SWbRuATfLtk3KlIM_XQ&oe=69A32978&_nc_sid=8b3546")
      center / cover no-repeat;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(3, 132, 198, 0.2), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(219, 0, 50, 0.14), transparent 30%),
    radial-gradient(circle at 60% 82%, rgba(243, 192, 0, 0.18), transparent 34%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    #0384c6 0%,
    #0384c6 25%,
    #db0032 25%,
    #db0032 50%,
    #f3c000 50%,
    #f3c000 75%,
    #07934d 75%,
    #07934d 100%
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  max-width: 18ch;
}

.page-hero p {
  color: rgba(230, 238, 249, 0.92);
  max-width: 74ch;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  width: fit-content;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #e9f2ff;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
}

.page-hero + .section {
  padding-top: 2.5rem;
}

/* Slider + video play icon prominence */
.slider-controls {
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(6, 18, 37, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.slider-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.96rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.26);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: #0384c6;
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.slider-dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  width: 24px;
  background: #0384c6;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.video-card .thumb {
  position: relative;
  overflow: hidden;
}

.video-card .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.12), rgba(3, 9, 20, 0.44));
  pointer-events: none;
}

.video-card .thumb::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: radial-gradient(circle at 30% 30%, #27b6ff 0%, #0384c6 56%, #056ba0 100%);
  color: #fff;
  font-size: 1.36rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(3, 132, 198, 0.26);
  pointer-events: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover .thumb::after,
.video-card:focus-within .thumb::after {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.38), 0 0 0 12px rgba(3, 132, 198, 0.3);
}

/* Keep IRA logo clean without any curved box styling */
.brand img,
.footer-grid-astra .footer-brand img {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 620px) {
  .page-hero {
    min-height: 220px;
    padding: 2.4rem 0 2.8rem;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .video-card .thumb::after {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(3, 132, 198, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
