/* =========================================
   1. ROOT VARIABLES — BANDITS COLOR SYSTEM
========================================= */
:root {
  --bandits-teal: #1BA8A8;
  --bandits-teal-dark: #157F7F;

  --bandits-navy: #0A1A2F;
  --bandits-navy-light: #12263F;

  --bandits-grey: #D1D5DB;
  --bandits-grey-dark: #9CA3AF;

  --bandits-light: #F5F7FA;
}

/* =========================================
   2. GLOBAL
========================================= */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bandits-light);
  color: var(--bandits-navy);
}

.section-title,
.player-name,
.coaches-name {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--bandits-teal);
  border-color: var(--bandits-teal);
  color: #fff;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #009c9c;
  border-color: #009c9c;
  color: #fff;
  transform: translateY(-2px);
}

/* GameChanger embed container */
.gc-section {
  padding: 2rem 0;
  background: var(--bandits-light);
}

#gc-schedule-widget-i8fi {
  width: 100%;
  max-width: 100%;
  overflow: visible !important;
  display: block;
  margin-top: 3rem;
}

#gc-schedule-widget-i8fi iframe {
  width: 100% !important;
  min-height: 275px !important;
  height: auto !important;
  display: block !important;
  overflow: visible !important;
}

#schedule-widget {
  margin-bottom: 3rem;
}

/* =========================================
   3. UTILITIES — BANDITS UI KIT
========================================= */

/* Shadows */
.shadow-soft { box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.shadow-medium { box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.shadow-strong { box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

/* Borders */
.border-teal { border-color: var(--bandits-teal) !important; }
.border-navy { border-color: var(--bandits-navy) !important; }
.border-grey { border-color: var(--bandits-grey) !important; }

/* Background Utilities */
.bg-navy { background: var(--bandits-navy); }
.bg-teal { background: var(--bandits-teal); }
.bg-grey { background: var(--bandits-grey); }
.bg-light { background: var(--bandits-light); }

/* Gradients */
.gradient-teal-navy {
  background: linear-gradient(135deg, var(--bandits-teal), var(--bandits-navy));
}

.gradient-navy-teal {
  background: linear-gradient(135deg, var(--bandits-navy), var(--bandits-teal));
}

.gradient-soft {
  background: linear-gradient(180deg, var(--bandits-light), var(--bandits-grey));
}

/* Patterns */
.pattern-stripes {
  background: repeating-linear-gradient(
    135deg,
    var(--bandits-navy) 0,
    var(--bandits-navy) 10px,
    var(--bandits-navy-light) 10px,
    var(--bandits-navy-light) 20px
  );
}

.pattern-dots {
  background:
    radial-gradient(var(--bandits-grey) 1px, transparent 1px),
    var(--bandits-light);
  background-size: 12px 12px;
}

.pattern-grid {
  background-image:
    linear-gradient(var(--bandits-grey) 1px, transparent 1px),
    linear-gradient(90deg, var(--bandits-grey) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: var(--bandits-light);
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-up utility (global) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

/* Accent bar (global) */
.accent-bar {
  width: 70px;
  height: 4px;
  background: var(--bandits-teal);
  border-radius: 2px;
}

/* =========================================
   4. ANIMATIONS — GLOBAL KEYFRAMES
========================================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(10px) rotate(45deg); }
  100% { transform: translateY(0) rotate(45deg); }
}

@keyframes parallaxDrift {
  from { transform: translateY(-10%); }
  to   { transform: translateY(0%); }
}

@keyframes kenburnsCinematic {
  from { transform: scale(1.1) translateY(0); }
  to   { transform: scale(1.22) translateY(-12px); }
}

@keyframes captionSlideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes footerFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sponsors-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   5. COMPONENTS
========================================= */

/* Buttons */
.btn-profile {
  background: var(--bandits-teal);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 rgba(0, 178, 178, 0.0);
}

.btn-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 178, 178, 0.55);
}

.btn-micro {
  background: transparent;
  color: var(--bandits-teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--bandits-teal);
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-micro:hover {
  background: var(--bandits-teal);
  color: #fff;
  transform: translateY(-1px);
}

.btn-back {
  background: transparent;
  color: var(--bandits-navy);
  font-weight: 600;
  padding: 0.45rem 1.1rem 0.45rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--bandits-grey);
  transition: all 0.25s ease;
  position: relative;
  margin-top: 0.75rem;
}

.btn-back::before {
  content: "◀";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  opacity: 0.8;
}

.btn-back:hover {
  background: var(--bandits-grey);
  color: #fff;
  transform: translateY(-2px);
}

/* Modal */
.bandits-modal-header {
  background: var(--bandits-navy);
  color: var(--bandits-light);
  /*border-bottom: 3px solid var(--bandits-teal);*/
}

.bandits-modal .nav-tabs .nav-link {
  color: var(--bandits-navy);
  font-weight: 600;
}

.bandits-modal .nav-tabs .nav-link.active {
  background: var(--bandits-teal);
  color: var(--bandits-navy);
  border-color: var(--bandits-teal);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bandits-teal);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--bandits-teal-dark);
}

.scroll-top-btn i {
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}

/* =========================================
   6. HERO SECTION
========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  background: url("../images/action-shots/action-shot-3.jpeg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  backdrop-filter: blur(2px);
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bandits-light));
  z-index: 2;
}

/* Chevron scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-decoration: none;
}

.scroll-down .chevron {
  width: 30px;
  height: 30px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
  opacity: 0.8;
}

/* =========================================
   7. RYNO HERO / SUPPORT SECTION
========================================= */
#ryno .hero-section {
  height: 60vh;
  min-height: 500px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3)),
    url('../images/fielding-pic.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
}

