/* -------------------
   Import Fonts
-------------------- */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

/* -------------------
   Theme variables (per-event colors). Defaults below are the Cup theme;
   EventPage.jsx overwrites these on <html> at runtime per active event, so
   every rule below that uses var(--color-*) re-themes automatically instead
   of hardcoding colors.
-------------------- */
:root {
  --color-primary: #1c1a16;
  --color-primary-rgb: 28, 26, 22;
  --color-secondary: #2e2a24;
  --color-secondary-rgb: 46, 42, 36;
  --color-background: #f7f4ec;
  --color-background-rgb: 247, 244, 236;
  --color-nav-bg: #f0ead8;
  --color-card: #fffdf8;
  --color-hero-bg: #fbf1d9;
  --color-gallery-bg: #fdf6e3;
  --color-accent: #f2b90c;
  --color-accent-rgb: 242, 185, 12;
  --color-accent-lite: #ffdd66;
  --color-accent-text: #a67c00;
  --color-accent2: #8f2c22;
  --color-accent2-rgb: 143, 44, 34;
  --color-highlight: #b23a2e;
  --color-highlight-rgb: 178, 58, 46;
  --color-stream-btn: #831d2a;
  --color-text: #1c1a16;

  /* Design tokens (shared across events) - warm-tinted soft shadows, radii,
     easing and a type scale, so the whole site levels up consistently. */
  --shadow-sm:
    0 1px 2px rgba(var(--color-primary-rgb), 0.05),
    0 2px 8px rgba(var(--color-primary-rgb), 0.05);
  --shadow-md:
    0 4px 12px rgba(var(--color-primary-rgb), 0.07),
    0 10px 30px rgba(var(--color-primary-rgb), 0.08);
  --shadow-lg:
    0 10px 24px rgba(var(--color-primary-rgb), 0.1),
    0 24px 60px rgba(var(--color-primary-rgb), 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hairline: 1px solid rgba(var(--color-primary-rgb), 0.08);

  /* Session color-coding for the schedule (semantic, shared across events):
     early = cool teal, late = warm amber - always clearly distinct. */
  --session-early: #1e7a8c;
  --session-early-rgb: 30, 122, 140;
  --session-late: #c6862e;
  --session-late-rgb: 198, 134, 46;

  /* Premium spacing tokens */
  --spacing-section: 60px;
  --spacing-section-mobile: 50px;
  --spacing-card: 24px;
  --spacing-card-mobile: 16px;

  /* Premium radius tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Premium shadow tokens - green-tinted for Invitational */
  --shadow-premium-sm:
    0 2px 8px rgba(33, 79, 60, 0.06), 0 4px 16px rgba(33, 79, 60, 0.08);
  --shadow-premium-md:
    0 4px 16px rgba(33, 79, 60, 0.1), 0 8px 32px rgba(33, 79, 60, 0.12);
  --shadow-premium-lg:
    0 8px 24px rgba(33, 79, 60, 0.12), 0 16px 48px rgba(33, 79, 60, 0.15);
  --shadow-gold: 0 4px 16px rgba(200, 155, 60, 0.25);

  /* Typography scale */
  --text-h1: 42px;
  --text-h2: 32px;
  --text-h3: 24px;
  --text-h4: 20px;
  --text-body: 16px;
  --text-small: 14px;
}

/* -------------------
   Reset & Base Styles
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  /* Prevent the off-screen mobile off-canvas menu (fixed + translated to the
     right while hidden) from creating a horizontal scrollbar. */
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--color-background) !important;
  /* Subtle warm depth instead of a flat fill: two faint accent-tinted glows
     that keep the ground light + warm but give it dimension. */
  background-image:
    radial-gradient(
      1200px 600px at 12% -5%,
      rgba(var(--color-accent-rgb), 0.06),
      transparent 60%
    ),
    radial-gradient(
      1000px 560px at 100% 8%,
      rgba(var(--color-highlight-rgb), 0.05),
      transparent 55%
    );
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* -------------------
   Sticky Header
-------------------- */

/* ---- Celebration announcement strip (above the header) ---- */
.announcement-strip {
  position: relative;
  overflow: hidden;
  z-index: 999;
  padding: 9px 16px;
  text-align: center;
  color: var(--color-accent-text);
  background: linear-gradient(
    100deg,
    var(--color-accent) 0%,
    var(--color-accent-lite) 45%,
    var(--color-accent) 100%
  );
  background-size: 200% 100%;
  animation: announcement-sheen 6s linear infinite;
  box-shadow: 0 2px 12px rgba(var(--color-accent-rgb), 0.35);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

/* Moving sparkle overlay (kept subtle, sits above the gradient) */
.announcement-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.85) 1.2px,
      transparent 1.4px
    ),
    radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1.2px);
  background-size: 26px 26px, 40px 40px;
  background-position: 0 0, 13px 13px;
  opacity: 0.5;
  animation: announcement-twinkle 3.2s ease-in-out infinite;
}

.announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.announcement-text {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-title {
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  color: var(--color-primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.announcement-tagline {
  font-weight: 700;
  font-size: clamp(0.7rem, 1.6vw, 0.9rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-highlight);
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(var(--color-highlight-rgb), 0.35);
  white-space: nowrap;
  animation: announcement-pulse 2.4s ease-in-out infinite;
}

.announcement-emoji {
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  display: inline-block;
  animation: announcement-bounce 2s ease-in-out infinite;
}
.announcement-inner .announcement-emoji:last-child {
  animation-delay: 0.4s;
}

@keyframes announcement-sheen {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes announcement-twinkle {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}
@keyframes announcement-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes announcement-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-3px) rotate(6deg);
  }
}

@media (max-width: 575.98px) {
  .announcement-strip {
    padding: 7px 12px;
  }
  .announcement-inner {
    gap: 8px;
  }
  .announcement-text {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-strip,
  .announcement-confetti,
  .announcement-tagline,
  .announcement-emoji {
    animation: none;
  }
}

.custom-navbar {
  background-color: var(--color-nav-bg);
  padding: 10px 20px !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(var(--color-primary-rgb), 0.06);
}
.container-fluid {
  max-width: 1800px;
}
.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  font-weight: bold;
}

.nav-link {
  color: var(--color-primary) !important;
  margin: 0 10px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--color-accent2) !important;
}

