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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #0b307e !important;
  color: #f9f9f9;
  line-height: 1.6;
}

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

.custom-navbar {
  background-color: #831d2a;
  padding: 10px 20px !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
}
.container-fluid {
  max-width: 1800px;
}
.navbar-brand img {
  height: 50px;
  width: auto;
}

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

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
}

.nav-link:hover {
  color: #0b307e !important;
}

.btn-stream {
  background-color: #0b307e;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  padding: 8px 16px;
  border: none;
}

.btn-stream:hover {
  background-color: #0b307e;
}

.offcanvas {
  background-color: #0b307e;
}
.offcanvas.offcanvas-end {
  width: 300px !important;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.85);
}
.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: #0b307e !important;
  font-weight: 600;
}
.offcanvas .livestream-btn {
  display: block !important;
}
.livestream-btn {
  background-color: transparent;
  max-width: 250px;
  color: white;
  border: 1px solid;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: "Bebas Neue", 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: transparent;
}
@media (min-width: 992px) {
  .offcanvas {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .navbar-brand img {
    height: 70px;
    width: auto;
  }
}
/* -------------------
   Banner Section
-------------------- */
.banner-section {
  width: 100%;
  overflow: hidden;
}

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

.tournament-info {
  background-color: #111;
  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: #111;
  border: 2px solid #3f72af;
  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: #ff0000;
}

.info-box h3 {
  font-size: 22px;
  color: #ff1744;
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.info-icon {
  font-size: 36px;
  color: #3f72af;
  margin-bottom: 15px;
}

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

.event-highlight {
  background: linear-gradient(135deg, #831d2a, #0b307e, #831d2a);
  border: 3px solid #0b307e;
  padding: 30px 30px;
  max-width: 1400px;
  width: 95%;
  margin: 100px auto;
  border-radius: 15px;
  box-shadow: 0 0 10px #aaabed;
  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: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.event-highlight h2 i {
  margin-right: 12px;
  color: #f9f9f9;
  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: aliceblue;
  display: flex;
  align-items: flex-start;
}
.event-highlight li a {
  text-decoration: none;
  color: inherit;
}
.event-highlight li i {
  margin-right: 12px;
  color: #bbbcef;
  font-size: 24px;
}

.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 #aaabed;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(60, 138, 255, 0.4);
  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 #aaabed;
  }
}

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

.team-section {
  padding: 20px;
  text-align: center;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 2px 15px #831d2a;
}

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

.teams-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  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: 20px;
  width: 100%;
  justify-content: center;
}

.player-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  /* box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: calc(33% - 20px);
  background: aliceblue;
  line-height: normal;
}

.player-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.player-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}
span.player-fargo-points {
  font-size: 14px;
  color: #730404;
}
.team-name {
  color: #ff1b1e;
  /* text-shadow: 1px 1px 2px #fff; */
  font-size: 38px;
  border-bottom: 1px solid #fff;
}
p.player-name {
  margin: 4px 0 6px 0;
  font-size: 16px;
  font-weight: bolder;
  color: #14128d;
}

@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 {
    /* width: 45%; */
    display: inline-flex;
    justify-content: center;
    /* margin: 4px; */
  }
  .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;
  }
}

/*----------------
 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 #17689e;
  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: linear-gradient(135deg, #0b307e, #831d2a, #0b307e);
  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: #161718;
  border: 2px solid #ffc1078a;
  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: 4px !important;
    justify-content: center;
    flex-wrap: wrap;
  }
  .event-card {
    width: 100px;
    max-width: 18%;
    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: #831d2a;
  color: #ffffff;
  font-weight: bold;
  padding: 50px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

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

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

.footer-logo img {
  height: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #3f72af;
}

.footer-contact p,
.footer-contact a {
  color: #ddd;
  margin: 6px 0;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #0b307e;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  margin-top: 30px;
  border-top: 1px solid #3f72af;
  font-size: 14px;
  color: #aaa;
}

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

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

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

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

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

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

  .nav-center a {
    padding: 10px;
    border-bottom: 1px solid #3f72af;
  }

  .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;
  }
}

/* Subscribe Section */
#mc_embed_signup {
  max-width: 600px;
  width: 90%;
  margin: auto;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  border: 1.5px solid #ffffff;
  position: relative;
  z-index: 2;
}
#mc_embed_shell {
  background: url("/assets/images/banners/email-signup-background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 30px 5px;
  position: relative;
}
#mc_embed_shell::before {
  content: "";

  background: #0b307e; /* soft overlay */
  /* background: linear-gradient(135deg, #0b307e, #831d2a, #0b307e); */
  backdrop-filter: blur(2px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mc-field-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
}

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

