:root {
  --navy: #202a3a;
  --navy2: #2b374a;
  --coral: #ff526c;
  --coral2: #ff7589;
  --paper: #f6f8fb;
  --white: #fff;
  --text: #313a49;
  --muted: #7b8492;
  --line: #e6e9ef;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Montserrat', sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

button {
  font: inherit
}

.container {
  width: min(1110px, calc(100% - 40px));
  margin: auto
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  color: #fff
}

.nav {
  height: 105px;
  display: flex;
  align-items: center
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font: 800 2.1rem var(--display);
  letter-spacing: .02em;
  text-transform: uppercase
}

.logo img {
  width: 66px;
  height: 66px;
  object-fit: contain
}

.navlinks {
  display: flex;
  gap: 42px
}

.navlinks a {
  position: relative;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase
}

.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: #fff;
  transition: .25s
}

.navlinks a:hover:after,
.navlinks a.active:after {
  right: 0
}

.menu {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.6rem
}

.hero {
  position: relative;
  height: 790px;
  overflow: hidden;
  color: #fff;
  background: #657080
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('Assets/images/Hero_section/images (2).jpg') center/cover;
  transition: background-image .6s
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 38, 55, .68), rgba(72, 81, 94, .48)), linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, .14))
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center
}

.hero-content {
  grid-column: 2;
  padding-left: 55px
}

.hero h1 {
  margin: 0 0 20px;
  font: 800 clamp(4rem, 7vw, 6.6rem)/.9 var(--display);
  letter-spacing: -.02em;
  text-transform: uppercase
}

.hero-copy {
  max-width: 520px;
  color: #f4f6f8;
  font-size: .92rem
}

.countdown {
  display: flex;
  gap: 34px;
  margin: 34px 0
}

.count-item b {
  display: block;
  font: 400 2.25rem/1 var(--body)
}

.count-item span {
  font-size: .67rem;
  text-transform: lowercase
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 28px;
  border: 0;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer
}

.btn.coral {
  background: var(--coral);
  color: #fff
}

.btn.text {
  color: #fff;
  background: transparent
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px)
}

.result-banner {
  position: relative;
  z-index: 5;
  margin-top: -112px
}

.result-card {
  height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 20px 60px rgba(29, 39, 56, .2)
}

.result-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 55px;
  color: #fff
}

.result-side:last-child {
  background: var(--coral);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%)
}

.result-side img {
  width: 100px;
  height: 100px;
  object-fit: contain
}

.result-side h3 {
  margin: 0;
  font: 700 1.55rem var(--display);
  text-transform: uppercase
}

.result-side ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: .66rem;
  color: #b9c2ce
}

.result-side:last-child ul {
  color: #ffe7eb
}

.score-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font: 800 1.3rem var(--display);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .18)
}

.section {
  padding: 105px 0
}

.section-title {
  margin: 0 0 42px;
  text-align: center;
  font: 700 2.9rem var(--display);
  text-transform: uppercase
}

.section-title:after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 13px auto 0;
  background: var(--coral)
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.news-card {
  background: #fff
}

.news-img {
  height: 220px;
  overflow: hidden
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.news-card:hover img {
  transform: scale(1.05)
}

.news-info {
  padding: 24px
}

.news-info h3 {
  margin: 0 0 16px;
  font: 700 1.45rem/1.15 var(--display);
  text-transform: uppercase
}

.author {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px
}

.author i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef1f6;
  color: var(--coral);
  font-style: normal;
  font-weight: 700
}

.author b {
  display: block;
  font-size: .7rem
}

.author span {
  color: var(--muted);
  font-size: .62rem
}

.match-table {
  background: #eef1f6
}

.match-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 30px
}

.next-match {
  padding: 38px;
  background: #fff
}

.small-title {
  margin: 0 0 28px;
  font: 700 1.65rem var(--display);
  text-transform: uppercase
}

.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px
}

.club {
  text-align: center
}

.club img {
  width: 85px;
  height: 85px;
  margin: auto;
  object-fit: contain
}

.club h3 {
  margin: 12px 0 0;
  font: 700 1rem var(--display);
  text-transform: uppercase
}

.vs {
  color: var(--coral);
  font: 800 1.3rem var(--display)
}

.league-name {
  text-align: center;
  margin: 24px 0 5px;
  font-weight: 700;
  font-size: .75rem
}

.venue {
  text-align: center;
  color: var(--muted);
  font-size: .66rem
}

.mini-count {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 28px
}

.mini-count b {
  font-size: 1.45rem
}

.mini-count span {
  display: block;
  color: var(--muted);
  font-size: .58rem
}

.standings {
  background: #fff;
  padding: 38px
}

.table {
  width: 100%;
  border-collapse: collapse
}

.table th,
.table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
  text-align: center
}

.table th {
  color: var(--muted);
  font-size: .6rem;
  text-transform: uppercase
}

.table th:nth-child(2),
.table td:nth-child(2) {
  text-align: left
}

.table .rank,
.table .pts {
  color: var(--coral);
  font-weight: 700
}

.videos-section {
  background: linear-gradient(rgba(43, 55, 74, .77), rgba(43, 55, 74, .77)), url('Assets/images/Hero_section/images (7).jpg') center/cover fixed;
  color: #fff
}

.video-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px
}

.video-card {
  position: relative;
  height: 270px;
  overflow: hidden
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.video-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 33, 47, .88), transparent 70%)
}

.video-card:hover img {
  transform: scale(1.05)
}

.video-copy {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px
}

.play {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral)
}

.video-copy h3 {
  margin: 0;
  font: 700 1.05rem var(--display);
  text-transform: uppercase
}

.teams-section {
  background: #fff
}