.btn-stream {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  padding: 8px 16px;
  border: none;
}

.btn-stream:hover {
  background-color: var(--color-primary);
}

.offcanvas {
  background-color: var(--color-nav-bg);
}
.offcanvas.offcanvas-end {
  width: 300px !important;
  box-shadow: 0px 0px 15px rgba(var(--color-primary-rgb), 0.25);
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.btn-close {
  --bs-btn-close-opacity: 1 !important;
}
.offcanvas-body.d-flex.flex-column.align-items-start {
  padding-top: 0;
}
.offcanvas .nav-link {
  margin: 10px 0;
  font-size: 18px;
  color: var(--color-primary) !important;
  font-weight: 600;
}
.offcanvas .livestream-btn {
  display: block !important;
}
.livestream-btn {
  background-color: var(--color-stream-btn);
  max-width: 250px;
  color: white;
  border: 1px solid;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  transition: transform 0.3s;
  text-decoration: none;
}
.livestream-btn img {
  max-width: 100%;
}
.livestream-btn:hover {
  transform: scale(1.05);
  background-color: var(--color-stream-btn);
}
@media (min-width: 992px) {
  .offcanvas {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .navbar-brand img {
    height: 70px;
    width: auto;
  }
}

/* -------------------
   Event Switcher (Cup / Invitational)
-------------------- */
.event-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--color-primary-rgb), 0.06);
  border: 1px solid rgba(var(--color-primary-rgb), 0.15);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.event-switcher-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--color-primary) !important;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.event-switcher-tab:hover {
  background: rgba(var(--color-primary-rgb), 0.08);
}
.event-switcher-tab.active {
  background: var(--color-primary);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.35);
}
.offcanvas .event-switcher {
  width: 100%;
  justify-content: center;
  margin: 4px 0 14px;
}
.offcanvas .event-switcher-tab {
  flex: 1;
  justify-content: center;
}

/* Wider variant: sits next to the logo, so it can afford more breathing room
   than the compact version squeezed between the nav links and stream button. */
.event-switcher-wide {
  margin: 0 24px 0 20px;
  padding: 5px;
}
.event-switcher-wide .event-switcher-tab {
  padding: 9px 22px;
  font-size: 14px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .event-switcher-wide {
    margin: 0 12px;
  }
  .event-switcher-wide .event-switcher-tab {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* -------------------
   Banner Section
-------------------- */
.banner-section {
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
}

.tournament-info {
  background-color: #1a1712;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.info-box {
  background: #1a1712;
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 30px 20px;
  min-width: 240px;
  max-width: 300px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.info-box:hover {
  transform: scale(1.05);
  border-color: var(--color-highlight);
}

.info-box h3 {
  font-size: 22px;
  color: var(--color-accent2);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-box p {
  font-size: 18px;
  color: #f1f1f1;
}

.info-icon {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 15px;
}

/*-------------------
Venue, Date & Time for the tournament section 
------------------------*/

.event-highlight {
  background: var(--color-card);
  border: var(--hairline);
  border-top: 4px solid var(--color-accent);
  padding: 50px 40px;
  max-width: 1100px;
  width: 92%;
  margin: 100px auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium-md);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.event-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.event-highlight h2 {
  font-size: var(--text-h2);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.event-highlight h2 i {
  margin-right: 12px;
  color: var(--color-accent2);
  font-size: 50px;
}

.event-highlight ul {
  list-style: none;
  padding: 0;
}

.event-highlight li {
  margin: 15px 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  color: var(--color-primary);
  display: flex;
  align-items: flex-start;
}
.event-highlight li a {
  text-decoration: none;
  color: inherit;
}
.event-highlight li i {
  margin-right: 12px;
  color: var(--color-accent2);
  font-size: 24px;
}

/* -------------------
   Tournament info tiles (modern grid replacing the plain bullet list)
-------------------- */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 24px auto 0;
  text-align: left;
}
.info-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  /* two per row on desktop; grows to fill and the last row centers, so there
     are no empty grid slots / dead space on partial rows */
  flex: 1 1 300px;
  max-width: 480px;
  padding: 20px 22px;
  background: rgba(var(--color-accent-rgb), 0.08);
  border: var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.info-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium-md);
}
.info-tile-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(var(--color-accent-rgb), 0.15);
  color: var(--color-accent-text);
  font-size: 22px;
}
.info-tile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.info-tile-label {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent2);
  margin-bottom: 4px;
}
.info-tile-value {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-primary);
  text-decoration: none;
}
a.info-tile-value:hover {
  color: var(--color-accent-text);
  text-decoration: underline;
}

.event-image {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.event-image .sponser-link {
  border: 2px solid var(--color-accent-lite);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.35);
  max-width: 100px;
  width: 10%;
  min-width: 60px;
  height: auto;
  background: white;
  display: flex;
  overflow: hidden;
}
.event-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .event-highlight h2 {
    font-size: 34px;
    display: flex;
    flex-direction: column;
  }

  .section-heading {
    font-size: 32px !important;
  }

  .event-highlight h2 i {
    font-size: 36px;
  }
  .event-highlight li {
    font-size: 18px;
  }
  .event-highlight li i {
    font-size: 18px;
  }
  .event-image {
    gap: 10px;
  }
  .event-image .sponser-link {
    width: 12%;
  }
}

