/* ULTRA INTERACTIVE THEME -/* Fonts */
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400,300&display=swap");

:root {
  --red: #ff2222;
  --dark: #050505;
  --white: #ffffff;

  /* Updated to the Premium Font user liked */
  --font-display: "Satoshi", sans-serif;
  --font-body: "Satoshi", sans-serif;
}

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

/* Custom cursor only on desktop (non-touch devices) */
@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none;
  }
}

/* Show default cursor on touch/mobile devices */
@media (hover: none), (pointer: coarse) {
  * {
    cursor: auto !important;
  }
  .cursor {
    display: none !important;
  }
}

/* Initial states for scroll animations */
.section-title h2,
.result-card,
.results-list .match-card,
.league-table,
.standings-table,
.fixture-card,
.sticky-left h2,
.video-card,
.squad-header,
.store-header,
.store-item,
.news-card,
.footer-partners-section,
.newsletter-left,
.newsletter-right,
.f-col,
.poster-wrapper {
  opacity: 0;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow: hidden; /* Lenis handles scroll on desktop */
}

/* Enable native scroll on mobile/touch devices */
@media (hover: none), (pointer: coarse) {
  html {
    overflow-x: hidden !important;
  }
  body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  #smooth-wrapper,
  #smooth-content {
    overflow: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    max-width: 100vw;
  }
  /* Prevent horizontal overflow on all major sections */
  .hero-section,
  .marquee-scroller,
  .results-section,
  .fixtures-section,
  .videos-section,
  .squad-section,
  .store-section,
  .news-section,
  .ultra-footer,
  section[data-scroll-section] {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
}

/* Fallback mobile overflow fix based on viewport width */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }
  #smooth-wrapper,
  #smooth-content {
    max-width: 100vw;
    overflow-x: hidden !important;
  }
}

/* Loader */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--dark);
  font-size: 10vw;
  font-family: var(--font-display);
  overflow: hidden;
}

/* Skip preloader for returning visitors */
.skip-preloader .preloader-overlay {
  display: none !important;
}
.skip-preloader .reveal {
  transform: translateY(0) !important;
}
/* Circle Progress Wrapper */
.circle-progress-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.circle-progress {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 6;
}

.circle-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 0.1s ease;
}

.preloader-logo {
  width: 120px;
  height: auto;
  z-index: 1;
  animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

.counter {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 10px;
  color: #fff;
}
.overlay-wipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  transform: translateY(100%);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.cursor-follow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.cursor.active .cursor-follow {
  width: 80px;
  height: 80px;
  background: rgba(255, 34, 34, 0.5);
  border-color: transparent;
}

/* Navigation */
.fixed-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease;
}
.fixed-nav.scrolled {
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.fixed-nav.scrolled .logo-img {
  height: 60px;
}
.fixed-nav.scrolled .nav-right {
  color: var(--dark);
}
.brand-link {
  display: block;
  text-decoration: none;
}
.logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.menu-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hamburger Button */
.hamburger-btn {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Full Screen Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #a61921 0%, #7a1218 50%, #4d0b0f 100%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}

.menu-overlay.active .menu-content {
  transform: translateY(0);
  opacity: 1;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
}

.menu-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.menu-link::before {
  content: attr(data-index);
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
}

.menu-link:hover {
  color: #d4a843;
  transform: translateX(20px);
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.menu-social {
  display: flex;
  gap: 25px;
}

.menu-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.menu-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.menu-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Nav active state when menu is open */
.fixed-nav.menu-open .nav-right {
  color: #fff;
}

/* ... (omitting irrelevant styles) ... */

/* Brand Center Footer */
.footer-brand-center {
  text-align: center;
  margin-bottom: 60px;
}
.f-logo-center {
  margin-bottom: 30px;
}
.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}
.f-sub-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.f-sub-nav a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
}
.menu-text {
  font-weight: 700;
  letter-spacing: 2px;
}
.hamburger-btn {
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hamburger-btn span {
  width: 100%;
  height: 2px;
  background: var(--white);
}

/* Smooth Wrapper */
#smooth-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Establish stacking context above WebGL */
}
/* YouTube Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Base of hero stack */
  pointer-events: none;
  overflow: hidden;
  background: #000; /* Fallback if video loads slow */
}
.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
@media (min-aspect-ratio: 16/9) {
  .hero-video-bg video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-video-bg video {
    width: auto;
    height: 100%;
  }
}

/* YouTube Background Video */
.youtube-bg-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 100vh * 16/9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.youtube-bg-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay-dimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 5;
}

.hero-container {
  position: relative;
  z-index: 10; /* Top of hero stack */
}

.hero-glitch {
  font-family: var(--font-display);
  font-size: 15vw;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  position: relative;
  /* Removed redundant z-index as parent handles it */
}
.line {
  overflow: hidden;
  display: block;
}
.reveal {
  display: block;
}
.hero-meta {
  font-size: 1.2rem;
  display: flex;
  gap: 40px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

/* Marquee */
.marquee-scroller {
  padding: 100px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  font-family: var(--font-display);
  font-size: 8vw;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

/* Poster Section */
.poster-section {
  padding: 100px 5vw;
}

.poster-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  width: 100%;
}

/* Layout based on poster count - full width distribution */
.poster-container.poster-count-1 .poster-wrapper {
  flex: 0 1 400px;
  max-width: 400px;
}

.poster-container.poster-count-2 .poster-wrapper,
.poster-container.poster-count-3 .poster-wrapper {
  flex: 1;
  max-width: none;
}

.poster-wrapper {
  position: relative;
}

.poster-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.poster-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.poster-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.poster-image-container:hover .poster-image {
  transform: scale(1.03);
}

.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.poster-image-container:hover .poster-overlay {
  opacity: 1;
}

.poster-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transform: translateY(20px);
  transition: transform 0.4s ease, background 0.3s ease;
}