.teams {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.team {
  padding: 28px 18px;
  text-align: center;
  border: 1px solid var(--line);
  transition: .25s
}

.team:hover {
  transform: translateY(-6px);
  border-color: #ffd0d8;
  box-shadow: 0 15px 35px rgba(34, 45, 62, .08)
}

.team img {
  width: 100px;
  height: 100px;
  margin: auto;
  object-fit: contain
}

.team h3 {
  margin: 16px 0 4px;
  font: 700 1.05rem var(--display);
  text-transform: uppercase
}

.team p {
  margin: 0;
  color: var(--muted);
  font-size: .65rem
}

.results-section {
  background: #eef1f6
}

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.result {
  padding: 24px;
  background: #fff;
  border-bottom: 3px solid transparent
}

.result:last-child {
  border-color: var(--coral)
}

.result-tag {
  color: var(--coral);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase
}

.result-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
  font: 700 1.35rem var(--display)
}

.result-score i {
  color: #aaa;
  font-size: .65rem;
  font-style: normal
}

.result h3 {
  font: 700 1rem var(--display);
  text-transform: uppercase
}

.result p {
  color: var(--muted);
  font-size: .64rem
}

.potm {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: .63rem
}

.potm b {
  display: block;
  color: var(--coral)
}

.blog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px
}

.blog-card {
  display: grid;
  grid-template-columns: 46% 1fr;
  background: #fff;
  border: 1px solid var(--line)
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.blog-copy {
  padding: 26px
}

.date {
  color: var(--coral);
  font-size: .62rem
}

.blog-copy h3 {
  font: 700 1.35rem var(--display);
  text-transform: uppercase
}

.blog-copy p {
  color: var(--muted);
  font-size: .7rem
}

.read {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase
}

.sponsors {
  text-align: center;
  background: #fff
}

.sponsors p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--muted)
}

.sponsor-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px
}

.sponsor {
  display: grid;
  place-items: center;
  height: 90px;
  border: 1px solid var(--line);
  color: #9aa1ad;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase
}

footer {
  padding: 75px 0 25px;
  background: #263143;
  color: #b7c0cc
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px
}

.footer-grid h3 {
  color: #fff;
  font: 700 1.15rem var(--display);
  text-transform: uppercase
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  font-size: .7rem
}

.copy {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #3a4659;
  text-align: center;
  font-size: .65rem
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: .65s
}

.reveal.seen {
  opacity: 1;
  transform: none
}

@media(max-width:900px) {
  .navlinks {
    display: none;
    position: absolute;
    top: 85px;
    left: 20px;
    right: 20px;
    padding: 25px;
    background: rgba(32, 42, 58, .97);
    flex-direction: column
  }

  .navlinks.open {
    display: flex
  }

  .menu {
    display: block
  }

  .hero-inner {
    grid-template-columns: 1fr
  }

  .hero-content {
    grid-column: 1;
    width: 70%;
    margin-left: auto
  }

  .result-card {
    height: auto;
    grid-template-columns: 1fr
  }

  .result-side:last-child {
    clip-path: none
  }

  .score-badge {
    top: 50%
  }

  .news-grid,
  .video-track,
  .results {
    grid-template-columns: 1fr 1fr
  }

  .match-layout {
    grid-template-columns: 1fr
  }

  .teams {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 24px, 1110px)
  }

  .header {
    background: rgba(32, 42, 58, .5)
  }

  .nav {
    height: 82px
  }

  .logo {
    font-size: 1.5rem
  }

  .logo img {
    width: 52px;
    height: 52px
  }

  .hero {
    height: 700px
  }

  .hero:after {
    background: rgba(39, 49, 64, .58)
  }

  .hero-content {
    width: 100%;
    padding: 90px 0 0
  }

  .hero h1 {
    font-size: 4rem
  }

  .countdown {
    gap: 22px
  }

  .result-banner {
    margin-top: -55px
  }

  .result-side {
    padding: 28px 20px
  }

  .result-side img {
    width: 75px;
    height: 75px
  }

  .score-badge {
    display: none
  }

  .section {
    padding: 75px 0
  }

  .news-grid,
  .video-track,
  .teams,
  .results,
  .blog {
    grid-template-columns: 1fr
  }

  .blog-card {
    grid-template-columns: 1fr
  }

  .blog-card img {
    height: 230px
  }

  .sponsor-row,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

section#news {
  padding: 70px 0px !important;
}

section.section.match-table.reveal.seen {
  padding: 70px 0px !important;
}

section#teams {
  padding: 70px 0px !important;
}

section#videos {
  padding: 70px 0px !important;
}

section#results {
  padding: 70px 0px !important;
}

section.section.reveal.seen {
  padding: 70px 0px !important;
}

/* Wide-screen premium refinement */
:root {
  --navy: #253249;
  --navy2: #33415a;
  --coral: #ff647b;
  --coral2: #ff8798;
  --paper: #f7f9fc;
  --text: #263246;
  --muted: #778296;
  --line: #e3e8f0
}

.container {
  width: min(1500px, calc(100% - clamp(32px, 6vw, 104px)))
}

body {
  background: var(--paper);
  background-image: radial-gradient(circle at 90% 15%, rgba(255, 100, 123, .06), transparent 24%), radial-gradient(circle at 7% 42%, rgba(71, 102, 150, .06), transparent 23%)
}

.nav {
  height: 118px
}

.logo {
  font-size: 2.35rem
}

.logo img {
  width: 74px;
  height: 74px
}

.navlinks {
  gap: clamp(24px, 3vw, 54px)
}

.navlinks a {
  font-size: .75rem
}

.hero {
  height: min(900px, 96vh);
  min-height: 760px
}

.hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 50% 0 auto;
  width: 1px;
  background: rgba(255, 255, 255, .13)
}

.hero:after {
  background: linear-gradient(90deg, rgba(28, 40, 58, .58), rgba(69, 79, 94, .28)), linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, .16))
}

.hero-content {
  padding-left: clamp(40px, 6vw, 100px);
  max-width: 760px
}

.hero h1 {
  font-size: clamp(5rem, 7vw, 8.2rem);
  line-height: .84
}

.hero-copy {
  font-size: 1rem;
  max-width: 620px
}

.count-item b {
  font-size: 2.6rem
}

.btn {
  height: 62px;
  padding: 0 34px;
  border-radius: 3px;
  transition: transform .25s, box-shadow .25s
}

.btn.coral {
  box-shadow: 0 16px 38px rgba(255, 82, 108, .25)
}

.result-banner {
  width: min(1500px, calc(100% - clamp(32px, 6vw, 104px)));
  margin-top: -90px
}

.result-card {
  height: 170px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(29, 39, 56, .22)
}

.result-side {
  padding: 0px clamp(40px, 5vw, 85px)
}

.result-side img {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .18))
}

.result-side h3 {
  font-size: 1.85rem
}

.score-badge {
  width: 88px;
  height: 88px;
  font-size: 1.5rem
}

.section {
  padding: clamp(90px, 8vw, 135px) 0
}

.section-title {
  font-size: clamp(3rem, 4vw, 4.25rem);
  margin-bottom: 58px
}

.section-title:after {
  width: 54px;
  height: 4px
}

.news-grid {
  gap: 32px
}

.news-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(33, 45, 64, .07);
  transition: .3s
}

.news-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(33, 45, 64, .12)
}

.news-img {
  height: 280px
}

.news-info {
  padding: 30px
}

.news-info h3 {
  font-size: 1.7rem
}

.match-layout {
  grid-template-columns: .8fr 1.2fr;
  gap: 36px
}

.next-match,
.standings {
  padding: clamp(34px, 4vw, 58px);
  border-radius: 12px;
  box-shadow: 0 18px 55px rgba(38, 50, 70, .07)
}

.small-title {
  font-size: 2rem
}

.club img {
  width: 105px;
  height: 105px;
  filter: drop-shadow(0 10px 16px rgba(25, 35, 50, .13))
}

.table th,
.table td {
  padding: 15px 13px;
  font-size: .76rem
}

.table tbody tr {
  transition: .2s
}

.table tbody tr:hover {
  background: #f7f9fc;
  transform: translateX(3px)
}

.teams {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.team {
  padding: 38px 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 35px rgba(33, 45, 64, .05)
}

.team img {
  width: 122px;
  height: 122px
}

.team h3 {
  font-size: 1.25rem
}

.team:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 55px rgba(33, 45, 64, .11)
}

.videos-section {
  background-attachment: fixed
}

.video-track {
  gap: 30px
}

.video-card {
  height: 340px;
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(10, 20, 35, .18)
}

.video-copy {
  left: 26px;
  bottom: 24px
}

.play {
  min-width: 50px;
  height: 50px
}

.video-copy h3 {
  font-size: 1.35rem
}

.results {
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.result {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(33, 45, 64, .06);
  transition: .25s
}

.result:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(33, 45, 64, .11)
}

.result-score {
  font-size: 1.55rem
}

.result h3 {
  font-size: 1.12rem
}

.blog {
  gap: 34px
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(33, 45, 64, .07);
  transition: .3s
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(33, 45, 64, .12)
}

.blog-copy {
  padding: 36px
}

.blog-copy h3 {
  font-size: 1.65rem
}

.sponsor-row {
  gap: 22px
}

.sponsor {
  height: 112px;
  border-radius: 8px;
  background: #fff;
  transition: .25s
}

.sponsor:hover {
  border-color: #ffc1ca;
  transform: translateY(-4px)
}

footer {
  padding-top: 90px
}

.footer-grid {
  gap: 70px
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), #ff9aac);
  box-shadow: 0 0 12px rgba(255, 82, 108, .5)
}

.hero-orb {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 14%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 7s ease-in-out infinite
}

.hero-orb:before,
.hero-orb:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14)
}

.hero-orb:before {
  inset: 22px
}

.hero-orb:after {
  inset: 48px;
  background: rgba(255, 100, 123, .12);
  backdrop-filter: blur(5px)
}

@keyframes orbFloat {
  50% {
    transform: translateY(-18px) rotate(8deg)
  }
}

@media(min-width:1700px) {

  .container,
  .result-banner {
    width: min(1640px, calc(100% - 140px))
  }

  .hero-content {
    max-width: 820px
  }

  .news-img {
    height: 320px
  }

  .video-card {
    height: 380px
  }
}

@media(max-width:900px) {

  .container,
  .result-banner {
    width: min(100% - 32px, 1500px)
  }

  .hero-content {
    padding-left: 30px
  }

  .result-card {
    height: auto
  }

  .news-grid,
  .video-track,
  .results {
    grid-template-columns: 1fr 1fr
  }

  .teams {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-orb {
    display: none
  }
}

@media(max-width:600px) {

  .container,
  .result-banner {
    width: min(100% - 24px, 1500px)
  }

  .hero h1 {
    font-size: 4.4rem
  }

  .hero-content {
    padding-left: 0
  }

  .news-grid,
  .video-track,
  .teams,
  .results {
    grid-template-columns: 1fr
  }

  .news-img {
    height: 245px
  }

  .video-card {
    height: 290px
  }

  .section {
    padding: 75px 0
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-orb {
    animation: none
  }
}

/* APKL four-colour brand system */
:root {
  --brand-blue: #1148b5;
  --brand-blue-soft: #eaf1ff;
  --brand-gold: #f4ad16;
  --brand-gold-soft: #fff6dc;
  --brand-green: #079447;
  --brand-green-soft: #e9f8ef;
  --brand-red: #e42b32;
  --brand-red-soft: #fff0f1
}

.scroll-progress {
  background: linear-gradient(90deg, var(--brand-blue) 0 25%, var(--brand-gold) 25% 50%, var(--brand-green) 50% 75%, var(--brand-red) 75%)
}

.logo img {
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, .22));
  transition: transform .35s
}