@media (max-width: 576px) {
  .event-highlight {
    padding: 30px 10px;
  }
  .event-highlight h2 {
    font-size: 28px;
    line-height: normal;
  }
  .event-highlight h2 i {
    font-size: 24px;
  }

  .event-highlight li {
    font-size: 16px;
  }
  .event-highlight li i {
    font-size: 18px;
  }
  .event-image {
    flex-wrap: wrap;
    margin: 30px 10px 0 10px;
  }
  .event-image .sponser-link {
    width: calc(19% - 8px);
    max-width: 100%;
    min-width: 43px;
  }
  .event-image .sponser-link {
    border: 1px solid var(--color-accent-lite);
  }
}

/* ---------------
   team-details section
---------------- */

.team-section {
  padding: var(--spacing-section) 20px;
  text-align: center;
}

.section-heading {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.1rem + 2.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0.4px;
  text-wrap: balance;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: var(--color-primary);
  text-shadow: none;
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-accent);
}

.team-captains-container {
  width: 30%;
}
.captains-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.teams-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  align-items: center;
}

.team-column {
  width: calc(35% - 40px);
}

.team-name {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.two-player-container {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.player-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  width: calc(33% - 20px);
  background: var(--color-card);
  border: var(--hairline);
  box-shadow: var(--shadow-sm);
  line-height: normal;
}

.player-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-lg);
}

.player-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
span.player-fargo-points {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-highlight);
}
.team-name {
  color: var(--color-accent2);
  font-size: 42px;
  border-bottom: 1px solid var(--color-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  padding-bottom: 12px;
}
p.player-name {
  margin: 4px 0 8px 0;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.3px;
}

@media screen and (max-width: 1200px) {
  .teams-wrapper {
    gap: 15px;
  }

  .two-player-container {
    gap: 6px;
  }
  .player-card {
    width: calc(32% - 0px);
    border-radius: 6px;
  }
  .team-name {
    font-size: 24px;
  }
  p.player-name {
    font-size: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .event-highlight {
    margin: 60px auto;
  }
}
@media screen and (max-width: 991px) {
  .teams-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .team-captains-container {
    width: 100%;
    max-width: 400px;
    order: -1;
  }
  .team-column {
    width: 100%;
  }
  .team-name {
    border: none;
    margin: 10px;
  }
  .two-player-container {
    display: inline-flex;
    justify-content: center;
  }
  .two-player-container.first-container {
    width: 36%;
  }
  .two-player-container.second-container {
    width: 54%;
  }
  .two-player-container.first-container .player-card {
    width: 48%;
  }
  .two-player-container.second-container .player-card {
    width: 32%;
  }
  .player-card {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .two-player-container.first-container,
  .two-player-container.second-container {
    width: 100%;
    margin-bottom: 20px;
    gap: 10px;
  }
  .two-player-container.first-container .player-card,
  .two-player-container.second-container .player-card {
    width: 32%;
    max-width: 200px;
  }
}
@media screen and (max-width: 540px) {
  .section-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .team-name {
    font-size: 22px;
  }
  .player-card {
    border-radius: 6px;
  }
  .two-player-container {
    gap: 6px;
    margin: 1px;
  }
  p.player-name,
  span.player-fargo-points {
    font-size: 10px !important;
  }

  /* Small screen event-highlight adjustments */
  .event-highlight {
    padding: 24px 16px;
  }

  /* Small screen about info card adjustments */
  .about-info-card {
    padding: 20px 16px;
  }

  .about-card-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .about-card-title {
    font-size: 18px;
  }

  .about-card-content {
    font-size: 14px;
  }
}

/*----------------
 sponser auto slider section
 ---------------- */

.image-container {
  position: relative;
  width: 100%;
  width: 300px; /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 2px var(--color-secondary);
  margin: 1px;
  max-width: 100vw;
  aspect-ratio: 1;
}

.text-content {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
}
.scroll.d-flex {
  display: flex;
  gap: 20px;
}
.event-section {
  width: 100%;
  max-width: 1800px;
  margin: 10px auto;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid #ece7d8;
  border-radius: 12px;
  padding: 30px;
}
.card-container {
  flex-wrap: nowrap;
  margin-right: 0px;
  margin-left: 0px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* @keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll {
  animation: scroll 50s linear infinite;
}
.scroll:hover {
  animation-play-state: paused;
} */
.event-card {
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  width: 150px;
  user-select: none;
  max-width: 200px;
}
img.sponser-img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  height: 100%;
  background: #1c1914;
  border: 2px solid rgba(var(--color-accent-rgb), 0.54);
  padding: 3px;
}

@media screen and (max-width: 768px) {
  .event-card {
    width: 100px;
  }
  .scroll.d-flex {
    gap: 10px;
  }
}
@media screen and (max-width: 540px) {
  .logos_strip {
    gap: 10px !important;
    justify-content: center;
    flex-wrap: wrap;
  }
  .event-card {
    width: 100px;
    max-width: 24%;
    min-width: 20px;
  }

  .scroll.d-flex {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .scroll.d-flex .event-card {
    min-width: 100px;
  }
  .event-section {
    padding: 15px;
  }
}
@media screen and (max-width: 370px) {
  .event-card {
    width: 100px;
    max-width: 15%;
    min-width: 80px;
  }
}

/* -------------------
   Footer Section
-------------------- */
.footer {
  background-color: var(--color-nav-bg);
  color: var(--color-primary);
  font-weight: bold;
  padding: 80px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 0;
  min-width: 280px;
}

.footer-logo img {
  height: 120px;
  margin-bottom: 16px;
}

.footer-logo p {
  font-weight: bold;
  font-size: 28px;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: var(--color-accent2);
}

.footer-contact p,
.footer-contact a {
  color: #4a4540;
  margin: 10px 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--color-accent2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 28px 0 0;
  margin-top: 50px;
  border-top: 2px solid var(--color-accent);
  font-size: 14px;
  color: #6b665e;
}

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

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.powered-by img {
  height: 50px;
  vertical-align: middle;
}

.powered-by a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cta-powered-by-wolfpack {
  background: var(--color-primary);
  border-radius: 6px;
  padding: 4px 10px;
}

/* -------------------
   Responsive Styles
-------------------- */
@media (max-width: 768px) {
  .nav-center {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #17140f;
    padding: 10px 0;
    text-align: center;
  }

  .nav-center.show {
    display: flex;
  }

  .nav-center a {
    padding: 10px;
    border-bottom: 1px solid var(--color-accent);
  }

  .hamburger {
    display: block;
  }

  .livestream-btn {
    display: none;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 25px;
  }

  /* Mobile section spacing overrides */
  .team-section,
  .about-fuca-cup,
  .schedule-section,
  .gallery-section {
    padding: var(--spacing-section-mobile) 20px;
  }

  .event-highlight {
    padding: 30px 20px;
    margin: 50px auto;
  }

  /* Mobile info cards grid */
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }

  .about-info-card {
    padding: 24px 20px;
  }

  /* Mobile organizer images */
  .org--img {
    width: 300px;
    max-height: 300px;
  }

  /* Mobile footer adjustments */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-container {
    gap: 35px;
  }
}

/* Subscribe Section */
#mc_embed_signup {
  max-width: 650px;
  width: 90%;
  margin: auto;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: var(--color-primary);
  border: 2px solid rgba(var(--color-accent-rgb), 0.2);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium-lg);
}
#mc_embed_shell {
  background: url("/assets/images/banners/email-signup-background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
}
#mc_embed_shell::before {
  content: "";

  background: rgba(246, 239, 232, 0.92); /* warm cream overlay */
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mc-field-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--color-primary);
}