#ryno .text-content {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#ryno h1.display-1 {
  font-weight: 800;
  letter-spacing: -1px;
}

/* Unified highlight style */
.hero-highlight {
  color: #1BA8A8;
  background-color: rgba(128, 128, 128, 0.5);
  padding: 0 15px;
  display: inline-block;
  border-radius: 0;
  line-height: 1.1;
  white-space: nowrap;
}

/* ABOUT SECTION */
#about {
  padding: 5rem 0;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.about-text {
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-photo {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 0.9s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 0.9s ease-out forwards;
  animation-delay: 0.15s;
}

/* =========================================
   8. ROSTER SECTION
========================================= */

/* Section wrapper */
#roster {
  background: var(--bandits-navy);
  padding: 4rem 0;
  border-top: 6px solid var(--bandits-teal);
  border-bottom: 6px solid var(--bandits-teal-dark);
}

/* Titles */
#roster .section-title {
  font-size: 2.4rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bandits-light);
}

#roster .section-subtitle {
  font-size: 1.1rem;
  color: var(--bandits-grey);
  margin-bottom: 2.5rem;
}

/* Flip card wrapper */
.player-card {
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  min-height: 360px;
  height: 450px;
}

/* Inner rotating wrapper */
.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  transform-style: preserve-3d;
  position: relative;
}

/* Flip state */
.player-card.flipped .card-inner {
  transform: rotateY(180deg);
}

/* Card faces */
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: var(--bandits-light);
  border-radius: 16px;
  padding: 2.25rem 1.5rem 2rem;
  border: 1px solid var(--bandits-grey);
  min-height: 360px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Back face rotates */
.card-back {
  transform: rotateY(180deg);
}

/* Hover effect */
.player-card:hover {
  transform: translateY(-6px);
}

.player-card:hover .card-front,
.player-card:hover .card-back {
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  border-color: var(--bandits-teal);
}

/* Accent slash (front only) */
.card-front::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 75px;
  height: 75px;
  background: var(--bandits-teal);
  opacity: 0.10;
  transform: rotate(45deg);
  border-radius: 6px;
  pointer-events: none;
}

/* Player image */
.card-front img,
.card-back img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bandits-teal);
  padding: 4px;
  background: #fff;
  margin-bottom: 1rem;
}

