* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Skip link — visible on focus for keyboard/screen reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--ucl-navy);
  color: var(--ucl-white);
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--ucl-gold);
  outline-offset: 2px;
}

/* Focus visible — keyboard users only, no focus ring on mouse */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ucl-gold);
  outline-offset: 2px;
}

:root {
  --ucl-blue: #1e5f9e;
  --ucl-navy: #1a365d;
  --ucl-navy-dark: #0f2744;
  --ucl-silver: #a8b5c4;
  --ucl-gold: #e8b923;
  --ucl-gold-dark: #b8860b;
  --ucl-white: #ffffff;
  --ucl-cream: #f5f3ef;
  --ucl-light: #ebe8e3;
  --ucl-stripe: #e5e2dc;
  --ucl-text: #1a2332;
  --ucl-text-soft: #3d4a5c;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--ucl-cream);
  color: var(--ucl-text);
  overflow-x: hidden;
}

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

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 54, 93, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(26, 54, 93, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ucl-navy);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ucl-text-soft);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--ucl-gold-dark);
  background: rgba(232, 185, 35, 0.1);
}

.nav-link.active {
  color: var(--ucl-navy-dark);
  background: rgba(232, 185, 35, 0.2);
  font-weight: 600;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ucl-navy);
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid rgba(26, 54, 93, 0.1);
  gap: 4px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ucl-text);
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-link:hover {
  background: rgba(232, 185, 35, 0.1);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none !important;
  }

  .burger-btn {
    display: flex !important;
  }
}

/* Main */
.main-content {
  padding-top: 72px;
  min-height: 100vh;
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a365d 0%, #1e5f9e 45%, #2d7ab8 100%);
}

.hero-icons {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.hero-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.6);
  animation: float 8s ease-in-out infinite;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
}

.hero-icon:nth-child(1) { left: 8%; top: 12%; animation-delay: 0s; }
.hero-icon:nth-child(2) { left: 28%; top: 8%; animation-delay: 0.4s; }
.hero-icon:nth-child(3) { left: 48%; top: 15%; animation-delay: 0.8s; }
.hero-icon:nth-child(4) { left: 68%; top: 10%; animation-delay: 1.2s; }
.hero-icon:nth-child(5) { left: 88%; top: 18%; animation-delay: 1.6s; }
.hero-icon:nth-child(6) { left: 5%; top: 42%; animation-delay: 2s; }
.hero-icon:nth-child(7) { left: 35%; top: 45%; animation-delay: 2.4s; }
.hero-icon:nth-child(8) { left: 65%; top: 48%; animation-delay: 2.8s; }
.hero-icon:nth-child(9) { left: 90%; top: 44%; animation-delay: 3.2s; }
.hero-icon:nth-child(10) { left: 15%; top: 72%; animation-delay: 3.6s; }
.hero-icon:nth-child(11) { left: 50%; top: 75%; animation-delay: 4s; }
.hero-icon:nth-child(12) { left: 78%; top: 70%; animation-delay: 4.4s; }

.hero-stars {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.hero-star {
  position: absolute;
  color: var(--ucl-gold);
  font-size: 28px;
  animation: pulse 4s ease-in-out infinite;
}

.hero-star:nth-child(1) { left: 10%; top: 15%; animation-delay: 0s; }
.hero-star:nth-child(2) { right: 12%; top: 20%; animation-delay: 0.5s; }
.hero-star:nth-child(3) { left: 20%; bottom: 25%; animation-delay: 1s; }
.hero-star:nth-child(4) { right: 18%; bottom: 20%; animation-delay: 1.5s; }
.hero-star:nth-child(5) { left: 50%; top: 10%; animation-delay: 2s; }
.hero-star:nth-child(6) { left: 8%; top: 50%; animation-delay: 2.5s; }
.hero-star:nth-child(7) { right: 10%; top: 55%; animation-delay: 3s; }
.hero-star:nth-child(8) { left: 45%; bottom: 15%; animation-delay: 3.5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -10px) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-icon,
  .hero-star {
    animation: none;
  }
  .hero-icon { opacity: 0.5; }
  .hero-star { opacity: 0.5; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 28px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ucl-gold), #f5d04a);
  color: var(--ucl-navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(232, 185, 35, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(232, 185, 35, 0.5);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Section */
.section {
  padding: 64px 24px;
  background: var(--ucl-cream);
}

.preview-section {
  background: var(--ucl-stripe);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ucl-navy-dark);
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--ucl-text-soft);
  margin-bottom: 32px;
  max-width: 640px;
}

.preview-section .section-intro {
  color: var(--ucl-text);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 2px solid rgba(26, 54, 93, 0.12);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: block;
  color: inherit;
  box-shadow: 0 6px 24px rgba(26, 54, 93, 0.08);
}

.card:hover {
  box-shadow: 0 12px 36px rgba(26, 54, 93, 0.14);
  border-color: var(--ucl-gold);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ucl-navy-dark);
}

.card p {
  font-size: 0.9rem;
  color: var(--ucl-text-soft);
  line-height: 1.5;
}

