* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: #102542;
  background: #f5f7fb;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: #0c1f45;
  color: #c7d4ff;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.social-mini a {
  color: #dbe5ff;
  margin-left: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 27, 73, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(16, 37, 66, 0.14);
}
.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  min-width: 0;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-copy strong {
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-copy span {
  font-size: 14px;
  color: #d8e3ff;
}
.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.main-nav a {
  color: #e8eeff;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}
.main-nav a.active,
.main-nav a:hover {
  color: #fff;
}
.main-nav a.active:after,
.main-nav a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: #f1c232;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8e3ff;
  font-size: 13px;
}
.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
}
.lang-switcher a.active,
.lang-switcher a:hover {
  background: #f1c232;
  color: #102542;
  border-color: #f1c232;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 19, 53, 0.92),
    rgba(10, 61, 145, 0.65)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
  padding: 88px 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ec4ff;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.03;
  margin: 18px 0 18px;
}
.hero p {
  font-size: 18px;
  max-width: 720px;
  color: #edf2ff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-primary {
  background: #f1c232;
  color: #102542;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(241, 194, 50, 0.28);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-light {
  background: #fff;
  color: #0a3d91;
}
.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(4, 10, 30, 0.22);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card img {
  width: 130px;
  margin: 0 auto 22px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stat-grid strong {
  display: block;
  font-size: 30px;
}
.stat-grid span {
  font-size: 14px;
  color: #d9e5ff;
}
.section {
  padding: 78px 0;
}
.section-soft {
  background: #edf3ff;
}
.section-dark {
  background: linear-gradient(135deg, #07183a, #0a3d91);
  color: #fff;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
}
.intro-grid,
.split-layout,
.two-col-equal,
.social-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.panel,
.mini-card,
.squad-card,
.sponsor-card,
.financial-card,
.news-card,
.financial-year,
.gallery-item,
.admin-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(16, 37, 66, 0.08);
  border: 1px solid rgba(14, 38, 86, 0.06);
}
.panel,
.mini-card,
.squad-card,
.sponsor-card,
.admin-card {
  padding: 28px;
}
.content-stack p,
.panel p {
  margin: 0 0 18px;
}
.content-stack p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}
.media-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
}
.media-card img,
.image-stack img,
.cover-thumb,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.image-stack {
  display: grid;
  gap: 18px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.news-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #102542;
  transition: 0.22s ease;
}
.news-card:hover,
.mini-card:hover,
.financial-card:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 37, 66, 0.12);
}
.news-date {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5673ad;
}
.news-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
.news-more,
.text-link {
  font-weight: 700;
  color: #0a3d91;
}
.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mini-card h3 {
  margin-top: 0;
}
.social-layout {
  align-items: center;
}
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.social-buttons.stacked {
  flex-direction: column;
  align-items: flex-start;
}
.social-embeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.instagram-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.page-hero {
  padding: 56px 0 20px;
  background: linear-gradient(180deg, #e8f0ff, #f5f7fb);
}
.page-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  margin: 10px 0 10px;
}
.page-hero p {
  max-width: 860px;
  color: #28456d;
  font-size: 18px;
}
.trophy-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trophy-box {
  background: linear-gradient(180deg, #0a3d91, #07183a);
  color: #fff;
  border-radius: 26px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(10, 61, 145, 0.22);
}
.trophy-box strong {
  display: block;
  font-size: 58px;
  line-height: 1;
}
.trophy-box span {
  display: block;
  margin-top: 12px;
}
.squad-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.squad-card h3 {
  margin-top: 0;
}
.squad-card ul {
  padding-left: 20px;
  margin: 0;
}
.info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.info-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6edf8;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sponsor-mark {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0a3d91, #1c5fc8);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.gallery-item span {
  display: block;
  padding: 16px 18px;
  font-weight: 700;
}
.news-list {
  display: grid;
  gap: 14px;
}
.news-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f5f8ff;
  color: #102542;
}
.small-note {
  font-size: 14px;
  color: #58739f;
}
.financial-years {
  display: grid;
  gap: 24px;
}
.financial-year {
  padding: 28px;
}
.year-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0a3d91;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}
.financial-list {
  display: grid;
  gap: 14px;
}
.financial-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  color: #102542;
}
.financial-card h3 {
  margin: 0 0 6px;
}
.site-footer {
  background: #07183a;
  color: #d8e3ff;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 48px 0;
}
.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-top: 0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-bottom {
  padding: 0 0 24px;
  color: #9cb3e0;
}
.admin-body {
  background: #eef3fb;
}
.admin-wrap {
  width: min(1200px, calc(100% - 30px));
  margin: 30px auto;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background: #07183a;
  color: #fff;
  padding: 24px 28px;
  border-radius: 24px;
  margin-bottom: 22px;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.admin-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #17325f;
}
.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6e0f2;
  border-radius: 14px;
  font: inherit;
  background: #fff;
}
.admin-card textarea {
  min-height: 110px;
  resize: vertical;
}
.admin-alert,
.admin-flash {
  background: #fff6dd;
  color: #7a5b00;
  border: 1px solid #f1d684;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.admin-login {
  display: grid;
  place-items: center;
  min-height: 70vh;
}
.admin-login .admin-card {
  width: min(430px, 100%);
}
.admin-year-block {
  padding: 14px 0;
  border-bottom: 1px solid #edf2fb;
}
.admin-year-block:last-child {
  border-bottom: 0;
}
@media (max-width: 1080px) {
  .news-grid,
  .card-grid.three,
  .squad-columns,
  .sponsor-grid,
  .masonry-grid,
  .trophy-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }
  .lang-switcher {
    justify-self: end;
  }
}
@media (max-width: 860px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
    align-items: center;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand img {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 17px;
    line-height: 1.15;
    white-space: normal;
  }

  .brand-copy span {
    font-size: 12px;
    line-height: 1.35;
    color: #dbe4ff;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    background: #0a2459;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255,255,255,0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-size: cover;
    background-position: center center;
    transform: none;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(6, 19, 53, 0.88) 0%,
      rgba(10, 61, 145, 0.58) 45%,
      rgba(6, 19, 53, 0.92) 100%
    );
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 54px 0 34px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.02;
    margin: 0 0 14px;
    max-width: 100%;
    word-break: break-word;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.55;
    color: #f3f6ff;
    margin: 0;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .section,
  .page-hero,
  .section-soft,
  .section-dark {
    overflow-x: hidden;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 20px);
  }

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

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .hero-content {
    padding: 46px 0 28px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.04;
  }

  .hero p {
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1180px);
  }
  .topbar {
    display: none;
  }
  .brand img {
    width: 50px;
    height: 50px;
  }
  .brand-copy strong {
    font-size: 18px;
  }
  .hero-card {
    padding: 20px;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .btn {
    width: 100%;
  }
}