.logo:hover img {
  transform: scale(1.06) rotate(-2deg)
}

.hero:after {
  background: linear-gradient(90deg, rgba(5, 30, 76, .62), rgba(17, 72, 181, .18) 48%, rgba(255, 255, 255, .12)), linear-gradient(0deg, rgba(5, 20, 49, .34), transparent 55%)
}

.hero h1 {
  text-shadow: 0 12px 35px rgba(5, 25, 62, .22)
}

.btn.coral {
  background: linear-gradient(135deg, var(--brand-red), #f04c3f);
  box-shadow: 0 16px 38px rgba(228, 43, 50, .27)
}

.navlinks a:after {
  background: var(--brand-gold)
}

.hero-orb {
  border-color: rgba(244, 173, 22, .38);
  box-shadow: 0 0 50px rgba(244, 173, 22, .12)
}

.hero-orb:before {
  border-color: rgba(7, 148, 71, .32)
}

.hero-orb:after {
  border-color: rgba(228, 43, 50, .34);
  background: rgba(17, 72, 181, .12)
}

.brand-streaks {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.brand-streaks i {
  position: absolute;
  left: -15%;
  width: 38%;
  height: 2px;
  opacity: .7;
  transform: rotate(-18deg);
  animation: streak 8s linear infinite
}

.brand-streaks i:nth-child(1) {
  top: 29%;
  background: var(--brand-gold)
}

.brand-streaks i:nth-child(2) {
  top: 36%;
  background: var(--brand-green);
  animation-delay: -2s
}

.brand-streaks i:nth-child(3) {
  top: 43%;
  background: var(--brand-red);
  animation-delay: -4s
}

.brand-streaks i:nth-child(4) {
  top: 50%;
  background: #4d79e6;
  animation-delay: -6s
}

@keyframes streak {
  0% {
    transform: translateX(-20%) rotate(-18deg);
    opacity: 0
  }

  15%,
  75% {
    opacity: .55
  }

  100% {
    transform: translateX(340%) rotate(-18deg);
    opacity: 0
  }
}

.result-card {
  background: linear-gradient(135deg, #08285f, var(--brand-blue))
}

.result-side:last-child {
  background: linear-gradient(135deg, #c51d29, var(--brand-red))
}

.score-badge {
  border: 5px solid var(--brand-gold);
  box-shadow: 0 8px 28px rgba(244, 173, 22, .3)
}

.brand-ribbon {
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line)
}

.brand-ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonMove 24s linear infinite
}

.brand-ribbon span {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 32px;
  color: #526078;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap
}

.brand-ribbon span:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot)
}

.brand-ribbon span:nth-child(4n+1) {
  --dot: var(--brand-blue)
}

.brand-ribbon span:nth-child(4n+2) {
  --dot: var(--brand-gold)
}

.brand-ribbon span:nth-child(4n+3) {
  --dot: var(--brand-green)
}

.brand-ribbon span:nth-child(4n) {
  --dot: var(--brand-red)
}

@keyframes ribbonMove {
  to {
    transform: translateX(-50%)
  }
}

#news {
  background: linear-gradient(180deg, #fff, var(--brand-blue-soft))
}

#news .section-title:after {
  background: var(--brand-blue)
}

.news-card:nth-child(1) {
  border-bottom: 4px solid var(--brand-blue)
}

.news-card:nth-child(2) {
  border-bottom: 4px solid var(--brand-gold)
}

.news-card:nth-child(3) {
  border-bottom: 4px solid var(--brand-green)
}

.author i {
  background: var(--brand-blue-soft);
  color: var(--brand-blue)
}

.news-card:nth-child(2) .author i {
  background: var(--brand-gold-soft);
  color: #a86e00
}

.news-card:nth-child(3) .author i {
  background: var(--brand-green-soft);
  color: var(--brand-green)
}

.match-table {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-gold-soft), #f8fbff 52%, var(--brand-blue-soft))
}

.match-table:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -200px;
  border: 70px solid rgba(244, 173, 22, .12);
  border-radius: 50%;
  animation: ringSpin 18s linear infinite
}

.next-match {
  border-top: 5px solid var(--brand-gold)
}

.standings {
  border-top: 5px solid var(--brand-blue)
}

.vs,
.table .rank,
.table .pts {
  color: var(--brand-blue)
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg)
  }
}

.teams-section {
  background: linear-gradient(180deg, #fff, var(--brand-green-soft))
}

.teams-section .section-title:after {
  background: var(--brand-green)
}

.team {
  position: relative;
  overflow: hidden
}

.team:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--team-accent, var(--brand-blue))
}

.team:nth-child(4n+1) {
  --team-accent: var(--brand-blue)
}

.team:nth-child(4n+2) {
  --team-accent: var(--brand-gold)
}

.team:nth-child(4n+3) {
  --team-accent: var(--brand-green)
}

.team:nth-child(4n) {
  --team-accent: var(--brand-red)
}

.team:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -55px;
  bottom: -55px;
  border: 20px solid color-mix(in srgb, var(--team-accent) 14%, transparent);
  border-radius: 50%;
  transition: .4s
}