.preview-section .container {
  text-align: center;
}

.preview-section .section-title {
  text-align: center;
}

.preview-section .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.preview-placeholder {
  background: #fff;
  border: 2px solid rgba(26, 54, 93, 0.2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  color: var(--ucl-text);
  box-shadow: 0 6px 24px rgba(26, 54, 93, 0.1);
}

.preview-placeholder .btn-outline {
  color: var(--ucl-navy);
  border-color: var(--ucl-blue);
  background: #fff;
}

.preview-placeholder .btn-outline:hover {
  background: var(--ucl-light);
  color: var(--ucl-navy);
  border-color: var(--ucl-navy);
}

.preview-placeholder .btn {
  margin-top: 20px;
}

/* Home sections — block structure and base */
.home-section {
  padding: 56px 24px;
}

.home-section-inner {
  max-width: 720px;
}

.home-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-section-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.block-actions {
  margin-top: 24px;
}

.btn-section {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Layout A — Archive: two-column card, visual + content */
.home-section-archive {
  background: var(--ucl-stripe);
}

.home-section-archive .container {
  display: flex;
  justify-content: center;
}

.home-section-archive .home-section-inner.block-layout-a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26, 54, 93, 0.14);
}

.home-section-archive .block-visual {
  background: linear-gradient(180deg, var(--ucl-gold) 0%, var(--ucl-gold-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 8px;
}

.home-section-archive .block-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.home-section-archive .block-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ucl-navy-dark);
}

.home-section-archive .block-main {
  padding: 32px 36px;
  text-align: left;
}

.home-section-archive .home-section-title {
  color: var(--ucl-navy-dark);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.home-section-archive .home-section-desc {
  color: var(--ucl-text-soft);
  margin-bottom: 20px;
}

.home-section-archive .home-section-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-section-list-lines li {
  color: var(--ucl-text);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--ucl-cream);
  font-size: 0.9rem;
  border-left: 3px solid var(--ucl-gold);
}

.home-section-list-lines li:last-child {
  margin-bottom: 0;
}

.home-section-archive .btn-section {
  background: var(--ucl-gold);
  border: 2px solid var(--ucl-gold);
  color: var(--ucl-navy-dark);
  font-weight: 700;
}

.home-section-archive .btn-section:hover {
  background: var(--ucl-gold-dark);
  border-color: var(--ucl-gold-dark);
  color: #fff;
}