/* Player text */
.player-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--bandits-navy);
}

.player-position {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

/* Role badge */
.player-tag {
  display: inline-block;
  background: rgba(0, 178, 178, 0.12);
  color: var(--bandits-teal);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Vitals block */
.player-vitals {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.player-vitals p {
  margin: 0.15rem 0;
}

.player-vitals span {
  font-weight: 700;
  color: var(--bandits-navy);
}

/* Jersey badge */
.jersey-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: var(--bandits-teal);
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 50%;
  font-size: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 5;
}

/* Player bio pill */
.player-bio {
  background: rgba(0, 178, 178, 0.12);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--bandits-navy);
  display: inline-block;
  margin: 1rem auto;
  max-width: 90%;
}

/* Nickname */
.player-nickname {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bandits-teal);
  margin-bottom: 0.75rem;
}

/* Favorites list */
.favorites-list {
  text-align: left;
  margin: 1rem auto 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 178, 178, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(0, 178, 178, 0.15);
  max-width: 90%;
}

.favorites-list p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--bandits-navy);
}

.favorites-list span {
  font-weight: 700;
  color: var(--bandits-teal);
}

/* Player divider + teaser */
.player-divider {
  width: 40px;
  height: 3px;
  background: var(--bandits-teal);
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}

.player-teaser {
  font-size: 0.85rem;
  color: var(--bandits-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
  opacity: 0.85;
}

/* Coaches */
.coaches-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--bandits-teal-dark);
}