.poster-image-container:hover .poster-cta {
  transform: translateY(0);
}

.poster-cta:hover {
  background: #ff4444;
}

.poster-cta i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.poster-cta:hover i {
  transform: translateX(5px);
}

/* Poster Section Responsive */
@media (max-width: 992px) {
  .poster-container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .poster-section {
    padding: 60px 5vw;
  }

  .poster-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .poster-container.poster-count-1 .poster-wrapper,
  .poster-container.poster-count-2 .poster-wrapper,
  .poster-container.poster-count-3 .poster-wrapper {
    flex: 0 1 100%;
    width: 100%;
    max-width: 350px;
  }

  .poster-cta {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .poster-container.poster-count-1 .poster-wrapper,
  .poster-container.poster-count-2 .poster-wrapper,
  .poster-container.poster-count-3 .poster-wrapper {
    max-width: 300px;
  }
}

/* Results & Standings Section */
.results-section {
  padding: 100px 5vw;
}
.results-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.section-title h2 {
  font-family: var(--font-display);
  font-size: 4vw;
  margin-bottom: 40px;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

/* Result Cards */
.results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Match cards in results list (front page) */
.results-list .match-card {
  margin: 0;
}
.result-card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
  position: relative;
}
.result-card:hover {
  background: #1a1a1a;
  border-color: #333;
}
.result-date {
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  min-width: 100px;
  font-weight: 500;
}
.result-match {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.result-match .team-name {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.result-match .vs-text {
  color: #555;
  font-size: 0.85rem;
  font-weight: 400;
}
.result-score {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  padding: 10px 20px;
  background: #df0f19;
  border-radius: 6px;
  color: #fff;
  letter-spacing: 2px;
}
.result-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.result-card.win .result-badge {
  background: #2ecc71;
  color: #000;
}
.result-card.draw .result-badge {
  background: #f39c12;
  color: #000;
}
.result-card.loss .result-badge {
  background: #e74c3c;
  color: #fff;
}

/* League Table */
.standings-table {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
}
.table-header,
.table-row {
  display: grid;
  grid-template-columns: 50px 1fr 60px 60px 60px;
  padding: 18px 25px;
  align-items: center;
}
.table-header {
  background: #1a1a1a;
  font-weight: 700;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.table-row {
  border-top: 1px solid #222;
  transition: 0.3s;
}
.table-row:hover {
  background: #1a1a1a;
}
.table-row.highlight {
  background: rgba(255, 34, 34, 0.1);
  border-left: 3px solid var(--red);
}
.table-row .pos {
  font-weight: 900;
  color: #666;
}
.table-row .club {
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-row .club-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.table-row .club-initial {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
}
.table-row .club-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table-row .pts {
  font-weight: 900;
  color: var(--white);
  font-size: 1.1rem;
}
.table-row .gd {
  color: #2ecc71;
}

@media (max-width: 1024px) {
  .results-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 60px 5vw;
    overflow-x: hidden;
  }
  .results-container {
    gap: 40px;
  }
  .section-title h2 {
    font-size: 8vw;
  }
  /* Result Cards Mobile */
  .result-card {
    flex-wrap: wrap;
    padding: 15px;
    gap: 10px;
  }
  .result-date {
    width: 100%;
    min-width: unset;
    font-size: 0.75rem;
    order: 1;
  }
  .result-match {
    order: 2;
    flex: unset;
    width: calc(100% - 50px);
  }
  .result-match .team-name {
    font-size: 0.85rem;
  }
  .result-badge {
    order: 3;
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  .result-score {
    order: 4;
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    font-size: 1rem;
  }
  /* League Table Mobile */
  .table-header,
  .table-row {
    grid-template-columns: 30px 1fr 40px 40px 45px;
    padding: 12px 10px;
    font-size: 0.85rem;
  }
  .table-header {
    font-size: 0.7rem;
  }
  .table-row .club {
    font-size: 0.85rem;
  }
  .table-row .club-logo,
  .table-row .club-initial {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .table-row .pts {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .result-match {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .result-match .vs-text {
    display: none;
  }
  .table-header,
  .table-row {
    grid-template-columns: 25px 1fr 35px 35px 40px;
    padding: 10px 8px;
  }
  .table-row .club-name {
    max-width: 100px;
  }
}

/* Sticky Section */
.sticky-section {
  display: flex;
  padding: 100px 5vw;
  gap: 50px;
}
.sticky-wrapper {
  display: flex;
  width: 100%;
}
.sticky-left {
  width: 40%;
}
.sticky-left h2 {
  font-family: var(--font-display);
  font-size: 6vw;
  position: sticky;
  top: 100px;
  line-height: 1;
}
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.section-cta:hover {
  background: var(--red);
  color: var(--white);
}
.section-cta i {
  transition: transform 0.3s ease;
}
.section-cta:hover i {
  transform: translateX(5px);
}
.sticky-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.fixture-card {
  background: #0f0f0f;
  border: 1px solid #333;
  padding: 60px;
  transition: transform 0.1s, background 0.3s ease; /* Velocity skew target */
}
.fixture-card:hover {
  background: #df0f19;
}
.fixture-card:hover .f-date,
.fixture-card:hover .f-loc,
.fixture-card:hover .vs,
.fixture-card:hover .f-teams-with-logos .vs {
  color: var(--white);
}
.f-date {
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.f-kickoff {
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.f-kickoff span {
  color: var(--white);
  font-weight: 700;
}
.fixture-card:hover .f-kickoff {
  color: var(--white);
}
.f-tbc-badge {
  display: inline-block;
  background: #f39c12;
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.f-teams {
  font-family: var(--font-display);
  font-size: 4vw;
  line-height: 1;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.f-teams-with-logos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.f-team {
  display: flex;
  align-items: center;
  gap: 20px;
}
.f-team span {
  font-family: var(--font-display);
  font-size: 3vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.f-team-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}
.f-teams-with-logos .vs {
  font-size: 1.5vw;
  color: #555;
  padding-left: 80px;
}
.vs {
  font-size: 2vw;
  color: #555;
  margin: 10px 0;
}

@media (max-width: 768px) {
  /* Logo size for mobile */
  .logo-img {
    height: 100px;
  }

  /* Consistent h2 font sizes across all sections */
  .section-title h2,
  .sticky-left h2 {
    font-size: 8vw;
  }

  .sticky-section {
    padding: 60px 5vw;
  }
  .sticky-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .sticky-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sticky-left h2 {
    position: static;
    text-align: center;
  }
  .section-cta {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 0.8rem;
  }
  .sticky-right {
    width: 100%;
    gap: 30px;
  }
  .fixture-card {
    padding: 30px;
  }
  .f-team span {
    font-size: 5vw;
  }
  .f-team-logo {
    width: 45px;
    height: 45px;
  }
  .f-teams-with-logos .vs {
    font-size: 3vw;
    padding-left: 65px;
  }
  .f-loc {
    margin-bottom: 25px;
    font-size: 12px;
  }
  .magnetic-btn {
    padding: 15px 30px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  /* Consistent h2 font sizes on small mobile */
  .section-title h2,
  .sticky-left h2 {
    font-size: 10vw;
  }

  .sticky-section {
    padding: 40px 15px;
  }
  .section-cta {
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .fixture-card {
    padding: 20px;
  }
  .f-team {
    gap: 12px;
  }
  .f-team span {
    font-size: 6vw;
  }
  .f-team-logo {
    width: 36px;
    height: 36px;
  }
  .f-teams-with-logos {
    gap: 10px;
    margin-bottom: 20px;
  }
  .f-teams-with-logos .vs {
    font-size: 4vw;
    padding-left: 48px;
  }
  .f-loc {
    margin-bottom: 20px;
    font-size: 11px;
  }
  .magnetic-btn {
    padding: 12px 25px;
    font-size: 12px;
    display: block;
    text-align: center;
  }
  .fixture-ctas {
    flex-direction: column;
    gap: 10px;
  }
  .fixture-ctas .magnetic-btn {
    min-width: auto;
  }
}
.f-loc {
  margin-bottom: 40px;
  color: #888;
  text-transform: uppercase;
}
.magnetic-btn {
  display: inline-block;
  padding: 20px 40px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}
.magnetic-btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* Fixture CTAs */
.fixture-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.fixture-ctas .magnetic-btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.fixture-ctas .ppv-btn {
  background: var(--red);
  border-color: var(--red);
}
.fixture-ctas .ppv-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

/* Mega Footer (AS Roma Style) */
.ultra-footer {
  font-family: var(--font-body);
  margin-top: 100px;
}

/* Partners Section */
.footer-partners-section {
  background: var(--dark);
  padding: 50px 5vw;
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 30px 0;
}

.partner-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  flex: 1;
  justify-content: center;
}

.p-logo {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

.p-logo:hover {
  color: #fff;
  transform: scale(1.05);
}

.partner-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partners-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* Newsletter Section */
.footer-newsletter-section {
  background: #111111;
  padding: 50px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.newsletter-left,
.newsletter-right {
  flex: 1;
}

.newsletter-left h4,
.newsletter-right h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 15px;
}

.newsletter-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: #3a3a3a;
  border-radius: 4px 0 0 4px;
  padding: 0 15px;
}

.newsletter-input-wrapper i {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 12px;
}

.newsletter-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 0;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #ff4444;
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-privacy a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.newsletter-right {
  text-align: right;
}

.app-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #3a3a3a;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.app-btn:hover {
  background: #4a4a4a;
}

.app-btn i {
  font-size: 1.2rem;
}

.app-btn span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Footer Links Section */
.footer-links-section {
  background: #df0f19;
  padding: 60px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-links-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 1;
}

.f-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.f-col a,
.f-col li a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.f-col li {
  list-style: none;
}

.f-col a:hover,
.f-col li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links-side li {
  list-style: none;
}

.footer-links-side li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-links-side li a:hover {
  color: #fff;
}

.side-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.side-link:hover {
  color: #fff;
}

/* Footer Bottom Section */
.footer-bottom-section {
  background: var(--dark);
  padding: 30px 5vw;
}

.footer-social-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social-row a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social-row a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 25px;
}

.legal-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-links-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-links-section {
    flex-direction: column;
  }
  .footer-links-side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .partners-row {
    flex-direction: column;
    gap: 20px;
  }
  .partner-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .partner-logos {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-newsletter-section {
    flex-direction: column;
  }
  .newsletter-right {
    text-align: left;
  }
  .app-buttons {
    justify-content: flex-start;
  }
  .footer-links-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-legal {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Video Section */
.video-slideshow-section {
  padding: 100px 5vw;
  background: #0a0a0a;
}
.video-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 10px;
}
.video-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s, filter 0.5s;
  filter: brightness(0.7);
}
.video-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.4);
}
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}
.video-card:hover .play-overlay {
  opacity: 1;
}
.video-card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.video-card-info h3 {
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin-bottom: 5px;
}
.video-card-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

/* Squad Carousel Section - New Style */
.squad-section {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #a61921 0%, #7a1218 50%, #4d0b0f 100%);
  position: relative;
  overflow: hidden;
}

/* Geometric pattern background */
.squad-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(255, 255, 255, 0.03) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.03) 87.5%,
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.03) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.03) 87.5%,
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(
      30deg,
      rgba(255, 255, 255, 0.03) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.03) 87.5%,
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.03) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.03) 87.5%,
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(
      60deg,
      rgba(0, 0, 0, 0.1) 25%,
      transparent 25.5%,
      transparent 75%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0.1)
    ),
    linear-gradient(
      60deg,
      rgba(0, 0, 0, 0.1) 25%,
      transparent 25.5%,
      transparent 75%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0.1)
    );
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  pointer-events: none;
  z-index: 0;
}