/* Layout B — About: centered with big badge */
.home-section-about {
  background: linear-gradient(135deg, #1a365d 0%, #1e5f9e 50%, #2d7ab8 100%);
  text-align: center;
}

.home-section-about .home-section-inner.block-layout-b {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
}

.home-section-about .block-badge {
  display: inline-block;
  width: 72px;
  height: 72px;
  line-height: 72px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ucl-navy-dark);
  background: var(--ucl-gold);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.home-section-about .home-section-title {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.home-section-about .home-section-desc {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.home-section-about .btn-section {
  background: var(--ucl-gold);
  color: var(--ucl-navy-dark);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.home-section-about .btn-section:hover {
  background: #f5d04a;
  color: var(--ucl-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* Layout C — Winners: navy card with podium rows */
.home-section-winners {
  background: var(--ucl-cream);
}

.home-section-winners .container {
  display: flex;
  justify-content: center;
}

.home-section-winners .home-section-inner.block-layout-c {
  margin: 0 auto;
  text-align: center;
  max-width: 560px;
  background: linear-gradient(180deg, var(--ucl-navy) 0%, var(--ucl-navy-dark) 100%);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 16px 56px rgba(26, 54, 93, 0.28);
}

.home-section-winners .block-header {
  margin-bottom: 28px;
}

.home-section-winners .home-section-title {
  color: var(--ucl-gold);
  font-size: 1.5rem;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.home-section-winners .home-section-desc {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.home-section-winners .block-podium {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.home-section-winners .podium-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  text-align: left;
}

.home-section-winners .podium-1 {
  background: rgba(232, 185, 35, 0.2);
  border: 1px solid rgba(232, 185, 35, 0.4);
}

.home-section-winners .podium-2 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-section-winners .podium-3 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-section-winners .podium-name {
  color: #fff;
  font-weight: 600;
}

.home-section-winners .podium-count {
  color: var(--ucl-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.home-section-winners .podium-item .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, var(--ucl-gold), var(--ucl-gold-dark));
  color: var(--ucl-navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-section-winners .btn-section {
  background: transparent;
  border: 2px solid var(--ucl-gold);
  color: var(--ucl-gold);
  font-weight: 600;
}

.home-section-winners .btn-section:hover {
  background: var(--ucl-gold);
  color: var(--ucl-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.3);
}

/* Layout D — Scorers: scoreboard-style card */
.home-section-scorers {
  background: linear-gradient(180deg, #dce8f4 0%, #e8eef6 100%);
}

.home-section-scorers .container {
  display: flex;
  justify-content: center;
}

.home-section-scorers .home-section-inner.block-layout-d {
  margin: 0 auto;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(30, 95, 158, 0.16);
}

.home-section-scorers .block-scoreboard-head {
  background: var(--ucl-blue);
  color: #fff;
  padding: 24px 32px;
  text-align: center;
}

.home-section-scorers .block-scoreboard-head .home-section-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.home-section-scorers .block-scoreboard-head .home-section-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.home-section-scorers .block-scoreboard {
  padding: 20px 32px 24px;
}

.home-section-scorers .score-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: var(--ucl-cream);
  border-radius: 10px;
  border: 1px solid rgba(30, 95, 158, 0.1);
}

.home-section-scorers .score-row:last-child {
  margin-bottom: 0;
}

.home-section-scorers .score-row .score {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ucl-blue);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.home-section-scorers .score-name {
  color: var(--ucl-text);
  font-weight: 600;
}

.home-section-scorers .block-actions {
  padding: 0 32px 28px;
  text-align: center;
}

.home-section-scorers .btn-section {
  background: var(--ucl-blue);
  border: 2px solid var(--ucl-blue);
  color: #fff;
  font-weight: 600;
}

.home-section-scorers .btn-section:hover {
  background: var(--ucl-navy);
  border-color: var(--ucl-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 95, 158, 0.4);
}

/* Page (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #1a365d 0%, #1e5f9e 50%, #2d7ab8 100%);
  padding: 48px 24px;
  text-align: center;
  border-bottom: none;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.page-content {
  padding: 48px 24px;
  background: var(--ucl-cream);
}

.archive-table-wrap,
.scorers-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(26, 54, 93, 0.1);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(26, 54, 93, 0.06);
}

.archive-table,
.scorers-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.archive-table th,
.archive-table td,
.scorers-table th,
.scorers-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(26, 54, 93, 0.08);
  color: var(--ucl-text);
}

.archive-table th,
.scorers-table th {
  background: var(--ucl-cream);
  color: var(--ucl-navy);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.archive-table tr:hover td,
.scorers-table tr:hover td {
  background: var(--ucl-light);
}

.scorer-rank {
  color: var(--ucl-gold-dark);
  font-weight: 700;
  width: 48px;
}

.scorer-goals {
  color: var(--ucl-navy);
  font-weight: 600;
}

.scorer-club {
  font-size: 0.9rem;
  color: var(--ucl-text-soft);
}

.page-note {
  font-size: 0.9rem;
  color: var(--ucl-text-soft);
  line-height: 1.6;
}

.about-block {
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-block h2 {
  font-size: 1.25rem;
  color: var(--ucl-navy);
  margin-bottom: 12px;
}

.about-block p {
  color: var(--ucl-text-soft);
  line-height: 1.7;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.winner-card {
  background: #fff;
  border: 1px solid rgba(26, 54, 93, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(26, 54, 93, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.winner-card:hover {
  box-shadow: 0 8px 28px rgba(26, 54, 93, 0.12);
  transform: translateY(-2px);
}

.winner-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

.winner-rank {
  font-size: 0.75rem;
  color: var(--ucl-gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.winner-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--ucl-navy);
}

.winner-country {
  font-size: 0.85rem;
  color: var(--ucl-text-soft);
  margin-bottom: 8px;
}

.winner-wins {
  font-size: 0.95rem;
  color: var(--ucl-gold-dark);
  font-weight: 600;
}

.winner-last {
  font-size: 0.8rem;
  color: var(--ucl-text-soft);
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1a365d 0%, #152a47 100%);
  color: #fff;
  padding: 48px 24px 24px;
  border-top: 2px solid rgba(232, 185, 35, 0.25);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4,
.footer-tickets h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--ucl-gold);
}

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

.footer-tickets h4 {
  margin-bottom: 20px;
}

.ticket-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.ticket-icon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ticket-icon-link:hover {
  background: rgba(232, 185, 35, 0.2);
  color: var(--ucl-gold);
  border-color: rgba(232, 185, 35, 0.4);
}

.ticket-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.site-footer .ticket-icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ticket-icon-label {
  white-space: nowrap;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom p + p {
  margin-top: 10px;
}

.footer-policy-link {
  color: var(--ucl-gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policy-link:hover {
  color: #fff;
}

.footer-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .home-section-archive .home-section-inner.block-layout-a {
    grid-template-columns: 1fr;
  }

  .home-section-archive .block-visual {
    flex-direction: row;
    gap: 12px;
    padding: 20px;
  }

  .home-section-archive .block-main {
    padding: 24px 24px 28px;
  }

  .home-section-about .home-section-inner.block-layout-b {
    padding: 36px 24px;
  }

  .home-section-winners .home-section-inner.block-layout-c {
    padding: 28px 20px;
  }

  .home-section-winners .podium-item {
    grid-template-columns: 40px 1fr auto;
    padding: 12px 16px;
    gap: 12px;
  }

  .home-section-scorers .block-scoreboard-head,
  .home-section-scorers .block-scoreboard,
  .home-section-scorers .block-actions {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ticket-icons {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-icon-link {
    justify-content: center;
  }
}