.team:hover:after {
  transform: scale(1.35)
}

.team:hover img {
  animation: logoLift 1.15s ease-in-out infinite alternate
}

@keyframes logoLift {
  to {
    transform: translateY(-8px) scale(1.04)
  }
}

.videos-section {
  position: relative;
  background: linear-gradient(rgba(6, 39, 95, .78), rgba(6, 39, 95, .82)), url('Assets/images/Hero_section/images (7).jpg') center/cover fixed
}

.videos-section .section-title:after {
  background: var(--brand-gold)
}

.video-card:nth-child(1) {
  box-shadow: 0 22px 55px rgba(17, 72, 181, .35)
}

.video-card:nth-child(2) {
  box-shadow: 0 22px 55px rgba(7, 148, 71, .3)
}

.video-card:nth-child(3) {
  box-shadow: 0 22px 55px rgba(228, 43, 50, .3)
}

.play {
  background: var(--brand-gold);
  color: #18243a;
  box-shadow: 0 0 0 0 rgba(244, 173, 22, .5);
  animation: playPulse 2s infinite
}

@keyframes playPulse {
  60% {
    box-shadow: 0 0 0 14px rgba(244, 173, 22, 0)
  }
}

.results-section {
  background: linear-gradient(180deg, var(--brand-red-soft), #f8faff)
}

.results-section .section-title:after {
  background: var(--brand-red)
}

.result {
  border-top: 4px solid var(--result-accent, var(--brand-blue))
}

.result:nth-child(4n+1) {
  --result-accent: var(--brand-blue)
}

.result:nth-child(4n+2) {
  --result-accent: var(--brand-gold)
}

.result:nth-child(4n+3) {
  --result-accent: var(--brand-green)
}

.result:nth-child(4n) {
  --result-accent: var(--brand-red)
}

.result-tag,
.potm b {
  color: var(--result-accent)
}

.blog-card:first-child {
  border-left: 5px solid var(--brand-blue)
}

.blog-card:last-child {
  border-left: 5px solid var(--brand-green)
}

.date,
.read {
  color: var(--brand-red)
}

.sponsors {
  background: linear-gradient(135deg, var(--brand-gold-soft), #fff, var(--brand-green-soft))
}

.sponsors .section-title:after {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold), var(--brand-green), var(--brand-red))
}

.sponsor:nth-child(1) {
  border-top: 4px solid var(--brand-blue)
}

.sponsor:nth-child(2) {
  border-top: 4px solid var(--brand-gold)
}

.sponsor:nth-child(3) {
  border-top: 4px solid var(--brand-green)
}

.sponsor:nth-child(4) {
  border-top: 4px solid var(--brand-red)
}