.squad-header {
  padding: 0 5vw;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.squad-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.squad-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.squad-title-accent {
  width: 60px;
  height: 6px;
  background: #d4a843;
  margin-top: 20px;
  border-radius: 3px;
}

/* Carousel Wrapper */
.squad-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.squad-carousel-track {
  display: flex;
  gap: 25px;
  padding: 20px 5vw;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Player Card */
.squad-player-card {
  flex: 0 0 auto;
  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.squad-player-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.squad-player-card.active {
  border: 3px solid #4a90d9;
}

/* Player Image */
.player-image-container {
  width: 100%;
  position: relative;
  overflow: visible;
  background: #f0f0f0;
}

.player-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.squad-player-card:hover .player-image {
  transform: scale(1.05);
}

/* Player Number Badge - positioned at bottom of image container */
.player-number-badge {
  position: absolute;
  bottom: -30px;
  left: 15px;
  width: 60px;
  height: 60px;
  background: #8b1538;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
  z-index: 10;
}

/* Player Info */
.player-info {
  padding: 40px 15px 25px;
  background: #ffffff;
}

.player-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}

.player-position {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
}

/* Carousel Navigation */
.squad-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.squad-nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.squad-nav-arrow:hover {
  background: var(--white);
  color: #a61921;
  border-color: var(--white);
}

/* Squad CTA Button */
.squad-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Results CTA Button */
.results-cta-wrapper {
  text-align: left;
  margin-top: 30px;
}

/* Standings CTA Button */
.standings-cta-wrapper {
  text-align: left;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
  .squad-player-card {
    width: 220px;
  }
  .player-number-badge {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: -25px;
  }
  .player-info {
    padding: 35px 15px 20px;
  }
}

@media (max-width: 768px) {
  .squad-section {
    padding: 60px 0 80px;
  }
  .squad-title {
    font-size: 2rem;
  }
  .squad-player-card {
    width: 200px;
  }
  .squad-carousel-track {
    gap: 15px;
  }
  .player-name {
    font-size: 1.1rem;
  }
  .player-number-badge {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: -22px;
  }
  .player-info {
    padding: 30px 12px 18px;
  }
}

/* ==========================================
   PAGE HEADER BANNER (Geometric Background)
   ========================================== */
.page-header-banner {
  position: relative;
  background: linear-gradient(135deg, #a61921 0%, #7a1218 50%, #4d0b0f 100%);
  padding: 180px 5vw 60px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.geo-pattern {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40%;
  opacity: 1;
}

.geo-pattern svg {
  width: 100%;
  height: 100%;
}

.geo-left {
  left: 0;
}

.geo-right {
  right: 0;
}

/* Additional CSS triangles for more depth */
.page-header-banner::before,
.page-header-banner::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0.08;
}

.page-header-banner::before {
  left: 5%;
  top: 20%;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid #fff;
  transform: rotate(-15deg);
}

.page-header-banner::after {
  right: 8%;
  bottom: 10%;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 180px solid #fff;
  transform: rotate(10deg);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* Breadcrumbs */
.page-breadcrumbs {
  margin-bottom: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumbs a:hover {
  color: #fff;
}

.page-breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.page-breadcrumbs .current {
  color: #fff;
}

/* Subtitle */
.page-header-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Accent Line */
.page-header-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c4a84a, #d4b85a);
  margin: 25px auto 0;
  border-radius: 2px;
}

/* Responsive Page Header */
@media (max-width: 1024px) {
  .page-header-banner {
    padding: 120px 5vw 50px;
    min-height: 240px;
  }
  .page-header-banner::before,
  .page-header-banner::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-header-banner {
    padding: 100px 20px 40px;
    min-height: 200px;
  }
  .page-header-title {
    font-size: 2.5rem;
  }
  .page-breadcrumbs {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .page-header-banner {
    padding: 150px 15px 35px;
    min-height: 180px;
  }
  .page-header-title {
    font-size: 2rem;
  }
  .geo-pattern {
    width: 50%;
    opacity: 0.5;
  }
}

/* ==========================================
   PAGE CONTENT SECTION (General Pages)
   ========================================== */
.page-content-section {
  padding: 80px 5vw 100px;
  background: #111111;
}

.page-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-article .entry-content {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-article .entry-content h2,
.page-article .entry-content h3,
.page-article .entry-content h4 {
  color: #fff;
  font-family: var(--font-display);
  margin: 2rem 0 1rem;
}

.page-article .entry-content p {
  margin-bottom: 1.5rem;
}

.page-article .entry-content a {
  color: #c4a84a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-article .entry-content a:hover {
  color: #d4b85a;
}

.page-article .entry-content ul,
.page-article .entry-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.page-article .entry-content li {
  margin-bottom: 0.5rem;
}

.page-article .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.page-article .entry-content blockquote {
  border-left: 4px solid #c4a84a;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #999;
}

/* ==========================================
   SQUAD ARCHIVE PAGE (Grid Layout)
   ========================================== */
.squad-archive-section {
  padding: 80px 5vw 100px;
  background: #111111;
  min-height: auto;
}

/* Page Header */
.squad-archive-header {
  text-align: center;
  margin-bottom: 80px;
}

.squad-archive-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.squad-archive-title {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.squad-archive-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c4a84a, #d4b85a);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Position Group */
.squad-position-group {
  margin-bottom: 80px;
}

.squad-position-group:last-child {
  margin-bottom: 0;
}

.position-group-header {
  margin-bottom: 40px;
}

.position-group-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.position-group-accent {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #c4a84a, #d4b85a);
  border-radius: 2px;
}

/* Players Grid */
.squad-players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1400px;
}

/* Grid Card Adjustments */
.squad-grid-card {
  width: 100%;
}

.squad-grid-card .player-image-container {
  aspect-ratio: 4 / 5;
  background: #e8e8e8;
}

.squad-grid-card .player-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Player Name Split */
.player-first-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.player-last-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

/* Player Image Placeholder */
.player-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 4rem;
}

/* Responsive Squad Archive */
@media (max-width: 1200px) {
  .squad-archive-title {
    font-size: 4rem;
  }
  .position-group-title {
    font-size: 2rem;
  }
  .squad-players-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .squad-archive-section {
    padding: 120px 20px 80px;
  }
  .squad-archive-title {
    font-size: 3rem;
  }
  .squad-archive-header {
    margin-bottom: 60px;
  }
  .position-group-title {
    font-size: 1.6rem;
  }
  .squad-position-group {
    margin-bottom: 60px;
  }
  .position-group-header {
    margin-bottom: 30px;
  }
  .squad-players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .player-last-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .squad-archive-section {
    padding: 100px 15px 60px;
  }
  .squad-archive-title {
    font-size: 2.5rem;
  }
  .squad-players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .player-first-name {
    font-size: 0.65rem;
  }
  .player-last-name {
    font-size: 1rem;
  }
  .player-number-badge {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    bottom: -20px;
    left: 10px;
  }
  .squad-grid-card .player-info {
    padding: 28px 10px 15px;
  }
}

/* Store Section Ultra */
.store-section-ultra {
  padding: 150px 5vw;
}
.store-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
}
.store-header h2 {
  font-family: var(--font-display);
  font-size: 6vw;
  line-height: 1;
}
.view-all {
  font-size: 1.2rem;
}

/* Store Grid (3 or fewer products) */
.store-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.product-card {
  width: 30%;
  position: relative;
  flex-shrink: 0;
}
.product-card a {
  text-decoration: none;
}
.product-card.down {
  margin-top: 100px;
}
.prod-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.prod-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}
.product-card:hover .prod-img img {
  transform: scale(1.05);
}
.prod-info h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}
.prod-info span {
  color: var(--red);
  font-weight: 700;
}

/* Store Carousel (more than 3 products) */
.store-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.store-carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.store-carousel-wrapper .product-card {
  width: calc((100% - 80px) / 3);
  min-width: calc((100% - 80px) / 3);
  flex-shrink: 0;
}
.store-carousel-wrapper .product-card.down {
  margin-top: 0;
}

.store-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.store-nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.store-nav-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 1024px) {
  .store-carousel-wrapper .product-card {
    width: calc((100% - 40px) / 2);
    min-width: calc((100% - 40px) / 2);
  }
}

@media (max-width: 768px) {
  .gallery-grid,
  .store-grid {
    flex-direction: column;
  }
  .gallery-item,
  .product-card {
    width: 100%;
  }
  .store-carousel-wrapper .product-card {
    width: 280px;
    min-width: 280px;
  }
  .video-title h2 {
    font-size: 15vw;
  }
}

/* News Section */
.news-section {
  padding: 100px 5vw;
  background: var(--dark);
}

.news-section .section-title h2 {
  font-family: var(--font-display);
  font-size: 4vw;
  font-weight: 900;
  margin-bottom: 30px;
}

/* Filter Tabs */
.news-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-tab {
  background: transparent;
  border: 1px solid #333;
  color: var(--white);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.filter-tab.active {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Hidden state for filtered cards */
.news-card.filter-hidden {
  display: none !important;
}

/* ==========================================
   NEWS ARCHIVE PAGE (3 columns)
   ========================================== */
.news-archive-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  margin-bottom: 60px;
}

.news-archive-grid .news-card,
.news-archive-grid .news-card:not(.featured) {
  grid-column: span 1 !important;
}

.news-archive-grid .news-card-img {
  aspect-ratio: 16/10;
}

.news-archive-grid .news-card-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-archive-grid .news-card-placeholder i {
  font-size: 48px;
  color: #333;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-date {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: #1a1a1a;
  border-color: var(--primary-red);
  color: var(--white);
}

.pagination .page-numbers.current {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 20px;
  background: transparent;
  border: 1px solid #333;
}

.pagination .prev:hover,
.pagination .next:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.pagination .dots {
  background: transparent;
  border: none;
  color: #666;
}

/* No Results Message */
.no-filter-results,
.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 16px;
}

/* News Archive Responsive */
@media (max-width: 1024px) {
  .news-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .news-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .pagination .prev,
  .pagination .next {
    padding: 0 15px;
  }
}

/* ==========================================
   STORE ARCHIVE PAGE
   ========================================== */
.store-archive-section {
  padding: 80px 5vw 120px;
  background: var(--dark);
}

.store-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.store-product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.store-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
}

