/* =========================
   Global Variables & Resets
=========================== */
:root {
  --primary: #FF6B6B;
  --secondary: #FFD93D;
  --accent: #6BCB77;
  --dark: #2D3436;
  --light: #ffffff;
  --gradient: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   Base Styles
=========================== */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* =========================
   Header & Navigation
=========================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(45, 52, 54, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 0.125rem 0.9375rem rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 7.5rem; /* approx 120px */
  height: auto;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.auth-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}

/* =========================
   Content Container
=========================== */
.content-container {
  max-width: var(--max-width);
  margin: 1rem auto; /* Reduced from 2rem auto */
  padding: 0 2rem;
}


/* =========================
   Hero Section
=========================== */
.hero {
  position: relative;
  background: url('media/hero-bg.webp') center center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Overlay for enhanced text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}


/* Hero content placed above the overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Hero Title Styling */
.hero-title {
  font-size: 3em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

/* Tagline / Bonus Info Styling */
.hero-tagline {
  font-size: 1.5em;
  margin-bottom: 1.5em;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* =========================
   Call-to-Action Buttons
=========================== */
/* Container to center inline buttons */
.button-container {
  text-align: center;
}

.cta-button {
  background: var(--gradient);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--light);
  display: inline-block; /* keeps buttons inline if multiple */
  margin: 1rem 0;        /* spacing above and below */
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1.5625rem rgba(255,107,107,0.4);
}

.cta-button.secondary {
  background: var(--secondary);
  color: var(--dark);
}

/* Centering additional action blocks */
.action-box {
  text-align: center;
}

/* =========================
   Cards & Section Blocks
=========================== */
.card {
  border-radius: 1.25rem;
  padding: 1rem;     /* Reduced from 2rem */
  backdrop-filter: blur(10px);
  margin: 0.5rem 0;  /* Reduced from 2rem 0 */
  position: relative;
}

/* Optional badge in cards */
.badge {
  position: absolute;
  top: -0.9375rem;
  right: 1.25rem;
  background: var(--accent);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
}

/* =========================
   Lists (Advantages, Demo, etc.)
=========================== */
.advantages-list,
.demo-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.advantages-list li,
.demo-list li {
  padding: 1rem;
  margin: 0.5rem 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* =========================
   Features Grid
=========================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-0.625rem);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* =========================
   Iframe Container (Demo)
=========================== */
#iframeContainer {
  position: relative;
  width: 100%;
  height: 50rem; /* 800px approx */
  margin-bottom: 1rem;
  background: url('media/hero-bg.webp') center/cover no-repeat;
}

#iframeContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

#iframeContainer iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   About Section
=========================== */
.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-details {
  flex: 1;
  min-width: 17.5rem;
}

.game-screen {
  max-width: 25rem;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.tech-specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.tech-specs th,
.tech-specs td {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-specs th {
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
}

/* =========================
   Provider Logos & Top Games
=========================== */
#providers,
#top-games {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
}

#providers h2,
#top-games h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

#providers h2::after,
#top-games h2::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  background: var(--accent);
  margin: 0.5rem auto;
  border-radius: 2px;
}

/* Grid for game cards */
.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
  gap: 2rem;
  justify-items: center;
}

.game-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--light);
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 0.9375rem rgba(0, 0, 0, 0.2);
}

.game-card img {
  width: 9.375rem;
  height: 9.375rem;
  object-fit: cover;
  display: block;
}

.game-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--light);
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--transition), transform var(--transition);
}

.game-card:hover .game-title-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure overlay is always visible on small screens */
@media (max-width: 768px) {
  .game-title-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional card elements */
.game-card .game-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.game-card .play-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.game-card .play-block img {
  width: 2.0625rem;
  height: 2.0625rem;
}

.game-card .play-text {
  font-size: 1rem;
  text-transform: uppercase;
}

.game-card a {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--gradient);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light);
  text-align: center;
}

/* =========================
   Payment Table
=========================== */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.payment-table,
.payment-table th,
.payment-table td {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-table th,
.payment-table td {
  padding: 0.75rem;
  text-align: left;
}

.payment-table th {
  background: rgba(255, 255, 255, 0.1);
}

.deposit-button {
  display: inline-block;
  background: var(--gradient);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--light);
  text-transform: uppercase;
}