.coaches-position {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.coaches-header {
  margin-top: 8rem;
  margin-bottom: 5rem;
}

.coaches-header .accent-bar {
  width: 60px;
  height: 4px;
  background: var(--bandits-teal);
  border-radius: 2px;
}

/* Section label */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--bandits-grey);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Parallax background for roster */
.parallax-bg {
  background-image: url('../images/roster-bg-bandits.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

/* =========================================
   9. SCHEDULE SECTION
========================================= */

/* Wrapper (GameChanger + custom schedule) */
.schedule-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.schedule-section .section-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Custom schedule block (cards) */
#schedule {
  border-top: 6px solid var(--bandits-teal);
  border-bottom: 6px solid var(--bandits-teal-dark);
  background: var(--bandits-light);
}

/* Schedule Card */
.schedule-card {
  background: #fff;
  border: 1px solid var(--bandits-grey);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 10px;
  padding: 1.5rem;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Left/Right Layout */
.schedule-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.schedule-left {
  flex: 1;
}

.schedule-right {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Date Badge */
.schedule-date-badge {
  background: var(--bandits-teal);
  color: #fff;
  width: 70px;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.schedule-date-badge .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.schedule-date-badge .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* Titles inside cards */
.schedule-card h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: var(--bandits-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Circular Image */
.schedule-img-circle {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bandits-teal);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  margin-bottom: 1rem;
}

/* Square Image */
.schedule-img-square {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* View Details Button */
.btn-schedule-details {
  background: var(--bandits-teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.btn-schedule-details:hover {
  background: var(--bandits-teal-dark);
  color: #fff;
}

/* Schedule link pill */
.schedule-link {
  text-decoration: none;
  background: var(--bandits-teal);
  color: #fff;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.schedule-link:hover {
  background: var(--bandits-navy-light);
  color: #fff;
}

/* Responsive schedule layout */
@media (max-width: 768px) {
  .schedule-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-right {
    width: 120px;
    height: 120px;
    margin-top: 1rem;
  }
}

/* =========================================
   10. CINEMATIC ACTION SHOTS SECTION
========================================= */

/* Section wrapper */
.action-shots-cinematic {
  position: relative;
  padding: 7rem 0;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* Parallax background layer */
.cinematic-bg-layer {
  position: absolute;
  inset: 0;
  background: url('../images/texture-dark.jpg') center/cover no-repeat;
  opacity: 0.25;
  transform: translateY(-10%);
  animation: parallaxDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Vignette for cinematic depth */
.action-shots-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* Teal glow behind slider */
.action-shots-cinematic::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: var(--bandits-teal);
  filter: blur(180px);
  opacity: 0.15;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Film grain overlay */
.film-grain {
  position: absolute;
  inset: 0;
  background: url('../images/film-grain.png');
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Swiper container */
.bandits-action-swiper {
  width: 100%;
  padding-bottom: 40px;
}

.bandits-action-swiper .swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 32px;
}

/* Action shot wrapper */
.action-shot-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Ken Burns cinematic zoom */
.action-shot-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.1);
  animation: kenburnsCinematic 14s ease-in-out infinite alternate;
}

/* Caption slide-up animation */
.cinematic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transform: translateY(100%);
  opacity: 0;
  animation: captionSlideUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

/* Swiper arrows (cinematic) */
.cinematic-arrow {
  color: var(--bandits-teal);
  text-shadow: 0 0 12px rgba(0,255,255,0.4);
  transition: 0.25s ease;
}

.cinematic-arrow:hover {
  color: #fff;
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(0,255,255,0.8);
}

/* Swiper pagination dots (global override for this slider) */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--bandits-teal);
}

/* Mobile tuning for action shots */
@media (max-width: 768px) {
  .action-shots-cinematic {
    padding: 4.5rem 0;
  }

  .action-shot-wrapper img {
    max-height: 420px;
  }

  .cinematic-caption {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }
}

/* =========================================
   11. SPONSORS SECTION
========================================= */

/* Sponsors strip wrapper */
.sponsors-strip {
  background: #fff;
  padding: 4rem 0;
  border-top: 1px solid var(--bandits-grey);
  border-bottom: 1px solid var(--bandits-grey);
  text-align: center;
}

/* Optional inner spacing */
.sponsors-strip .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Title + subtext */
.sponsors-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bandits-navy);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.sponsors-subtext {
  font-size: 0.95rem;
  color: var(--bandits-navy);
  opacity: 0.8;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

/* Premier sponsors (top row) */
.biggest-sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.biggest-sponsor-item img {
  height: clamp(150px, 22vw, 240px);
  max-height: 240px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.95;
  transition: filter 0.3s ease, transform 0.25s ease, opacity 0.25s ease;
}

.biggest-sponsor-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .biggest-sponsor-item img {
    height: 120px;
    max-height: 120px;
  }
}

/* Label */
.biggest-sponsors-label {
  font-size: 2rem;
  font-weight: 300;
  font-family: "Segoe UI", sans-serif;
  color: var(--bandits-navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.biggest-sponsors-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--bandits-navy);
  margin: 0.75rem auto 0;
  opacity: 0.8;
  border-radius: 2px;
}

/* Divider */
.sponsors-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.18);
  margin: 3rem 0;
}

/* Marquee scroller */
.sponsors-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.sponsors-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: sponsors-scroll 15s linear infinite;
}

.sponsor-item img {
  height: 150px;
  max-height: 150px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: filter 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
}

.sponsor-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
  .sponsor-item img {
    height: 80px;
    max-height: 80px;
  }
}

/* Marquee gradient mask */
.sponsors-marquee::before,
.sponsors-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sponsors-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.sponsors-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* =========================================
   12. FOOTER SECTION
========================================= */
.bandits-footer {
  background: var(--bandits-navy);
  color: var(--bandits-light);
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  border-top: 6px solid var(--bandits-teal);
}

/* 3‑Column Layout */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-items: start;
  gap: 10rem;
  margin-top: 2rem;
}

/* Left Section */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  animation: footerFade 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

.footer-logo-mark {
  width: clamp(120px, 25vw, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

@media (max-width: 600px) {
  .footer-logo-mark {
    width: 180px;
    height: 180px;
  }
}

/* Section Titles */
.footer-section-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  /*opacity: 0;
  transform: translateY(4px);
  animation: titleFade 0.6s ease-out forwards;
  animation-delay: 0.3s;*/
}

/* Links Section */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--bandits-light);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--bandits-teal);
}