.store-product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.store-product-card .product-image-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.store-product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-product-card:hover .product-image {
  transform: scale(1.05);
}

.store-product-card .product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.store-product-card .product-image-placeholder i {
  font-size: 64px;
  color: #333;
}

.store-product-card .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.store-product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.store-product-card .view-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-product-card .view-product i {
  transition: transform 0.3s ease;
}

.store-product-card:hover .view-product i {
  transform: translateX(5px);
}

.store-product-card .product-info {
  padding: 20px;
  text-align: center;
}

.store-product-card .product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-product-card .product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

.store-archive-section .no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #666;
  font-size: 16px;
}

/* Store Archive Responsive */
@media (max-width: 1200px) {
  .store-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .store-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .store-archive-section {
    padding: 60px 5vw 80px;
  }

  .store-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-product-card .product-image-container {
    aspect-ratio: 4/5;
  }

  .store-product-card .product-name {
    font-size: 14px;
  }

  .store-product-card .product-price {
    font-size: 16px;
  }
}

/* News Grid - Article Focused */
.news-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.news-card.featured {
  grid-column: span 3;
}

.news-card:not(.featured) {
  grid-column: span 2;
}

/* News Card Styles - Article Layout */
.news-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: #333;
}

.news-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-card-img {
  position: relative;
  overflow: hidden;
}