footer {
  background: linear-gradient(135deg, #061c46, #102c5d)
}

.footer-grid h3 {
  color: var(--brand-gold)
}

.copy {
  border-image: linear-gradient(90deg, var(--brand-blue), var(--brand-gold), var(--brand-green), var(--brand-red)) 1
}

.reveal.seen .news-card,
.reveal.seen .team,
.reveal.seen .video-card,
.reveal.seen .result,
.reveal.seen .blog-card,
.reveal.seen .sponsor {
  animation: cardArrive .65s cubic-bezier(.2, .8, .2, 1) both
}

.reveal.seen :is(.news-card, .team, .video-card, .result, .blog-card, .sponsor):nth-child(2) {
  animation-delay: .08s
}

.reveal.seen :is(.news-card, .team, .video-card, .result, .blog-card, .sponsor):nth-child(3) {
  animation-delay: .16s
}

.reveal.seen :is(.news-card, .team, .video-card, .result, .blog-card, .sponsor):nth-child(4) {
  animation-delay: .24s
}

.reveal.seen :is(.team, .result):nth-child(n+5) {
  animation-delay: .3s
}

@keyframes cardArrive {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:600px) {
  .brand-streaks {
    display: none
  }

  .brand-ribbon span {
    padding: 14px 22px
  }

  .match-table:before {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

  .brand-streaks i,
  .brand-ribbon-track,
  .match-table:before,
  .play,
  .team:hover img,
  .reveal.seen .news-card,
  .reveal.seen .team,
  .reveal.seen .video-card,
  .reveal.seen .result,
  .reveal.seen .blog-card,
  .reveal.seen .sponsor {
    animation: none !important
  }
}

/* Hero and navigation readability refresh */
.header {
  top: 18px;
  padding: 0 clamp(12px, 2vw, 28px);
}

.header .nav {
  width: min(1500px, calc(100% - 24px));
  height: 96px;
  padding: 0 24px 0 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(4, 25, 65, .94), rgba(9, 48, 105, .78));
  box-shadow: 0 18px 50px rgba(2, 14, 38, .3), inset 0 1px rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.header .logo {
  gap: 15px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

.header .logo img {
  width: 96px;
  height: 96px;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 170px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-wordmark b {
  color: #fff;
  font: 800 2rem/1 var(--display);
  letter-spacing: .045em;
}

.logo-wordmark small {
  color: #ffd878;
  font: 700 1rem/1.2 var(--body);
  letter-spacing: .16em;
}

.header .navlinks a {
  padding: 12px 2px;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
  transition: color .25s, transform .25s;
}

.header .navlinks a:hover,
.header .navlinks a.active {
  color: #fff;
  transform: translateY(-1px);
}

.header .navlinks .nav-register {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 12px 18px;
  border: 1px solid rgba(255, 216, 120, .65);
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), #f2543f);
  box-shadow: 0 10px 24px rgba(228, 43, 50, .3);
  animation: registerGlow 2s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}

.header .navlinks .nav-register:after {
  display: none;
}

.header .navlinks .nav-register::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: 0;
  width: 38%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  filter: blur(.5px);
  pointer-events: none;
  animation: registerShine 2s ease-in-out infinite;
}

.header .nav-register-label {
  position: relative;
  z-index: 2;
}

.header .navlinks .nav-register:hover,
.header .navlinks .nav-register:focus-visible {
  transform: translateY(-3px) scale(1.045);
  border-color: #fff0bd;
  filter: saturate(1.12) brightness(1.06);
  box-shadow: 0 16px 34px rgba(228, 43, 50, .55), 0 0 0 4px rgba(255, 216, 120, .2);
}

.header .navlinks .nav-register:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.mobile-register {
  display: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}

@keyframes registerGlow {

  0%,
  100% {
    border-color: rgba(255, 216, 120, .68);
    box-shadow: 0 8px 22px rgba(228, 43, 50, .34), 0 0 0 0 rgba(255, 216, 120, .46);
  }

  50% {
    border-color: #ffe5a4;
    box-shadow: 0 12px 30px rgba(228, 43, 50, .52), 0 0 0 7px rgba(255, 216, 120, 0);
  }
}

@keyframes registerShine {

  0%,
  42% {
    transform: translateX(-190%) skewX(-22deg);
    opacity: 0;
  }

  48% {
    opacity: .9;
  }

  72% {
    transform: translateX(290%) skewX(-22deg);
    opacity: .2;
  }

  73%,
  100% {
    transform: translateX(290%) skewX(-22deg);
    opacity: 0;
  }
}

.mobile-register::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: 0;
  width: 38%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  filter: blur(.5px);
  pointer-events: none;
  animation: registerShine 2s ease-in-out infinite;
}

.mobile-register-label,
.mobile-register-arrow {
  position: relative;
  z-index: 2;
}

.mobile-register:hover,
.mobile-register:focus-visible {
  transform: translateY(-3px) scale(1.045);
  border-color: #fff0bd;
  filter: saturate(1.12) brightness(1.06);
  box-shadow: 0 16px 34px rgba(228, 43, 50, .55), 0 0 0 4px rgba(255, 216, 120, .2);
}

.mobile-register:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.mobile-register:active {
  transform: translateY(0) scale(.98);
}

.hero {
  height: min(900px, 96vh);
  min-height: 780px;
  isolation: isolate;
  background: #061c46;
}

.hero-bg {
  background-position: center;
  transform: scale(1.015);
  filter: saturate(.96) contrast(1.04);
}

.hero:before {
  z-index: 1;
  inset: 0;
  width: auto;
  border: 0;
  background: linear-gradient(90deg, rgba(2, 17, 49, .96) 0%, rgba(4, 29, 75, .87) 30%, rgba(5, 35, 85, .52) 55%, rgba(2, 20, 51, .18) 78%), linear-gradient(0deg, rgba(2, 15, 42, .8) 0%, transparent 48%, rgba(2, 15, 42, .5) 100%);
}

.hero:after {
  z-index: 1;
  background: radial-gradient(circle at 18% 50%, rgba(17, 72, 181, .24), transparent 34%), linear-gradient(90deg, transparent 0 52%, rgba(2, 15, 42, .08) 78%, rgba(2, 15, 42, .35));
}

.hero-inner {
  z-index: 3;
  grid-template-columns: minmax(0, 720px) 1fr;
  padding-top: 112px;
  padding-bottom: 105px;
}

.hero-content {
  grid-column: 1;
  max-width: 680px;
  padding: clamp(28px, 3vw, 42px) clamp(26px, 3.5vw, 48px);
  /* border: 1px solid rgba(255, 255, 255, .14); */
  border-left: 4px solid var(--brand-gold);
  border-radius: 0 22px 22px 0;
  /* background: linear-gradient(120deg, rgba(5, 29, 72, .78), rgba(8, 42, 91, .46)); */
  /* box-shadow: 0 28px 80px rgba(1, 12, 34, .3), inset 0 1px rgba(255, 255, 255, .08);
            -webkit-backdrop-filter: blur(9px);
            backdrop-filter: blur(9px); */
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffe09a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-kicker:before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-red));
  box-shadow: 0 0 16px rgba(244, 173, 22, .55);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 6vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.025em;
  text-wrap: balance;
  text-shadow: 0 5px 0 rgba(1, 13, 38, .2), 0 18px 44px rgba(1, 12, 34, .62);
}