/* =========================
   Footer
=========================== */
.site-footer {
  background: #1a1e1f;
  padding: 4rem 0;
  color: var(--light);
  text-align: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-col h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.site-footer a {
  color: var(--light);
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom {
  padding: 0.625rem 1.25rem;
  font-size: 0.9em;
}

/* =========================
   Responsive Adjustments
=========================== */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .about-content {
    flex-direction: column;
  }
  .payment-table {
    display: block;
    overflow-x: auto;
  }
  .site-footer {
    padding: 2rem 1rem;
  }
  .footer-col ul {
    list-style: none;
  }
  /* Two-column sections collapse */
  .two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-button {
    width: 100%;
    padding: 1rem;
  }
}

/* =========================
   Providers Intro
=========================== */
.providers-intro {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   Slider Container (for Providers if used)
=========================== */
.swiper-container.provider-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 auto;
}

.swiper-container.provider-slider .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.swiper-container.provider-slider .swiper-slide {
  width: 75px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Provider Card */
.provider-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.provider-card img {
  width: 75px;
  height: 45px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.provider-card img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* =========================
   Payment Methods Block
=========================== */
.payment-block {
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Intro Paragraph for Payments */
.payments-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-size: 1rem;
}

/* Payment Logos Wrapper */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* Individual Payment Card */
.payment-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.payment-card img {
  display: block;
  height: 30px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-card img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .payment-logos {
    gap: 1rem;
  }
  .payment-card {
    padding: 0.5rem;
  }
  .payment-card img {
    height: 25px;
  }
}

/* Scoped Payment Info Section */
#payment-info {
  overflow: hidden; /* Prevent any accidental overflow */
}

/* Two-Column Layout using Flexbox */
#payment-info .two-columns {
  display: flex;
  gap: 2rem;
}

/* Make the two columns share space equally */
#payment-info .left-col,
#payment-info .right-col {
  flex: 1;
  padding: 1rem;
}

/* Payment Logos Grid (Left Column) */
#payment-info .payment-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, 75px);
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

#payment-info .payment-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

#payment-info .payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#payment-info .payment-card img {
  width: 75px;
  height: 45px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

#payment-info .payment-card img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Payment Options Table (Right Column) */
#payment-info .payment-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

#payment-info .payment-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

#payment-info .payment-table th,
#payment-info .payment-table td {
  padding: 0.5rem;
  font-size: 0.8rem;
  text-align: left;
  white-space: normal;
  word-wrap: break-word;
}

/* =========================
   Mobile Adjustments
=========================== */
@media (max-width: 768px) {
  /* Stack columns vertically */
  #payment-info .two-columns {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Reduce padding for a more compact look */
  #payment-info .left-col,
  #payment-info .right-col {
    padding: 0.5rem;
  }
  
  /* Ensure payment logos grid remains consistent */
  #payment-info .payment-logos {
    grid-template-columns: repeat(auto-fill, 75px);
    gap: 0.5rem;
  }
  
  /* Payment Table adjustments: allow horizontal scrolling if needed */
  #payment-info .payment-table-container {
    width: 100%;
    overflow-x: auto;
  }
  
  #payment-info .payment-table th,
  #payment-info .payment-table td {
    font-size: 0.8rem;
  }
  
  /* Optionally, reduce overall card padding for mobile */
  #payment-info {
    margin: 1rem;
    padding: 1.5rem;
    width: calc(100% - 2rem);
  }
}

.promo-section {
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 850px;
  color: #ffffff;
}

.promo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.promo-intro {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.promo-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.promo-item::before {
  content: "🎁";  /* Emoji can be customized */
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.6rem;
  transform: rotate(15deg);
  background: #28a745;
  padding: 0.2rem;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-icon {
  font-size: 1.8rem;
  color: #28a745; /* Vibrant green accent */
  margin-right: 0.8rem;
}

.promo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #ffffff;
}

/* Shared Step Guide Styles */
.step-guide {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  background: transparent;
  color: var(--light);  /* White text */
  box-shadow: none;
}

.guide-title, .guide-intro, .guide-outro {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: var(--light);
}

.guide-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.guide-intro {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.guide-outro {
  font-size: 1rem;
  margin-top: 1.5rem;
}

.step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Vertical accent line */
.step-list::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.7;
  z-index: -1;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
}

.step-item:last-child {
  margin-bottom: 0;
}

/* Common sticker styling */
.step-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Step Content */
.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--light);
}

.step-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--light);
}

/* Unique Emoji Sets */

/* Registration Steps Emoji Set */
.registration-steps .step-item:nth-child(1)::before {
  content: "⚡";
}
.registration-steps .step-item:nth-child(2)::before {
  content: "📞";
}
.registration-steps .step-item:nth-child(3)::before {
  content: "✉️";
}
.registration-steps .step-item:nth-child(4)::before {
  content: "🤝";
}