.news-card.featured .news-card-img {
  aspect-ratio: 16/9;
}

.news-card:not(.featured) .news-card-img {
  aspect-ratio: 16/10;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.08);
}

.news-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

/* Badge Container */
.news-badge-container {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.team-badge {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Play & Stats Icons */
.play-icon,
.stats-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.news-card:hover .play-icon,
.news-card:hover .stats-icon {
  background: var(--red);
  border-color: var(--red);
}

/* News Card Content - Article Text */
.news-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-content h3 {
  color: var(--red);
}

.news-card.featured .news-card-content h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

/* Article excerpt/description */
.news-card-content p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card.featured .news-card-content p {
  -webkit-line-clamp: 3;
}

/* Read more link */
.news-read-more {
  margin-top: auto;
  padding-top: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.news-read-more i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.news-card:hover .news-read-more {
  color: var(--red);
}

.news-card:hover .news-read-more i {
  transform: translateX(4px);
}

/* Load More Button */
.news-load-more {
  text-align: left;
}

.load-more-btn {
  display: inline-block;
  padding: 20px 40px;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.load-more-btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* News Section Responsive */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card.featured,
  .news-card:not(.featured) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .news-section .section-title h2 {
    font-size: 8vw;
  }
  .news-filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
  }
  .filter-tab {
    flex-shrink: 0;
    padding: 10px 18px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-card.featured,
  .news-card:not(.featured) {
    grid-column: span 1;
  }
  .news-card-content {
    padding: 20px;
  }
  .news-card-content h3,
  .news-card.featured .news-card-content h3 {
    font-size: 1.1rem;
  }
}

/* ==========================================
   WORDPRESS SPECIFIC STYLES
   ========================================== */

/* Page Section Padding */
.page-section {
  padding: 60px 5vw 100px;
}

/* Single Post Styles */
.single-post-section {
  padding: 150px 5vw 100px;
  max-width: 900px;
  margin: 0 auto;
}

.post-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 50px;
}

.post-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #888;
  font-size: 0.9rem;
}

.post-meta i {
  margin-right: 8px;
}

.post-featured-image {
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--font-display);
  margin: 2em 0 1em;
}