/* Social Section */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-social-icons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-social-icons a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social-icons a:hover {
  color: #00B2B2;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

/* Footer flag */
.footer-flag {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
  object-fit: contain;
}

/* =========================================
   13. SUPPORT HERO LAYOUT (RYNO)
========================================= */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-left {
  flex: 0 0 65%;
  max-width: 65%;
}

.hero-right {
  flex: 0 0 35%;
  max-width: 35%;
}

.hero-quote {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.25rem;
  line-height: 1.45;
}

.hero-quote-author {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* CTA styling */
.hero-cta {
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .hero-right {
    margin-top: 1.5rem;
  }
}

.hero-qr {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 3rem;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.qr-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Support text becomes the primary message */
.hero-support-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 1;
  max-width: 650px;
  margin-top: 1rem;
  line-height: 1.55;
}

/* Secondary CTA button */
.btn-secondary-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--bandits-teal);
  color: var(--bandits-navy);
  transform: translateY(-2px);
}

.title-fade {
  opacity: 0;
  transform: translateY(4px);
  animation: titleFade 0.6s ease-out forwards;
}

.player-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.player-img-wrap img {
  object-position: center center;
}

/*-----------------------------------------------------------*/
/*						CONTACT STICKY TAB					 */
/*-----------------------------------------------------------*/
/* Sticky Contact Tab */
.contact-tab {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--bandits-teal);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Hover effect */
.contact-tab:hover {
  background: var(--bandits-teal-dark);
  transform: translateY(-50%) translateX(4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    left: 0;
    writing-mode: vertical-rl;
  }
}

.bandits-modal-wide {
  max-width: 650px;   /* default Bootstrap is ~500px */
  width: 90%;         /* keeps it responsive */
}

/* Desktop/tablet: wide modal */
.bandits-modal-wide {
  max-width: 650px;
  margin: 1.75rem auto;
}

/* Large screens */
@media (min-width: 992px) {
  .bandits-modal-wide {
    max-width: 720px;
  }
}

/* Mobile: shrink + center */
@media (max-width: 600px) {
  .bandits-modal-wide {
    max-width: 90vw;
    width: auto;
    margin: 1.5rem auto;
  }
}


.contact-social-block {
  text-align: center;
}

.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.contact-social-icons a {
  font-size: 1.4rem;
  color: var(--bandits-teal);
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-social-icons a:hover {
  color: var(--bandits-teal-dark);
  transform: translateY(-2px);
}

/* Modal Social Section */
.modal-social-block {
  text-align: center;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

.modal-social-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--bandits-navy);
  margin-bottom: 0.75rem;
}

.modal-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}

.modal-social-icons a {
  font-size: 1.9rem; /* increased size */
  color: var(--bandits-teal);
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-social-icons a:hover {
  color: var(--bandits-teal-dark);
  transform: translateY(-3px);
}

.modal-backdrop,
.modal-backdrop.show,
.modal-backdrop.fade.show {
  background: linear-gradient(
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.65)
  ) !important;
  backdrop-filter: blur(6px) !important;
  opacity: 1 !important;
}

.player-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  filter: brightness(1.05) contrast(1.05);
}

.fa-contact {
    font-size: 1.2em; /* Adjust as needed */
	margin-top: 1em;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/																						MOBILE DESIGN																										  */
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 576px) {

  /* HERO */
  .hero-quote {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .hero-left,
  .hero-right {
    padding: 0 1rem;
    text-align: center;
  }

  .hero-cta {
    margin-top: 1.25rem;
  }

  .hero-logo {
    width: 140px; /* previously too small */
  }

  /* ACTION SHOTS */
  .action-slider img {
    height: 260px;
    object-fit: cover;
  }

  .swiper-pagination {
    bottom: 10px !important;
  }

  /* CONTACT MODAL */
  .modal-intro {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .modal-social-block {
    margin-top: 2rem;
  }

  .modal-social-icons a i {
    font-size: 1.4rem;
  }

  /* GLOBAL SPACING */
  section {
    padding: 2.5rem 1rem;
  }

  h2.section-title {
    font-size: 1.6rem;
  }

  .schedule-card,
  .roster-card,
  .sponsor-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {

  /* Center the entire schedule section */
  #schedule {
    text-align: center;
  }

  /* Center all schedule cards */
  #schedule .schedule-card {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center inner content */
  #schedule .schedule-card .row,
  #schedule .schedule-card .col,
  #schedule .schedule-card .col-md-6,
  #schedule .schedule-card .col-md-4,
  #schedule .schedule-card .col-md-8 {
    text-align: center;
    justify-content: center;
  }

  /* Center logos */
  #schedule .schedule-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  /* Center date badge */
  #schedule .schedule-date {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center titles + locations */
  #schedule .schedule-title,
  #schedule .schedule-location,
  #schedule .schedule-stature {
    text-align: center;
  }
}