.hero-copy {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: .98rem;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.trial-spotlight {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  max-width: 590px;
  margin: 24px 0 22px;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(255, 216, 120, .78);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(110deg, rgba(6, 35, 83, .92), rgba(17, 72, 181, .72));
  box-shadow: 0 16px 42px rgba(1, 13, 38, .36), 0 0 0 0 rgba(244, 173, 22, .4);
  text-decoration: none;
  animation: trialPulse 2s ease-in-out infinite;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.trial-spotlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70%;
  left: -28%;
  width: 18%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
  transform: rotate(18deg);
  animation: trialShine 2s ease-in-out infinite;
}

.trial-date {
  display: grid;
  place-content: center;
  width: 68px;
  height: 68px;
  border-radius: 11px;
  color: #09265a;
  background: linear-gradient(145deg, #ffe6a7, var(--brand-gold));
  text-align: center;
  box-shadow: 0 10px 26px rgba(244, 173, 22, .28);
}

.trial-date b {
  font: 800 2rem/.78 var(--display);
}

.trial-date small {
  margin-top: 6px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.trial-details {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.trial-details small {
  color: #ffd878;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.trial-details strong {
  font: 800 1.45rem/.95 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.trial-details span {
  color: rgba(255, 255, 255, .83);
  font-size: .7rem;
  font-weight: 600;
}

.trial-action {
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-red);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s, background .25s;
}

.trial-spotlight:hover {
  border-color: #fff0bf;
  transform: translateY(-2px);
}

.trial-spotlight:hover .trial-action {
  background: #f3483f;
  transform: translateX(3px);
}

@keyframes trialPulse {

  0%,
  100% {
    box-shadow: 0 16px 42px rgba(1, 13, 38, .36), 0 0 0 0 rgba(244, 173, 22, .34);
  }

  50% {
    box-shadow: 0 18px 48px rgba(1, 13, 38, .44), 0 0 0 7px rgba(244, 173, 22, 0);
  }
}

@keyframes trialShine {

  0%,
  35% {
    left: -28%;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  72%,
  100% {
    left: 118%;
    opacity: 0;
  }
}

.countdown {
  gap: 12px;
  margin: 28px 0 30px;
}

.count-item {
  min-width: 76px;
  padding: 10px 12px 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  background: rgba(3, 21, 55, .48);
  text-align: center;
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}

.count-item b {
  font-size: 2rem;
  font-weight: 600;
}

.count-item span {
  color: rgba(255, 255, 255, .68);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .btn {
  height: 54px;
  border-radius: 9px;
}

.hero .btn.coral {
  background: linear-gradient(135deg, var(--brand-red), #f2543f);
  box-shadow: 0 14px 32px rgba(228, 43, 50, .3);
}

.hero .btn.text {
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.hero .btn.text:hover {
  background: rgba(255, 255, 255, .14);
}

.brand-streaks {
  opacity: .32;
}

.hero-orb {
  opacity: .65;
}

.home-chairman {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 8vw, 132px) 0;
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(17, 72, 181, .36), transparent 30%), linear-gradient(125deg, #031534 0%, #08265a 57%, #071d43 100%);
}

.home-chairman:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.home-chairman:after {
  content: "APKL";
  position: absolute;
  z-index: -1;
  right: -1.5vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, .027);
  font: 800 clamp(12rem, 28vw, 34rem)/.7 var(--display);
  letter-spacing: -.05em;
}

.home-chairman-grid {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(54px, 7vw, 116px);
  align-items: center;
}

.home-chairman-portrait {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
}

.home-chairman-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255, 216, 120, .4);
  border-radius: 24px 24px 80px 24px;
  background: #0a244e;
  box-shadow: 0 36px 90px rgba(0, 7, 24, .55);
}

.home-chairman-frame:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, .055);
  border-radius: inherit;
  pointer-events: none;
}

.home-chairman-frame:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(2, 15, 42, .58));
  pointer-events: none;
}

.home-chairman-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-chairman-portrait figcaption {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 34px;
  min-width: 285px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--brand-gold, #f4ad16);
  border-radius: 8px;
  background: rgba(5, 30, 76, .9);
  box-shadow: 0 18px 45px rgba(0, 8, 28, .36);
  backdrop-filter: blur(14px);
}

.home-chairman-portrait figcaption span,
.home-chairman-signoff span {
  display: block;
  color: #ffd878;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-chairman-portrait figcaption strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font: 800 1.45rem/1 var(--display);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ambassador-Federation-role {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 216, 120, .7);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, rgba(244, 173, 22, .32), rgba(244, 173, 22, .12));
  box-shadow: 0 8px 22px rgba(244, 173, 22, .16), inset 0 1px rgba(255, 255, 255, .13);
  font-size: .63rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .065em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .26);
}

.ambassador-Federation-role::before {
  content: "★";
  flex: 0 0 auto;
  color: #ffd878;
  font-size: .78rem;
  text-shadow: 0 0 12px rgba(255, 216, 120, .5);
}

.home-chairman-copy {
  max-width: 760px;
}

.home-chairman-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd878;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-chairman-kicker:before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--brand-gold, #f4ad16), var(--brand-red, #e42b32));
}