.post-content a {
  color: var(--red);
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2em 0;
}

.post-content blockquote {
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin: 2em 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.post-tags .tag {
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s;
}

.post-tags .tag:hover {
  background: var(--red);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-share span {
  color: #888;
  font-size: 0.9rem;
}

.post-share a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.post-share a:hover {
  background: var(--red);
}

/* Related Posts */
.related-posts-section {
  padding: 80px 5vw;
  background: #0a0a0a;
}

/* Player Profile Styles */
.player-profile-section {
  padding: 150px 5vw 100px;
}

.player-profile-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.player-profile-image {
  position: relative;
  max-width: 400px;
}

.player-full-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.player-number-large {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-family: var(--font-display);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.player-profile-info {
  padding-top: 50px;
}

.player-position-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.player-full-name {
  margin-bottom: 50px;
}

.player-full-name .first-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.player-full-name .surname {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.stat-item {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 20px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.player-bio {
  margin-bottom: 50px;
}

.player-bio h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.player-bio p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.back-to-squad {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1024px) {
  .player-profile-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .player-profile-image {
    max-width: 350px;
    margin: 0 auto;
  }
  .player-number-large {
    font-size: 10rem;
    bottom: -20px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .single-post-section {
    padding: 120px 5vw 60px;
  }
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .player-profile-section {
    padding: 120px 5vw 60px;
  }
  .player-stats {
    grid-template-columns: 1fr;
  }
}

/* Single Product Page */
.product-single-section {
  padding: 140px 5vw 100px;
  background: var(--dark);
  min-height: 100vh;
}

.product-single-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* Gallery Column */
.product-gallery-column {
  position: sticky;
  top: 140px;
  align-self: start;
}

.product-gallery {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 15px;
}

.product-main-image-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 34, 34, 0.3);
  z-index: 10;
}

.gallery-nav:hover {
  background: #cc1c1c;
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav-prev {
  left: 15px;
}

.gallery-nav-next {
  right: 15px;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
  scrollbar-width: thin;
  scrollbar-color: #444 #1a1a1a;
}

.product-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.product-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  border: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  padding: 0;
  transition: all 0.3s ease;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnail:hover {
  border-color: #444;
}

.product-thumbnail.active {
  border-color: var(--red);
}

.product-image-placeholder-large {
  width: 100%;
  aspect-ratio: 4/5;
  background: #1a1a1a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder-large i {
  font-size: 6rem;
  color: #333;
}

/* Details Column */
.product-details-column {
  padding-top: 20px;
}

.product-details {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 40px;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-price-wrapper {
  margin-bottom: 25px;
}

.product-current-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red);
}

.product-description {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #222;
}

.product-description p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.product-description p:last-child {
  margin-bottom: 0;
}

.product-actions {
  margin-bottom: 25px;
}

.btn-add-to-cart {
  display: block;
  width: 100%;
  padding: 18px 40px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 34, 34, 0.3);
}

.btn-add-to-cart:hover {
  background: #cc1c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 34, 34, 0.4);
}

.product-meta-info {
  padding-top: 20px;
  border-top: 1px solid #222;
}

.back-to-store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.back-to-store-link:hover {
  color: var(--red);
}

.back-to-store-link i {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-single-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-gallery-column {
    position: static;
  }

  .product-single-section {
    padding: 120px 5vw 60px;
  }
}

@media (max-width: 768px) {
  .product-single-section {
    padding: 100px 4vw 50px;
  }

  .product-gallery {
    padding: 10px;
  }

  .product-details {
    padding: 25px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .gallery-nav-prev {
    left: 10px;
  }

  .gallery-nav-next {
    right: 10px;
  }

  .product-thumbnail {
    width: 65px;
    height: 80px;
  }
}

/* Pagination */
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: var(--red);
  border-color: var(--red);
}

.pagination .current {
  background: var(--red);
  border-color: var(--red);
}

/* No Posts Message */
.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 1.2rem;
}

/* WordPress Core Alignments */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Custom Logo in Header */
.custom-logo-link img,
.custom-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.fixed-nav.scrolled .custom-logo-link img,
.fixed-nav.scrolled .custom-logo {
  height: 60px;
}

/* ===== Standings Page ===== */
.standings-page-section {
  padding: 80px 5vw 120px;
  background: var(--dark);
}

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

.standings-info {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.standings-info .competition-name,
.standings-info .season-name {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.standings-table-wrapper {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
}

.standings-full-table {
  width: 100%;
  border-collapse: collapse;
}

.standings-full-table th,
.standings-full-table td {
  padding: 18px 15px;
  text-align: center;
}

.standings-full-table thead th {
  background: #1a1a1a;
  font-weight: 700;
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.standings-full-table tbody tr {
  border-top: 1px solid #222;
  transition: background 0.3s;
}

.standings-full-table tbody tr:hover {
  background: #1a1a1a;
}

.standings-full-table tbody tr.highlight {
  background: rgba(255, 34, 34, 0.1);
}

.standings-full-table .pos {
  width: 50px;
  font-weight: 900;
  color: #666;
}

.standings-full-table .team {
  text-align: left;
}

.standings-full-table .team-with-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.standings-full-table .team-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

.standings-full-table .team-initial {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-weight: bold;
  color: #666;
}

.standings-full-table .team-name {
  font-weight: 600;
  font-size: 15px;
}

.standings-full-table .stat {
  width: 50px;
  color: #aaa;
}

.standings-full-table .gd {
  color: #2ecc71;
}

.standings-full-table .pts {
  font-weight: 900;
  color: var(--white);
  font-size: 18px;
}

.standings-updated {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 13px;
}

.no-standings {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

/* ===== Matches Page ===== */
.matches-page-section {
  padding: 60px 5vw 120px;
  background: var(--dark);
}

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

.matches-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.matches-tabs .tab-btn {
  background: transparent;
  border: 2px solid #333;
  color: #888;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 30px;
}

.matches-tabs .tab-btn:hover {
  border-color: #666;
  color: var(--white);
}

.matches-tabs .tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.tab-content {
  display: none;
}

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

.matches-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.match-card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
}

.match-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}

.match-card.live {
  border-color: var(--red);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    border-color: var(--red);
  }
  50% {
    border-color: rgba(255, 34, 34, 0.3);
  }
}

.match-card .match-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.match-card .match-competition {
  background: rgba(255, 34, 34, 0.15);
  color: var(--red);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-card .match-date {
  color: #888;
  font-size: 13px;
}

.match-card .live-badge {
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  animation: blink 1s infinite;
}

.match-card .tbc-badge {
  background: #f39c12;
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
}

.match-card .result-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.match-card .result-badge.win {
  background: #2ecc71;
  color: #fff;
}

.match-card .result-badge.loss {
  background: #e74c3c;
  color: #fff;
}

.match-card .result-badge.draw {
  background: #f39c12;
  color: #fff;
}

.match-card .match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.match-card .team {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.match-card .home-team {
  justify-content: flex-end;
  text-align: right;
}

.match-card .away-team {
  justify-content: flex-start;
  text-align: left;
}

.match-card .team-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.match-card .team-initial {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  border: none;
  box-shadow: none;
}

.match-card .team-name {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-card .match-center {
  text-align: center;
  min-width: 120px;
  flex-shrink: 0;
  padding: 0 10px;
}

.match-card .match-time {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.match-card .vs-text,
.match-card .ft-text {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-card .match-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.match-card .match-score .score {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.match-card .match-score .separator {
  font-size: 20px;
  color: #666;
}

.match-card .match-venue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
}

.match-card .match-venue i {
  color: var(--red);
}

.match-card .home-badge,
.match-card .away-badge {
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.match-card .home-badge {
  background: #2ecc71;
  color: #fff;
}

.match-card .away-badge {
  background: #3498db;
  color: #fff;
}

/* Match CTA Buttons */
.match-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.match-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.match-cta .cta-ticket {
  background: #f1c40f;
  color: #1a1a1a;
}

.match-cta .cta-ticket:hover {
  background: #f39c12;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
}

.match-cta .cta-ppv {
  background: #e74c3c;
  color: #fff;
}

.match-cta .cta-ppv:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.match-cta .cta-btn i {
  font-size: 14px;
}

.no-matches {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  background: #0f0f0f;
  border-radius: 12px;
}

/* Page Intro */
.page-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.page-intro p {
  color: #999;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* No Matches Container */
.no-matches-container {
  text-align: center;
  padding: 80px 20px;
  background: #0f0f0f;
  border-radius: 12px;
}

.no-matches-container > i {
  font-size: 64px;
  color: #333;
  margin-bottom: 24px;
  display: block;
}

.no-matches-container .no-matches {
  padding: 0;
  background: none;
  margin-bottom: 24px;
}

.no-matches-container .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.no-matches-container .btn:hover {
  background: #fff;
  color: #0f0f0f;
}

/* CTA Primary - Full Width */
.match-cta .cta-primary {
  flex: 1;
  justify-content: center;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .standings-full-table th,
  .standings-full-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .standings-full-table .team-logo,
  .standings-full-table .team-initial {
    width: 24px;
    height: 24px;
  }

  .matches-tabs .tab-btn {
    padding: 10px 25px;
    font-size: 12px;
  }

  .match-card {
    padding: 20px;
  }

  .match-card .match-teams {
    gap: 10px;
  }

  .match-card .team-logo,
  .match-card .team-initial {
    width: 40px;
    height: 40px;
  }

  .match-card .team-name {
    font-size: 14px;
  }

  .match-card .match-center {
    min-width: 80px;
    padding: 0 5px;
  }

  .match-card .match-score .score {
    font-size: 24px;
  }

  .match-card .match-time {
    font-size: 20px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .matches-container {
    padding: 0 15px;
  }

  .matches-tabs {
    gap: 10px;
  }

  .matches-tabs .tab-btn {
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .match-card {
    padding: 15px;
  }

  .match-card .match-meta {
    gap: 8px;
    margin-bottom: 15px;
  }

  .match-card .match-competition {
    font-size: 10px;
    padding: 4px 10px;
  }

  .match-card .match-date {
    font-size: 12px;
  }

  /* Keep horizontal layout on mobile */
  .match-card .match-teams {
    flex-direction: row;
    gap: 8px;
  }

  .match-card .team {
    flex: 1;
    gap: 8px;
  }

  .match-card .home-team {
    justify-content: flex-end;
  }

  .match-card .away-team {
    justify-content: flex-start;
  }

  .match-card .team-logo,
  .match-card .team-initial {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 6px;
  }

  .match-card .team-name {
    font-size: 12px;
    max-width: 60px;
  }

  .match-card .match-center {
    min-width: 60px;
    padding: 0;
  }

  .match-card .match-score .score {
    font-size: 20px;
  }

  .match-card .match-score .separator {
    font-size: 14px;
  }

  .match-card .match-score {
    gap: 6px;
  }

  .match-card .match-time {
    font-size: 16px;
  }

  .match-card .vs-text,
  .match-card .ft-text {
    font-size: 9px;
  }

  .match-card .match-venue {
    font-size: 11px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .match-card .home-badge,
  .match-card .away-badge {
    font-size: 9px;
    padding: 2px 8px;
  }

  .match-card .result-badge {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .match-cta {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .match-cta .cta-btn {
    padding: 8px 16px;
    font-size: 11px;
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }

  /* Standings table mobile */
  .standings-full-table th,
  .standings-full-table td {
    padding: 10px 5px;
    font-size: 12px;
  }

  .standings-full-table .team-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Very small screens - hide team names, show only logos */
@media (max-width: 380px) {
  .match-card .team-name {
    display: none;
  }

  .match-card .team {
    justify-content: center !important;
  }

  .match-card .team-logo,
  .match-card .team-initial {
    width: 40px;
    height: 40px;
  }

  .match-card .match-center {
    min-width: 70px;
  }

  .match-card .match-score .score {
    font-size: 24px;
  }
}