#mc_embed_signup .mc-field-group {
  width: 100% !important;
}

#mc_embed_signup #mc-embedded-subscribe-form input {
  border: 1px solid var(--color-accent-lite);
  border-radius: 6px;
  padding: 10px 0;
  color: #000;
}
#mc_embed_signup #mc-embedded-subscribe-form .button {
  width: 150px;
  margin: 0;
  text-align: center;
  padding: 14px 0;
  align-items: center;
  height: auto;
  line-height: normal;
  border: none;
  background: rgba(var(--color-highlight-rgb), 0.85);
  font-weight: bold;
  font-size: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
#mc_embed_signup #mc-embedded-subscribe-form .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium-md), var(--shadow-gold);
}
#mc_embed_signup h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--color-primary);
  line-height: normal;
  letter-spacing: 0.5px;
}
#mc_embed_signup label {
  text-align: center;
  margin-bottom: 16px !important;
  font-size: 16px;
  font-weight: 600;
}
.optionalParent {
  display: block;
  width: fit-content;
  margin: auto;
}
#mc_embed_signup .foot {
  display: block !important;
}
/* Responsive */
@media (max-width: 600px) {
  .subscribe-container {
    padding: 0 10px;
  }

  #mc_embed_signup h2 {
    font-size: 22px;
  }

  #mc-embedded-subscribe {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .schedule-section {
    padding: 20px 20px !important;
  }
}

.schedule-section {
  background-color: var(--color-background);
  color: var(--color-primary);
  padding: var(--spacing-section) 3%;
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: var(--color-accent2);
  margin-bottom: 40px;
}

.accordion-item.schedule-day,
.schedule-day {
  border: none !important;
  background: var(--color-card) !important;
  border-left: 5px solid var(--color-accent) !important;
  margin-bottom: 40px !important;
  padding: 20px 25px !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.08) !important;
  color: var(--color-primary) !important;
  display: block !important;
}

/* Ensure the date header is visible */
.schedule-date-header,
.schedule-day h3 {
  color: var(--color-primary) !important;
  background: transparent !important;
  font-size: 24px !important;
  margin-bottom: 15px !important;
  padding-bottom: 0px !important;
  font-family: "Oswald", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  display: block !important;
}

.schedule-day-body {
  padding-top: 10px;
  display: block !important;
  padding-top: 10px;
}

.schedule-date-header,
.schedule-day h3 {
  color: var(--color-primary) !important;
  background: transparent !important ;
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 0px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.accordion-button:not(.collapsed) {
  padding-bottom: 8px;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--color-accent) !important;
}
.accordion-button::after {
  filter: none;
}
.schedule-day ul {
  list-style: none;
  padding-left: 0;
}

.schedule-day ul li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.schedule-day ul li strong {
  color: var(--color-accent2);
  margin-right: 8px;
}

.org--img {
  border-radius: var(--radius-lg);
  width: 380px;
  max-width: 100%;
  max-height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-premium-md);
}

/* Ensure all three organizers fit in one row on large screens */
@media (min-width: 992px) {
  .organizer {
    flex: 0 0 auto;
    max-width: 380px;
  }

  .org--img {
    width: 350px;
    max-height: 350px;
  }
}

@media (min-width: 1400px) {
  .org--img {
    width: 380px;
    max-height: 380px;
  }
}

/* Rule badges: single-line row of equal-width tiles, filled with the theme
   accent (like the Cup's colored rule graphics) instead of a plain white card. */
.rules-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.rules-badge-item {
  flex: 1 1 0;
  min-width: 170px; /* one line on desktop; wraps only on narrow screens */
  display: flex;
}
.rules-badge-item > * {
  width: 100%;
}
.rules-badge-item img {
  height: auto;
  object-fit: contain;
}