@media (max-width: 576px) {

  /* Stack left + right vertically */
  .schedule-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Center the date badge */
  .schedule-date-badge {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center the right-side logo */
  .schedule-right {
    margin-top: 1rem;
    text-align: center !important;
  }

  .schedule-right img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  /* Center all left-side text */
  .schedule-left {
    text-align: center !important;
  }
}

@media (max-width: 576px) {

  /* Space between GameChanger and Hero */
  #schedule-widget {
    margin-bottom: 2.5rem;
  }

  /* HERO WRAPPER */
  .hero-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  #ryno .container {
    padding-left: 0;
    padding-right: 0;
  }

  #ryno .hero-left,
  #ryno .hero-right {
    width: 100%;
  }

  /* FORCE headline to sit correctly */
  #ryno .hero-left h1.display-1 {
    font-size: 2rem;
    line-height: 1.05;
    margin-top: 0 !important;
    margin-bottom: 0.6rem;
    padding: 0;
    text-align: center;
  }

  #ryno .hero-highlight {
    display: inline-block;
  }

  /* SUPPORT TEXT SMALLER */
  #ryno .hero-support-text {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
	padding: 0 1rem 0 1rem;
  }

  /* Hide quote + author on mobile */
  #ryno .hero-quote,
  #ryno .hero-quote-author {
    display: none !important;
  }

  /* QR + CTA */
  #ryno .hero-right {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  #ryno .hero-cta-block {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Smaller QR on mobile */
  #ryno .hero-qr {
    display: block;
    margin: 0 auto 0.75rem auto;
    max-width: 130px;
    width: 100%;
  }

  #ryno .hero-cta {
    display: inline-block;
    margin-top: 0.25rem;
  }
}
@media (max-width: 576px) {
  #gc-schedule-widget-i8fi iframe {
    min-height: 500px !important;   /* enough room for content */
    height: auto !important;        /* prevents giant empty space */
    display: block;
    width: 100% !important;
  }
}

@media (max-width: 576px) {

  /* Reduce bottom padding of the GameChanger section */
  #schedule-widget.schedule-section,
  #schedule-widget {
    padding-bottom: 0.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  /* Reduce top padding of the hero section */
  #ryno .hero-section {
    padding-top: 0.5rem !important;
  }
}

@media (max-width: 576px) {

  /* Center everything inside the About section */
  #about .row {
    text-align: center;
    justify-content: center;
  }

  #about .col-lg-6 {
    text-align: center;
  }

  #about h2,
  #about .accent-bar,
  #about .about-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  #about .about-text{
	  padding: 0 1rem 0 1rem;
  }

  /* Center the CTA buttons */
  #about .d-flex.gap-3.flex-wrap.mt-4 {
    justify-content: center;
  }

  /* Image is already in a text-center col, but this guarantees it */
  #about .about-photo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 576px) {

  /* Remove container padding */
  #about .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Remove row gutters */
  #about .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Remove column padding */
  #about .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* TRUE full-bleed image */
  #about .about-photo {
    width: 100% !important;        /* not 100vw */
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    display: block;
  }
}