/* Verification Steps Emoji Set */
.verification-steps .step-item:nth-child(1)::before {
  content: "🔑";
}
.verification-steps .step-item:nth-child(2)::before {
  content: "📝";
}
.verification-steps .step-item:nth-child(3)::before {
  content: "📱";
}
.verification-steps .step-item:nth-child(4)::before {
  content: "✉️";
}
.verification-steps .step-item:nth-child(5)::before {
  content: "📄";
}

/* Scoped Styles for #how-to-bet Section */
#how-to-bet {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: transparent; /* remove white background */
  border-radius: 12px;
  box-shadow: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff; /* all text white */
  overflow: hidden;
}

#how-to-bet .guide-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

#how-to-bet .step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#how-to-bet .step-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 1rem 1.5rem;  /* extra bottom padding for spacing */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* subtle white line */
  position: relative;
  transition: background 0.2s ease;
}

#how-to-bet .step-item:last-child {
  border-bottom: none;
}

/* Extra padding within the step content */
#how-to-bet .step-content {
  padding-bottom: 0.5rem;
}

#how-to-bet .step-item::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #007aff; /* blue badge */
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
  text-align: center;
  line-height: 32px;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Number each step */
#how-to-bet .step-item:nth-child(1)::before { content: "1"; }
#how-to-bet .step-item:nth-child(2)::before { content: "2"; }
#how-to-bet .step-item:nth-child(3)::before { content: "3"; }
#how-to-bet .step-item:nth-child(4)::before { content: "4"; }

#how-to-bet .step-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

#how-to-bet .step-item p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.spacer {
  height: 15px; /* Adjust this value as needed */
}

/* Fancy Card Styles */
.fancy-card {
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Body Text Styling */
.fancy-card-body p {
  font-size: 1.125rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Divider Line */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 1rem 0;
}

/* Troubleshooting List Styles */
.troubleshoot-list {
  list-style: none;
  padding: 0;
}

.troubleshoot-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.troubleshoot-list li i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

/* Promo Table Styles */
.promo-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.promo-table thead {
  background: rgba(255, 255, 255, 0.2);
}

.promo-table th,
.promo-table td {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 1rem;
  color: var(--light);
}

.promo-table th {
  font-weight: 600;
}

.promo-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Promo Disclaimer */
.promo-disclaimer {
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.8;
  text-align: center;
  margin-top: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .promo-table th,
  .promo-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .fancy-card-body p {
    font-size: 1rem;
  }
  .fancy-card-header h2 {
    font-size: 2rem;
  }
}

/* App Download Badges */
.app-download {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

.download-badge img {
  height: 60px; /* Adjust size as needed */
  transition: transform 0.3s ease;
}

.download-badge:hover img {
  transform: scale(1.05);
}

.system-requirements ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.system-requirements li {
  font-size: 1rem;
  color: var(--light);
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.system-requirements li i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .fancy-card-header h2 {
    font-size: 2rem;
  }
  .fancy-card-body p {
    font-size: 1rem;
  }
  .download-badge img {
    height: 50px;
  }
  .system-requirements h3 {
    font-size: 1.5rem;
  }
  .system-requirements li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .app-download {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Minimal carousel styling */
.carousel {
  overflow: hidden;
  display: flex;
  gap: 1rem; /* space between slides */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  /* Optionally set a width if needed, e.g.: */
  /* width: 300px; */
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary);
}

.swiper-pagination-bullet-active {
  background-color: var(--accent);
}

/* Providers grid styling */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
  gap: 15px;
  align-items: center;
  justify-items: center;
  padding: 1rem 0;
}

.providers-grid img {
  width: 75px;
  height: 45px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.providers-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.tech-specs a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tech-specs a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.support-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.8;
}


#faq details {
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
}
#faq summary {
  font-weight: bold;
  font-size: 1rem;
  outline: none;
}
#faq p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer {
  padding: 2rem;
  background-color: #181818;
  color: #ccc;
  text-align: center;
  font-size: 0.9rem;
}

.footer-disclaimer {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.footer-logo-social, .footer-links {
  margin-top: 1rem;
}

.footer-logo-social img.logo-icon {
  width: 150px;
  margin-bottom: 0.5rem;
}

.footer-links a, .social-links a {
  color: #ffd93d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover, .social-links a:hover {
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

#benefits {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 15px;
  padding: 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.intro, .summary {
  text-align: center;
  margin: 15px auto;
  font-size: 1.1rem;
  max-width: 800px;
  color: #f5f5f5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
}

.cta-button.primary {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button.primary:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

a:not(.cta-button), a:not(.cta-button):visited {
  color: var(--secondary); /* e.g., #FFD93D */
  text-decoration: none;
}

a:not(.cta-button):hover, a:not(.cta-button):active {
  color: var(--accent); /* your preferred hover color */
  text-decoration: underline;
}