#mc_embed_signup #mc-embedded-subscribe-form input {
  border: 1px solid #bbbcef;
  border-radius: 6px;
  padding: 10px 0;
  color: #fff;
}
#mc_embed_signup #mc-embedded-subscribe-form .button {
  width: 150px;
  margin: 0;
  text-align: center;
  padding: 10px 0;
  /* display: flex; */
  align-items: center;
  height: auto;
  line-height: normal;
  border: none;
  background: #ff2d2de0;
  font-weight: bold;
  font-size: 17px;
}
#mc_embed_signup h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #ff2d2de0;
  line-height: normal;
}
#mc_embed_signup label {
  text-align: center;
  margin-bottom: 10px !important;
}
.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: #0b307e;
  color: #ffffff;
  padding: 20px 10%;
  font-family: "Roboto", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #ff1744;
  margin-bottom: 40px;
}

.accordion-item.schedule-day {
  border: none;
  background: linear-gradient(135deg, #0b307e, #831d2a, #0b307e);
  border-left: 5px solid #831d2a;
  margin-bottom: 40px;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(63, 114, 175, 0.3);
  color: #fff !important;
}

.schedule-day h3 {
  color: #ffffff !important;
  background: transparent !important ;
  font-size: 24px;
  margin-bottom: 15px;
  /* border-bottom: 1px solid #3f72af; */
  padding-bottom: 0px;
  --bs-border-color: #3f72af !important;
}
.accordion-button:not(.collapsed) {
  padding-bottom: 8px;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #3f72af !important;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}
.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: #ff1744;
  margin-right: 8px;
}

.note {
  background-color: #222831;
  padding: 10px 15px;
  margin-top: 15px;
  border-left: 4px solid #ff2d2d;
  color: #f1f1f1;
  font-size: 16px;
  border-radius: 6px;
}

.org--img {
  border-radius: 10px;
  width: 350px;
  max-width: 100%;
  max-height: 350px;
}

.org--name {
  font-size: 22px;
  font-weight: bold;
}

.about-fuca-cup {
  background: #0b307e;
  color: #fff;
  padding: 20px 20px;
  font-family: "Poppins", sans-serif;
}

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

.section-heading {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.about_subheading {
  background: linear-gradient(135deg, #0b307e, #831d2a);
  font-weight: bold;
}

.sub-heading {
  text-align: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.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;
}

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

.highlight-card {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 23, 68, 0.2);
  text-align: center;
}

.highlight-card h4 {
  font-size: 18px;
  color: #ff1744;
  margin-bottom: 10px;
}

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

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

.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.manager-box {
  background-color: #151515;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #831d2a;
  transition: transform 0.3s ease;
}

.manager-box:hover {
  transform: translateY(-4px);
}

.manager-box h4 {
  font-size: 18px;
  color: #3f72af;
  margin-bottom: 10px;
  font-weight: bold;
}

.manager-box p {
  font-size: 14px;
  line-height: 1.5;
}

.organizers-gallery {
  margin-top: 60px;
  text-align: center;
}

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

.social-links a {
  font-size: 28px;
  color: #ffffff; /* bright white for visibility */
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover,
.images-3 .image-fixed p a:hover {
  color: #ff1744; /* 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: #ff1744;
}
/* -------------------------------
 Partnership Opportunities Section
------------------------------ */
.partnership-opportunity {
  color: #fff !important;
}
.partnership-section-heading {
  font-size: 42px;
}
.partnership-opportunity .text-warning {
  --bs-text-opacity: 1;
  color: #ff1744 !important;
  font-size: 30px;
  font-weight: 800;
}
.partnership-opportunity .bg-dark {
  --bs-bg-opacity: 1;
  height: 100%;
  background-color: #151515;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ff1744;
}
.partnership-opportunity .text-info {
  --bs-text-opacity: 1;
  color: #ff1744 !important;
}
.partnership-opportunity .benefits-list {
  color: #fff;
}

.partnership-opportunity .btn-outline-warning {
  --bs-btn-color: #ff2d2d;
  --bs-btn-border-color: #ff2d2d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff2d2d;
  --bs-btn-hover-border-color: #ff2d2d;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ff2d2d;
  --bs-btn-active-border-color: #ff2d2d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ff2d2d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ff2d2d;
  --bs-gradient: none;
}
.partnership-opportunity .text-light {
  --bs-text-opacity: 1;
  color: #ff2d2d !important;
}

@media screen and (max-width: 767px) {
  .partnership-section-heading {
    font-size: 32px;
  }
  .col-md-6 {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 540px) {
  .partnership-section-heading {
    font-size: 28px;
  }
}

@media screen and (max-width: 380x) {
  .partnership-section-heading {
    font-size: 24px;
  }
}
.images-3 .image-fixed {
  max-width: 300px !important;
  flex: 0 0 auto;
  width: 31%;
}
.images-3 .image-fixed img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.images-3 .image-fixed p {
  color: #fff;
  text-align: center;
  padding: 10px 5px;
  font-weight: 600;
}
.images-3 .image-fixed p a {
  font-size: 20px;
  color: #ffffff;
  margin-left: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
  width: 100%;
  display: block;
}
@media screen and (max-width: 540px) {
  .images-3 .d-flex {
    gap: 10px !important;
  }

  .images-3 .image-fixed p {
    font-size: 14px;
    margin: 0;
  }
  .images-3 .image-fixed p a {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .images-3 .image-fixed p {
    font-size: 12px;
  }
}
.custom-modal-bg {
  background: linear-gradient(135deg, #090837, #730404);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
.ticket-highlight-strip {
  background: linear-gradient(90deg, #090837, #730404);
  border-top: 3px solid #e52e3b;
  border-bottom: 3px solid #e52e3b;
  box-shadow: 0 0 25px rgba(115, 4, 4, 0.7);
}

.highlight-heading {
  font-weight: bold;
  color: #ff4e5a;
  text-shadow: 0 0 5px #730404;
}

.glowing-btn {
  border: 2px solid #ff4e5a;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.glowing-btn:hover {
  background-color: #ff4e5a;
  color: #fff;
  box-shadow: 0 0 15px #ff4e5a;
}
.popover {
  background-color: #ffffff !important;
  color: #fff !important;
  border: 1px solid #ff4e5a !important;
}
.popover-header {
  background-color: #730404 !important;
  color: #fff !important;
  border-bottom: 1px solid #ff4e5a !important;
}

.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;
  }
}
/* Overlay (modal background) */
.modal-backdrop.show {
  opacity: 1;
  background: #000000;
}

/* Modal Panel */
.model {
  background: #0000009f;
}
.modal-content {
  background: linear-gradient(135deg, #0d0c2c, #24052f, #5c0000);
  color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #fff;
  /* box-shadow: 0 0 25px rgba(255, 60, 60, 0.5); */
  animation: fadeInUp 0.4s ease-out;
  backdrop-filter: blur(12px);
  border-color: #fff;
  box-shadow: 0 0 5px #fff;
}

.modal-header,
.modal-footer {
  border: none;
  border-bottom: none !important;
}

.ticket-info ul {
  color: #fff !important;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
.modal-title {
  font-size: 30px;
  font-weight: bold;
  color: #ff4d4d;
  text-shadow: 0 0 3px #ff4d4d;
}
.modal-footer {
  border: none !important;
}
/* Inputs & Selects */
.form-label {
  color: #ff4d4d;
  font-weight: 600;
  text-shadow: 0 0 4px #ff4d4d90;
}

.form-control,
.form-select {
  background-color: #1b1b2f;
  color: #fff;
  border: 1px solid #ff4d4d;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.2);
}

.form-control:focus,
.form-select:focus {
  background-color: #1b1b2f;
  color: #fff;
  box-shadow: 0 0 12px #ff4d4d;
  border-color: #ff4d4d;
  outline: none;
}

/* Buttons */
.btn-primary {
  background-color: #ff3c3c !important;
  border: none !important;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  box-shadow: 0 0 12px #ff3c3c70;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff0000;
  box-shadow: 0 0 16px #ff3c3c;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: #ccc;
  border: 1px solid #888;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.model button.btn-close {
  filter: invert(100%) brightness(200%);
}
/* Alerts */
.alert {
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.menu-ticket {
  color: red !important;
  font-weight: 600 !important;
}

/* ----------------------------
       Score pill layout 
 ------------------------------*/
.score-pill {
  background: #ffffff;
  color: #8b1eff;
  border-radius: 8px;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(139, 30, 255, 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: #8b1eff;
  color: white;
}

.score-a {
  background: #0b307e;
}

.score-b {
  background: #831d2a;
}

.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(139, 30, 255, 0.2);
}

.neon-heading {
  color: #0b307e;
  font-weight: 800;
  font-size: 22px;
  text-shadow: 0 0 2px #831d2a;
}

/* 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: #0b307e;
  margin-right: 6px;
}

.bg-team-b {
  background-color: #831d2a;
  margin-left: 6px;
}

/* Scoreboard button */
.btn-scoreboard {
  /* background-color: #8b1eff ; */
  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: #d62f2f !important;
  color: #fff !important;
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 44, 117, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 44, 117, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 44, 117, 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 bord
----------------- */

.fancy-scorecard {
  /* background-color: #090837; */
  margin: 20px auto 40px;
}

.score-box {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.bg-team-payne {
  border-color: #730404;
}

.bg-team-lambo {
  border-color: #730404;
}

.team-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
}

.player-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.player-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.player-list li:last-child {
  border-bottom: none;
}

.team-total {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
}

.vs-box {
  font-size: 2rem;
  font-weight: bold;
  background-color: #730404;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* ---------------- */

.match-row {
  display: grid;
  grid-template-columns: 3fr 5fr;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffffff4f;
  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: #ffffff;
  border-bottom: none;
  padding-bottom: 0;
}
.match-number {
  color: #ff1744;
  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: #030025;
  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 #ffffff4f;
    padding-bottom: 10px;
    gap: 10px;
    background: #09083780;
    border: 1px solid #ffffff4f;
    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: linear-gradient(135deg, #090837, #730404);
    border-left: 5px solid #ff2d2d;
    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: #090837;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 0 25px #aaabed !important;
  width: 95% !important;
}

.text-gold {
  color: #ffd700;
  color: #c4e7f5;
  /* color: #fff; */
  text-shadow: 1px 1px 5px #0d6efd;
}

.glow-text {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.thankyou-line {
  font-size: 1.05rem;
  font-style: italic;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

.hannacup-title {
  text-shadow: 1px 2px 10px red;
  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: 767px) {
  .mb-shown {
    display: block;
    color: #fff;
    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: 14px;
  }
  .text-18 {
    font-size: 13px;
    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;
}

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

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

.buy-btn {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  color: #fff;
  background: #090837; /* default dark blue */
  overflow: hidden;
}
.buy-btn:hover {
  transform: scale(1.01);
}
.buy-btn.red {
  background: #730404;
}

/* 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, #090837 0%, #730404 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: #090837;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.store-tagline {
  color: #730404;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.pool-decorations {
  position: absolute;
  color: rgba(9, 8, 55, 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: #730404;
  border: 2px dashed #730404;
  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: #730404;
  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(115, 4, 4, 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, #730404, #090837);
  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: #730404;
  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: #090837;
  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: #730404;
  transform: scale(1.05);
}

.timer {
  background: rgba(9, 8, 55, 0.1);
  border: 2px solid #090837;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin: 20px 0;
}

.timer h5 {
  color: #730404;
  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(9, 8, 55, 0.1),
    rgba(115, 4, 4, 0.1)
  );
  border: 2px solid rgba(9, 8, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090837;
  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;
  }
}

/* -------- */
.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;
  /* border-bottom: 1px solid #3f72af; */
  padding: 10px;
  --bs-border-color: #ffffff !important;
}
.accordion-item.wolfpacksportz .accordion-body {
  margin-top: 20px;
}

.schedule-round{
  font-size: 22px;
  text-align: center;
  margin: 35px;
  font-weight: bold;
  background: linear-gradient(135deg, #0b307e, #831d2a, #0b307e);
  border: 2px solid white;
  border-radius: 8px;
}


/* To adjust the iframe height untill livestream comes - remove this css once live */
/* .streamhub-iframe{
  height: 375px;
  overflow: hidden;
}

html,body,#root {
  height: 375px;
  overflow: hidden;
} */

/* To adjust the iframe height untill livestream comes - remove this css once live */