@media (max-width: 576px) {
  body .contact-tab {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 576px) {

  /* Force roster cards to stack full-width */
  #roster .col-6,
  #roster .col-md-4,
  #roster .col-lg-3 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Add clean spacing between cards */
  #roster .player-card {
    margin-bottom: 1.5rem;
  }

  /* Optional: tighten card height on mobile */
  #roster .card-front,
  #roster .card-back {
    min-height: 380px; /* adjust if needed */
  }
}

@media (max-width: 576px) {

  /* Force each premier sponsor to take full width */
  .biggest-sponsors .biggest-sponsor-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* Make the logos scale cleanly */
  .biggest-sponsors .biggest-sponsor-item img {
    width: 70%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* Center the "Premier Sponsors" label */
  .biggest-sponsors-label {
    text-align: center;
  }
}

@media (max-width: 576px) {

  /* Reduce space under the subtitle */
  #sponsors-strip .section-subtitle {
    margin-bottom: 1.25rem !important;
  }

  /* Pull the Premier Sponsors label up a bit */
  #sponsors-strip .biggest-sponsors-label {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
    text-align: center;
  }
}

@media (max-width: 576px) {

  /* Remove rounding from every action-shot image, no matter the class */
  #action-shots img,
  #action-shots .swiper-slide img,
  #action-shots .action-photo,
  .action-photo,
  .swiper-slide img {
    border-radius: 0 !important;
  }
}

@media (max-width: 576px) {

  /* Remove radius from every container in the action-shots section */
  #action-shots,
  #action-shots * {
    border-radius: 0 !important;
  }

  /* Ensure images themselves are flat too */
  #action-shots img {
    border-radius: 0 !important;
  }
}

@media (max-width: 576px) {

  /* Smaller chevrons */
  #action-shots .swiper-button-next,
  #action-shots .swiper-button-prev {
    width: 28px !important;
    height: 28px !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0.7);
  }

  /* Pull them slightly inward */
  #action-shots .swiper-button-next {
    right: 6px !important;
  }

  #action-shots .swiper-button-prev {
    left: 6px !important;
  }
}

@media (max-width: 576px) {

  /* Force Swiper arrows to the vertical center */
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    top: 50% !important;
    transform: translateY(-50%) scale(0.6) !important;
    width: 28px !important;
    height: 28px !important;
  }

  .swiper .swiper-button-next {
    right: 6px !important;
  }

  .swiper .swiper-button-prev {
    left: 6px !important;
  }
}

@media (max-width: 576px) {

  /* Hide CTA buttons */
  #about .d-flex.gap-3.flex-wrap.mt-4 {
    display: none !important;
  }

  /* Hide the right-side image */
  #about .about-photo {
    display: none !important;
  }
}

@media (max-width: 576px) {

  /* Hide original CTA buttons */
  #about .d-flex.gap-3.flex-wrap.mt-4 {
    display: none !important;
  }

  /* Hide the About image */
  #about .about-photo {
    display: none !important;
  }

  /* Show + center the mobile-only Contact button */
  #about .about-mobile-contact {
    display: block !important;
    margin-top: 1.25rem;
    text-align: center;
    width: 100%;
  }

  /* Center the button without changing its size */
  #about .about-mobile-contact a {
    display: inline-block;
    width: auto;
  }
}

@media (max-width: 576px) {

  /* Make the mobile button wrapper behave like a normal CTA row */
  #about .about-mobile-contact {
    display: flex !important;
    justify-content: center;
    margin-top: 1.25rem;
    width: 100%;
  }

  /* Let the button size itself naturally */
  #about .about-mobile-contact a {
    width: auto !important;
  }
}

#about .about-mobile-contact {
  display: none;
}


@media (max-width: 576px) {

  /* Ensure hero can hold the drip */
  #hero {
    position: relative;
    overflow: hidden;
  }

  /* Melted ice cream drip */
  #hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;

    /* Soft, melty drip mask */
    mask-image: url("data:image/svg+xml;utf8,\
      <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'>\
        <path d='M0 0 
                 C10 15 15 15 25 5 
                 C35 -5 45 10 50 15 
                 C55 20 65 10 75 5 
                 C85 0 95 10 100 0 
                 V20 H0 Z' fill=\"white\"/>\
      </svg>");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    /* Color of the drip (should match next section background) */
    background: #ffffff;
  }
}