.home-chairman-copy h2 {
  max-width: 720px;
  margin: 18px 0 28px;
  color: #fff;
  font: 800 clamp(3.7rem, 6vw, 6.8rem)/.88 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-chairman-copy p {
  max-width: 690px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
}

.home-chairman-copy .home-chairman-lead {
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
  line-height: 1.6;
}

.home-chairman-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.home-chairman-principles span {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .055);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-chairman-principles b {
  margin-right: 7px;
  color: var(--brand-gold, #f4ad16);
}

.home-chairman-signoff {
  padding-left: 18px;
  border-left: 3px solid var(--brand-gold, #f4ad16);
}

.home-chairman-signoff strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font: 700 1.15rem/1.1 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .header {
    top: 10px;
    padding: 0 4px;
  }

  .header .nav {
    width: calc(100% - 16px);
    height: 82px;
    padding: 0 16px;
  }

  .header .logo {
    gap: 10px;
  }

  .header .logo img {
    width: 62px;
    height: 62px;
  }

  .logo-wordmark {
    min-width: 138px;
  }

  .logo-wordmark b {
    font-size: 1rem;
  }

  .logo-wordmark small {
    font-size: .52rem;
    letter-spacing: .12em;
  }

  .header .navlinks {
    top: 92px;
    left: 8px;
    right: 8px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(4, 25, 65, .97);
    box-shadow: 0 22px 50px rgba(2, 14, 38, .35);
  }

  .header .navlinks .nav-register {
    display: none;
  }

  .mobile-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    margin: 0 10px 0 12px;
    padding: 0 16px;
    border: 1px solid rgba(255, 216, 120, .82);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #f2543f);
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    animation: registerGlow 2s ease-in-out infinite;
  }

  .mobile-register-arrow {
    color: #ffd878;
    font-size: .85rem;
    transition: transform .2s;
  }

  .mobile-register:hover .mobile-register-arrow {
    transform: translateX(2px);
  }

  .header .menu {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 680px) 1fr;
    padding-top: 105px;
  }

  .hero-content {
    width: min(680px, 92%);
    margin: 0;
    padding-left: 34px;
  }

  .home-chairman-grid {
    grid-template-columns: 1fr;
  }

  .home-chairman-portrait {
    width: min(82%, 560px);
    margin-inline: auto;
  }

  .home-chairman-copy {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media(max-width:600px) {
  .header .nav {
    padding: 0 10px;
  }

  .header .logo {
    gap: 7px;
    margin-right: auto;
  }

  .header .logo img {
    width: 52px;
    height: 52px;
  }

  .header .logo-wordmark {
    width: 106px;
    min-width: 106px;
  }

  .header .logo-wordmark b {
    font-size: .85rem;
    letter-spacing: .035em;
  }

  .header .logo-wordmark small {
    font-size: .42rem;
    letter-spacing: .09em;
  }

  .mobile-register {
    min-height: 40px;
    margin: 0 7px;
    padding: 0 11px;
    border-radius: 8px;
    font-size: .54rem;
  }

  .header .menu {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero:before {
    background: linear-gradient(90deg, rgba(2, 17, 49, .92), rgba(3, 24, 61, .66)), linear-gradient(0deg, rgba(2, 15, 42, .86), rgba(2, 15, 42, .25) 72%, rgba(2, 15, 42, .62));
  }

  .hero-inner {
    display: flex;
    align-items: center;
    padding-top: 118px;
    padding-bottom: 120px;
  }

  .hero-content {
    width: 100%;
    padding: 26px 22px;
    border-left-width: 3px;
    border-radius: 0 16px 16px 0;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.5rem);
  }

  .hero-copy {
    font-size: .86rem;
    line-height: 1.65;
  }

  .trial-spotlight {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 11px;
    margin: 18px 0;
    padding: 9px;
  }

  .trial-date {
    width: 56px;
    height: 56px;
  }

  .trial-date b {
    font-size: 1.65rem;
  }

  .trial-details strong {
    font-size: 1.15rem;
  }

  .trial-details span {
    font-size: .61rem;
  }

  .trial-action {
    display: none;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .count-item {
    min-width: 0;
    padding: 9px 4px 8px;
  }

  .count-item b {
    font-size: 1.45rem;
  }

  .hero .btn {
    padding: 0 18px;
  }

  .hero .btn.text {
    margin-left: 2px;
  }

  .home-chairman {
    padding: 64px 0 72px;
  }

  .home-chairman-grid {
    gap: 54px;
  }

  .home-chairman-portrait {
    width: 100%;
  }

  .home-chairman-frame {
    border-radius: 18px 18px 48px 18px;
  }

  .home-chairman-portrait figcaption {
    right: 12px;
    bottom: 14px;
    min-width: 205px;
    padding: 15px 18px;
  }

  .home-chairman-copy h2 {
    font-size: 3.6rem;
  }

  .home-chairman-principles {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-chairman-principles span {
    padding: 13px 14px;
  }
}

@media(prefers-reduced-motion:reduce) {

  .mobile-register,
  .header .navlinks .nav-register {
    animation: none;
  }

  .mobile-register::before {
    animation: none;
    display: none;
  }

  .header .navlinks .nav-register::before {
    animation: none;
    display: none;
  }

  .trial-spotlight {
    animation: none;
  }

  .trial-spotlight::before {
    animation: none;
    display: none;
  }
}

/* ==========================
   Registration Success Page
========================== */

.registration-success-section {
  min-height: 100vh;
  padding: 80px 15px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  display: flex;
  align-items: center;
}

.registration-success-card {
  max-width: 750px;
  margin: auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(231, 47, 72, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: .3s ease;
}

.registration-success-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.success-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #25c16f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 193, 111, .35);
  animation: pop .5s ease;
}

.registration-success-card h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.success-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

.success-text strong {
  color: #e72f48;
}

.registration-number-box {
  background: linear-gradient(135deg, #e72f48, #cf1735);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 35px;
  box-shadow: 0 15px 35px rgba(231, 47, 72, .25);
}

.registration-number-box small {
  display: block;
  opacity: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.registration-number-box h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 3px;
}

.details-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid #ececec;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item span {
  color: #666;
  font-weight: 500;
}

.detail-item span i {
  color: #e72f48;
  margin-right: 8px;
}

.detail-item strong {
  color: #222;
  font-weight: 600;
}

.status-success {
  color: #25c16f !important;
}

.info-box {
  background: #fff5f6;
  border: 1px solid rgba(231, 47, 72, .18);
  border-radius: 16px;
  padding: 18px 22px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.info-box i {
  color: #e72f48;
  margin-right: 8px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-home,
.btn-print {
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-home {
  background: #e72f48;
  color: #fff;
}

.btn-home:hover {
  background: #c81d39;
  color: #fff;
  transform: translateY(-2px);
}

.btn-print {
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
}

.btn-print:hover {
  background: #f5f5f5;
  color: #111;
  transform: translateY(-2px);
}

@keyframes pop {
  from {
    transform: scale(.4);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width:768px) {

  .registration-success-card {
    padding: 35px 22px;
  }

  .registration-success-card h2 {
    font-size: 28px;
  }

  .registration-number-box h3 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .detail-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .button-group {
    flex-direction: column;
  }

  .btn-home,
  .btn-print {
    width: 100%;
    justify-content: center;
  }
}


.alert {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}