.rule-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  background: var(--color-highlight);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  padding: 20px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.rule-badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.org--name {
  font-size: 22px;
  line-height: 26px;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.about-fuca-cup {
  background: var(--color-background);
  color: var(--color-primary);
  padding: var(--spacing-section) 20px;
  font-family: "Poppins", sans-serif;
}

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

/* Allow organizers gallery to be wider on large screens */
@media (min-width: 992px) {
  .about-fuca-cup .container {
    max-width: 1400px !important;
  }
}

.section-heading {
  text-align: center;
}

.about_subheading {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #fff !important;
  font-weight: bold;
}

.sub-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.organizers-gallery .sub-heading,
.management-section .sub-heading {
  text-shadow: none;
}
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* Premium info cards grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 60px 0;
}

.about-info-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  text-align: center;
}

.about-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium-md);
}

.about-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(var(--color-accent-rgb), 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 28px;
}

.about-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent2);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-card-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-secondary);
}

.about-highlights {
  flex: 1;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.highlight-card {
  background-color: #1e1b15;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(var(--color-accent2-rgb), 0.2);
  text-align: center;
}

.highlight-card h4 {
  font-size: 18px;
  color: var(--color-accent2);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: #cccccc;
}

.management-section {
  margin-top: 60px;
}

.management-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile default */
  gap: 20px;
  margin-top: 20px;
}
.live-stream-photography-container {
  display: grid;
  grid-template-columns: 1fr; /* mobile default */
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 600px) {
  .management-grid,
  .live-stream-photography-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .management-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.manager-box {
  background-color: var(--color-card);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: var(--hairline);
  border-left: 5px solid var(--color-accent);
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  height: 100%;
}

.manager-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium-md);
}

.manager-box h4 {
  font-size: 20px;
  color: var(--color-accent2);
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.manager-box p {
  font-size: 15px;
  line-height: 1.7;
}

.cta-stream-hub-live-streaming {
  display: inline-block;
  background: var(--color-primary);
  border-radius: 8px;
  padding: 6px 10px;
}

.organizers-gallery {
  margin-top: 60px;
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (min-width: 992px) {
  .organizers-gallery {
    max-width: 1400px !important;
    width: 100% !important;
  }
}

.social-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  font-size: 28px;
  color: var(--color-primary);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-accent2); /* vibrant red accent on hover */
  transform: scale(1.2);
}

.social-links svg {
  width: 37.8px;
  height: 37.8px;
  transform: translate(-6px, -3px);
}
.social-links a:hover svg circle {
  fill: var(--color-accent2);
}

.streamhub-iframe iframe {
  width: 100%;
  height: 130vh;
}
@media screen and (max-width: 1399px) {
  .streamhub-iframe iframe {
    width: 100%;
    height: 120vh;
  }
}
@media screen and (max-width: 1199px) {
  .streamhub-iframe iframe {
    width: 100%;
    height: 100vh;
  }
}
@media screen and (max-width: 991px) {
  .streamhub-iframe iframe {
    width: 100%;
    height: 700px;
  }
}

@media screen and (max-width: 767px) {
  .streamhub-iframe iframe {
    width: 100%;
    height: 600px;
  }
}

/* ----------------------------
       Score pill layout 
 ------------------------------*/
.score-pill {
  background: #ffffff;
  color: var(--color-secondary);
  border-radius: 8px;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.25);
  transition: 0.3s ease;
}

.score-pill .trophy-icon {
  font-size: 18px;
  margin-right: 6px;
}

.score-pill .team-name {
  color: #333;
  font-weight: 700;
  font-size: 16px;
  margin: 0 !important;
  padding: 0;
}

.team-score {
  font-weight: bold;
  font-size: 16px;
  padding: 7px 10px;
  border-radius: 3px;
  background: var(--color-secondary);
  color: white;
}

.score-a {
  background: var(--color-primary);
}

.score-b {
  background: var(--color-secondary);
}

.dash {
  font-size: 16px;
  margin: 0 6px;
  color: #666;
}

/* Panel */
.score-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.2);
}

.neon-heading {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 22px;
  text-shadow: 0 0 2px var(--color-secondary);
}

/* Teams */
.score-team {
  flex: 1;
  padding: 10px 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.bg-team-a {
  background-color: var(--color-primary);
  margin-right: 6px;
}

.bg-team-b {
  background-color: var(--color-secondary);
  margin-left: 6px;
}

/* Scoreboard button */
.btn-scoreboard {
  /* background-color: var(--color-secondary) ; */
  color: white;
  font-weight: 900 !important;
  border-radius: 8px;
  border: 1px solid #000 !important;
  transition: all 0.3s ease;
}
.score-team .points {
  width: 100%;
  display: block;
}
.btn-scoreboard:hover {
  background-color: var(--color-accent2) !important;
  color: #fff !important;
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
  }
}

.score-pill {
  animation: glowPulse 2.5s ease-in-out infinite;
}
@media screen and (max-width: 540px) {
  .score-pill {
    padding: 10px 10px;
  }
  .score-pill .team-name,
  .score-pill .team-score {
    font-size: 12px;
    margin: 0;
  }
  .score-team {
    padding: 7px 5px;
  }
}

/* Score widget responsive positioning */
.score-widget-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1050;
}

@media (max-width: 768px) {
  .score-widget-container {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto;
    max-width: 90%;
  }

  .score-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
  }

  .score-pill > div {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .score-card {
    width: auto;
    min-width: 280px;
  }
}

@media (min-width: 769px) {
  .score-widget-container {
    left: auto !important;
    right: 1rem !important;
    transform: none !important;
    width: auto;
  }
}
/* ------------------
       score bord
----------------- */