/* Modal header branding */
.bandits-modal-header {
  background: var(--bandits-navy);
  color: var(--bandits-light);
}

/* Wide modal on desktop */
.bandits-modal-wide {
  max-width: 720px;
  margin: 1.75rem auto;
}

/* Mobile: shrink + center */
@media (max-width: 600px) {
  .bandits-modal-wide {
    max-width: 90vw !important;
    width: auto !important;
    margin: 1.5rem auto !important;
  }
}

@media (max-width: 600px) {
  #contactModal .modal-social-block,
  #contactModal .modal-social-title,
  #contactModal .modal-social-icons {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  #contactModal .modal-social-icons a {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  #contactModal .intro-a,
  #contactModal .intro-b {
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  #contactModal * {
    outline: 1px solid red;
  }
}

@media (max-width: 600px) {
  #contactModal .modal-body {
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  #contactModal .modal-body p.modal-intro {
    text-align: center !important;
    display: block;
    width: 100%;
  }
}

@media (max-width: 600px) {
  #contactModal .modal-body p.modal-intro {
    text-align: center !important;
    max-width: 90%;
    margin: 0 auto 1.25rem;
    display: block;
  }
}

@media (max-width: 600px) {
  #contactModal .modal-body {
    display: block !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  #contactModal .modal-intro {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  #hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: auto !important;
    height: auto !important;
  }

  #hero img {
    max-width: 120px !important;
  }

  #hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.1;
  }

  #hero p.lead {
    font-size: 1rem !important;
    margin-bottom: 1.25rem;
  }

  #hero .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  #hero img {
    max-width: 120px !important;
  }

  #hero h1 {
    font-size: 2.75rem !important;
    line-height: 1.1;
  }

  #hero p.lead {
    font-size: 1rem !important;
    margin-bottom: 1.25rem;
  }

  #hero .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #hero {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  #hero img {
    max-width: 120px !important;
  }

  #hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.1;
  }

  #hero p.lead {
    font-size: 1rem !important;
    margin-bottom: 1.25rem;
  }

  #hero .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    display: block !important;
  }

  #hero img {
    max-width: 120px !important;
  }

  #hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.1;
  }

  #hero p.lead {
    font-size: 1rem !important;
    margin-bottom: 1.25rem;
  }

  #hero .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  #hero {
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    overflow: visible !important;
  }
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* =========================================
   FIXED BACK BUTTON (DESKTOP + MOBILE)
   ========================================= */
.btn-back {
  background: transparent;
  color: var(--bandits-navy);
  font-weight: 600;
  padding: 0.45rem 1.1rem 0.45rem 2.4rem; /* more space for arrow */
  border-radius: 50px;
  border: 2px solid var(--bandits-grey);
  transition: all 0.25s ease;
  position: relative;
  margin-top: 0.75rem;

  /* Prevent iOS Safari from applying native button styles */
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-back::before {
  content: "◀";
  position: absolute;
  left: 16px; /* more spacing */
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--bandits-navy);
}

/* Remove grey pill hover globally */
.btn-back:hover,
.btn-back:active,
.btn-back:focus {
  background: transparent;
  color: var(--bandits-navy);
  transform: none;
}

.btn-back:hover::before,
.btn-back:active::before,
.btn-back:focus::before {
  color: var(--bandits-navy);
}

@media (max-width: 576px) {
  .card-back {
    padding-bottom: 140px !important; /* give the button room */
    height: auto !important;          /* allow the card to grow */
    min-height: 420px !important;     /* prevent clipping */
  }

  .player-card {
    height: auto !important;          /* allow full expansion */
    min-height: 420px !important;
  }

  .card-inner {
    height: auto !important;
    min-height: 420px !important;
  }
}