.admin-login-card {
  text-align: left;
}
.admin-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.admin-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(10, 61, 145, 0.18));
}
.admin-subtitle {
  margin-top: 0;
  color: #415b86;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.admin-tabs a {
  background: #fff;
  border: 1px solid #d7e2f2;
  color: #17325f;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.admin-tabs a:hover {
  background: #0a3d91;
  color: #fff;
  border-color: #0a3d91;
}
.admin-grid-single {
  grid-template-columns: 1fr;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.admin-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.admin-preview-grid figure {
  margin: 0;
}
.admin-preview-grid figcaption {
  font-weight: 700;
  margin-bottom: 10px;
  color: #17325f;
}
.admin-preview-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #dbe5f4;
  background: #f8fbff;
}
.admin-preview-logo {
  object-fit: contain;
  padding: 20px;
  background: linear-gradient(180deg, #f8fbff, #edf3ff);
}
.admin-doc-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 12px;
}
.admin-doc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2fb;
}
.admin-doc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-action {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0a3d91;
  color: #fff;
  font-weight: 700;
}
.admin-state {
  font-size: 13px;
  color: #57729e;
  font-weight: 700;
}
@media (max-width: 960px) {
  .admin-form-grid,
  .admin-preview-grid {
    grid-template-columns: 1fr;
  }
}