.bg-team-payne {
  border-color: var(--color-highlight);
}

.bg-team-lambo {
  border-color: var(--color-highlight);
}

.team-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 10px;
}

/* ------accordion points style---------- */

.match-row {
  display: grid;
  grid-template-columns: 3fr 5fr;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
  padding-bottom: 10px;
}
.match-meta {
  display: flex;
  gap: 12px;
}
.match-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.team {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.team .team-name {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
  text-align: center;
  color: var(--color-primary);
  border-bottom: none;
  padding-bottom: 0;
}
.match-number {
  color: var(--color-accent2);
  margin-right: 8px;
  font-size: 18px;
  font-weight: 600;
  min-width: 90px;
}
.match-type {
  font-size: 18px;
  margin-right: 12px;
}
.match-row .team-score {
  background: #ffffff;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .team .team-name {
    font-size: 14px;
  }
  .match-number {
    font-size: 14px;
  }
  .match-type {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .match-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
    padding-bottom: 10px;
    gap: 10px;
    background: rgba(var(--color-primary-rgb), 0.05);
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    border-radius: 12px;
    padding: 10px 1px 14px;
  }
  .match-number {
    font-size: 18px;
  }
  .match-meta {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .match-number {
    font-size: 18px;
    width: fit-content;
    text-align: center;
  }
  .team .team-name {
    font-size: 14px;
    margin: 0;
  }
}
@media screen and (max-width: 540px) {
  .match-meta {
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: center;
  }
  .team .team-name {
    font-size: 12px;
    margin: 0;
  }
  .accordion-body {
    padding: 5px !important;
  }
  .team {
    gap: 8px;
  }
  .match-row .team-score {
    font-size: 12px;
  }
  .match-score {
    gap: 12px;
  }
}
@media screen and (max-width: 375px) {
  .accordion-item.schedule-day {
    border: none;
    background: var(--color-card);
    border-left: 5px solid var(--color-accent);
    margin-bottom: 40px;
    padding: 20px 5px;
  }
}

.match-score .team {
  width: 48%;
}
.match-score .team:first-child {
  justify-content: end;
}
.match-score .team:last-child {
  justify-content: flex-start;
}

/* ------------------
winners section
------------------ */

/* Floating animation for image */

/* Golden glow text */
.winner-section {
  background-color: var(--color-hero-bg);
  box-shadow: 0 8px 28px rgba(var(--color-primary-rgb), 0.08);
  width: 100% !important;
}
.winner-section > .container {
  margin: auto;
}
.text-gold {
  color: var(--color-accent-text);
  text-shadow: none;
}

.glow-text {
  text-shadow: none;
}

.thankyou-line {
  font-size: 1.05rem;
  font-style: italic;
  text-shadow: none;
}

.hannacup-title {
  text-shadow: none;
  font-size: 42px;
}
.congratulations-msg {
  font-weight: normal;
  font-size: 24px;
}
.thankyou-line {
  /* color: rgb(204, 6, 65); */
  font-size: 18px;
}
.text-18 {
  font-size: 16px;
  text-align: left !important;
}
.runner-up-team {
  font-size: 19px;
}
.champions-team {
  text-align: left !important;
}
.mb-shown {
  display: none;
}

@media screen and (max-width: 1200px) {
  .hannacup-title {
    text-shadow: none;
    font-size: 30px;
  }
  .congratulations-msg {
    font-size: 16px;
  }
  h4.text-gold.mb-2.champions-team {
    font-size: 20px;
  }
  h4.text-gold.champions-team.mvp {
    font-size: 20px;
  }
  .mvp-container img {
    height: 80px !important;
    width: 80px !important;
    aspect-ratio: 1;
  }
  .congratulations-msg {
    margin-bottom: 20px !important;
  }
  .winner-section .mvp-container {
    margin-top: 20px !important;
    gap: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .mb-shown {
    display: block;
    color: var(--color-primary);
    text-align: center;
  }
  .mb-hide {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .hannacup-title {
    font-size: 30px;
  }
  .congratulations-msg {
    font-size: 24px;
  }
  .champions-team {
    text-align: left !important;
    font-size: 16px;
  }
  .text-18 {
    font-size: 15px;
    text-align: left !important;
  }
  .champions-team.mvp {
    margin-bottom: 20px !important;
  }
  p.thankyou-line.mt-5.fw-medium {
    margin-top: 40px !important;
    font-size: 13px;
  }
}

.flags {
  height: 50px;
}

.meet-teams-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos_strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .gallery-grid {
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .organizer {
    flex: 0 0 auto !important;
    max-width: 380px !important;
    min-width: 280px !important;
  }

  .org--img {
    width: 320px !important;
    max-height: 320px !important;
  }
}

@media (min-width: 1400px) {
  .org--img {
    width: 350px !important;
    max-height: 350px !important;
  }
}

/* -----------------------
------ team jersey--------
----------------------- */

.buy-btn {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.buy-btn.red {
  background: var(--color-highlight);
}

/* Shine effect */
.buy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
}

.buy-btn:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  0% {
    left: -75px;
  }
  100% {
    left: 120%;
  }
}

/* ------------------------------
--------discount code section ---
--------------------------------- */

.discount-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.discount-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.discount-content {
  position: relative;
  z-index: 2;
}

.discount-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.discount-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.store-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.store-logo,
.store-logo img {
  width: 150px;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.store-name {
  text-align: center;
}

.store-name h3 {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.store-tagline {
  color: var(--color-highlight);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.pool-decorations {
  position: absolute;
  color: rgba(var(--color-primary-rgb), 0.1);
  font-size: 3rem;
  animation: float 4s ease-in-out infinite;
}

.pool-decorations.pool-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.pool-decorations.pool-2 {
  top: 20%;
  right: 8%;
  animation-delay: 1s;
}

.pool-decorations.pool-3 {
  bottom: 15%;
  left: 3%;
  animation-delay: 2s;
}

.pool-decorations.pool-4 {
  bottom: 25%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(2deg);
  }
  66% {
    transform: translateY(-5px) rotate(-2deg);
  }
}

.coupon-code {
  color: var(--color-highlight);
  border: 2px dashed var(--color-highlight);
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.coupon-code::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.coupon-code:hover::before {
  left: 100%;
}

.discount-badge {
  background: var(--color-highlight);
  color: white;
  font-size: 3rem;
  font-weight: bold;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(var(--color-highlight-rgb), 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.store-btn {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  color: white;
}

.feature-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--color-highlight);
  margin-right: 15px;
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.section-title {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copy-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-left: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.copy-btn:hover {
  background: var(--color-highlight);
  transform: scale(1.05);
}

.timer {
  background: rgba(var(--color-primary-rgb), 0.1);
  border: 2px solid var(--color-primary);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin: 20px 0;
}

.timer h5 {
  color: var(--color-highlight);
  font-weight: bold;
  margin-bottom: 10px;
}

.pool-sports-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.pool-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(var(--color-primary-rgb), 0.12),
    rgba(var(--color-secondary-rgb), 0.18)
  );
  border: 2px solid rgba(var(--color-primary-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.8rem;
  animation: iconSpin 6s linear infinite;
}

.pool-icon:nth-child(2) {
  animation-delay: 1s;
}
.pool-icon:nth-child(3) {
  animation-delay: 2s;
}
.pool-icon:nth-child(4) {
  animation-delay: 3s;
}

@keyframes iconSpin {
  0%,
  90% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .store-name h3 {
    font-size: 1.8rem;
  }

  .store-header {
    flex-direction: column;
    gap: 10px;
  }

  .store-logo {
    width: 60px;
    height: 60px;
  }

  .coupon-code {
    font-size: 1.2rem;
    padding: 15px;
  }

  .discount-badge {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .discount-card {
    padding: 30px 20px;
  }

  .discount-section {
    padding: 40px 0;
  }

  .pool-sports-icons {
    gap: 15px;
  }

  .pool-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .coupon-code {
    font-size: 1.2rem;
  }

  .store-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .store-name h3 {
    font-size: 1.5rem;
  }

  .discount-badge {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .feature-item {
    font-size: 1rem;
  }

  .feature-item i {
    font-size: 1.3rem;
    margin-right: 10px;
  }

  .pool-decorations {
    font-size: 2rem;
  }

  .team-pill {
    display: none;
  }
}

/* -----  wolfpacksportz accordion section----- */

.accordion-item.wolfpacksportz {
  background: transparent;
  border: 1px solid #ffffff36;
  box-shadow: none;
  border-radius: 12px !important;
  padding: 10px 10px 30px;
}
.accordion-item.wolfpacksportz .accordion-header {
  color: #ffffff !important;
  background: transparent !important;
  font-size: 24px;
  padding: 10px;
  --bs-border-color: #ffffff !important;
}
.accordion-item.wolfpacksportz .accordion-body {
  margin-top: 20px;
}

/* -------------------
   Rounds card grid (parallel rounds + internal scroller for many rounds)
-------------------- */
.rounds-grid {
  display: grid;
  /* min(450px, 100%) lets columns shrink on narrow screens while
     preventing more than 3 columns on wider screens. */
  grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
  gap: 20px;
  align-items: start;
  /* No scrolling - show all rounds at once */
  padding: 0;
}

.round-card {
  background: var(--color-card);
  border: var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium-sm);
  overflow: hidden;
  /* Auto height - show all matches without scrolling */
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.round-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium-md);
}
.round-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 16px 24px;
  background: var(--color-primary);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2.2px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.round-card-header::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.3);
  flex: none;
}

/* Session color-coding: a top stripe + matching header dot per session. */
.round-card.session-early {
  border-top: 4px solid var(--session-early);
}
.round-card.session-late {
  border-top: 4px solid var(--session-late);
}
.round-card.session-early .round-card-header::before {
  background: var(--session-early);
  box-shadow: 0 0 0 3px rgba(var(--session-early-rgb), 0.35);
}
.round-card.session-late .round-card-header::before {
  background: var(--session-late);
  box-shadow: 0 0 0 3px rgba(var(--session-late-rgb), 0.35);
}

/* Mobile accordion functionality for round cards */
.round-accordion-header {
  position: relative;
  transition: background 0.3s var(--ease);
}
.round-accordion-header:active {
  background: var(--color-secondary);
}
.round-accordion-icon {
  margin-left: auto;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

/* Mobile-specific adjustments */
@media (max-width: 991px) {
  .round-card {
    min-height: 60px;
  }
  .round-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .round-card-body.show {
    max-height: 2000px;
    overflow-y: auto;
  }
  .round-card-body.collapse {
    max-height: 0;
  }
}

/* Desktop: always show full card content */
@media (min-width: 992px) {
  .round-accordion-icon {
    display: none;
  }
  .round-card-body {
    max-height: none !important;
  }
}

/* Quick session filter buttons */
.session-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.session-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(var(--color-primary-rgb), 0.15);
  background: var(--color-card);
  color: var(--color-primary);
  font-family: "Oswald", sans-serif;
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.session-btn-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: none;
  opacity: 0.7;
}
.session-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium-md);
}
.session-btn.session-early:hover {
  border-color: var(--session-early);
}
.session-btn.session-late:hover {
  border-color: var(--session-late);
}
.session-btn.session-early.active {
  background: var(--session-early);
  border-color: var(--session-early);
  color: #fff;
}
.session-btn.session-late.active {
  background: var(--session-late);
  border-color: var(--session-late);
  color: #fff;
}
.session-btn.active .session-btn-sub {
  opacity: 0.9;
}

.rounds-empty {
  text-align: center;
  padding: 44px 20px;
  color: rgba(var(--color-primary-rgb), 0.6);
  font-size: 16px;
}
.round-card-body {
  flex: 1 1 auto;
  padding: 8px 20px 12px;
}

.round-match {
  padding: 14px 0;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}
.round-match:last-child {
  border-bottom: none;
}
.round-match-teams {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto 1fr;
  align-items: center;
  gap: 8px;
}
.rm-match-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent2);
  min-width: 30px;
}
.rm-team {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  overflow-wrap: break-word;
  word-break: keep-all;
  white-space: nowrap;
}
.rm-left {
  text-align: right;
}
.rm-right {
  text-align: left;
}
.rm-score {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 15px;
}

.rm-score.vs-text {
  min-width: 60px;
  background: transparent;
  color: var(--color-primary);
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-variant-numeric: normal;
}
.rm-sep {
  color: rgba(var(--color-primary-rgb), 0.4);
  font-weight: 700;
}
@media (max-width: 540px) {
  .rounds-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .round-match-teams {
    gap: 6px;
  }
  .rm-team {
    font-size: 13px;
  }
}

/* ----------------
--gallary section--
----------------- */

.gallery-section {
  background: var(--color-gallery-bg);
  border-top: 4px solid var(--color-highlight);
  border-bottom: 4px solid var(--color-highlight);
  padding: var(--spacing-section) 20px;
}
.gallery-section .container {
  width: 100% !important;
  max-width: 1900px !important;
}
.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--color-highlight);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.gallery-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  aspect-ratio: 1;
  object-fit: cover;
}
.gallery-img:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-premium-lg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: rgba(178, 58, 46) !important;
  background: #fff;
  border: 1px solid rgba(var(--color-highlight-rgb), 0.5);
  padding: 10px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-premium-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--color-highlight);
  color: #fff !important;
  box-shadow: var(--shadow-premium-md);
  transform: scale(1.1);
}
.swiper-pagination-bullet {
  background: rgba(var(--color-primary-rgb), 0.25) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-highlight) !important;
  opacity: 1;
}

/* Optional: lightbox accents to match brand */
.glightbox-clean .gslide-description {
  color: #fff;
}
.glightbox-container .gbtn {
  color: #fff;
}
.glightbox-container .gprev,
.glightbox-container .gnext {
  background: var(--color-highlight);
}
/* -------------raffle info section ------------------ */

.raffle-card {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );
  border-radius: 15px;
  max-width: 1200px;
  border: 2px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.raffle-info-container {
  border-left: 1px dashed #fff;
}
.raffle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .raffle-card .raffle-heading-container,
  .raffle-card .raffle-info-container {
    width: 100% !important;
    border: none !important;
  }
  .raffle-card .raffle-heading-container {
    border-bottom: 1px dashed #fff !important;
  }
}

.raffle-tkt-cta {
  font-weight: bold;
  font-size: 22px;
  color: white;
}

.notice-strip {
  background: var(--color-primary);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.notice-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

.notice-content {
  position: relative;
  z-index: 2;
}

.notice-title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.notice-message {
  font-size: 14px;
  line-height: 1.4;
}

.facebook-link {
  color: var(--color-accent-lite);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.facebook-link:hover {
  color: white;
  text-decoration: underline;
}

.alert-icon {
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.winner-section-text-container {
  padding-left: 30px !important;
}
@media (max-width: 768px) {
  .notice-strip {
    padding: 10px 15px;
  }

  .notice-title {
    font-size: 14px;
  }

  .notice-message {
    font-size: 13px;
  }

  .winner-section-text-container {
    padding-left: 0px;
  }
}
.max-w-350 {
  max-width: 350px !important;
  width: 100%;
}
.max-w-250 {
  max-width: 250px !important;
  width: 100%;
}

@media screen and (max-width: 540px) {
  h2.text-dark.team-section-sub-heading {
    display: flex;
    flex-direction: column;
    font-size: 24px;
  }
  .winner-section .mvp-container {
    justify-content: start !important;
  }
}
h2.text-dark.team-section-sub-heading {
  text-shadow: none;
  font-size: 28px;
}
.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}

.mvp-container {
  border: 2px solid rgba(var(--color-primary-rgb), 0.35);
  padding: 10px 20px;
  background: rgba(var(--color-highlight-rgb), 0.05);
  border-radius: 21px;
  width: fit-content;
}
.mvp-container img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50% !important;
}
h4.champions-team-name {
  padding: 10px 20px;
  border: 2px solid rgba(var(--color-highlight-rgb), 0.4);
  border-radius: 14px;
  width: fit-content;
  background: rgba(var(--color-primary-rgb), 0.05);
}
@media screen and (max-width: 990px) {
  h4.text-gold.mb-2.champions-team {
    font-size: 14px;
  }
  h4.text-gold.champions-team.mvp {
    font-size: 14px;
  }
  h4.champions-team-name {
    padding: 8px 12px;
  }
  .mvp-container {
    padding: 8px 12px;
  }
  h4.text-gold.champions-team.mvp span {
    display: block;
    margin-top: 4px;
  }
  .thankyou-line {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  h4.text-gold.mb-2.champions-team {
    font-size: 14px;
    width: 100%;
    text-align: center !important;
    padding: 10px 14px;
  }
  .winner-section .mvp-container {
    margin-top: 20px !important;
    gap: 12px !important;
    width: 100%;
    justify-content: center;
  }
  .champions-team.mvp {
    margin-bottom: 0px !important;
  }
  .watch-tournament-recape {
    margin: auto !important;
  }
}
