/* ===========================
   FONT IMPORTS
=========================== */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Thin.otf") format("opentype");
  font-weight: 100 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --about-orange: #d35b30;
  --about-black: #000;
  --about-white: #fff;
  --about-gray: #e0e0e0;
  --about-text-light: #cfcfcf;
  --about-font-main: "Helvetica Neue";
}

/* ===========================
     BASE STYLES
  =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", 'Inter', sans-serif;
  letter-spacing: normal !important;
}

html {
  font-size: 16px;
}

body {
  background-color: #000;
  color: white;
  scroll-behavior: smooth;
}
/* ===========================
   NAVBAR
=========================== */
.navbar {
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 2px solid #1e1e1e;
}

/* ===========================
   LOGO SECTION
=========================== */
.logo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.logo {
  height: 45px;
}

/* Desktop Logo (default) */
.desktop-logo {
  display: block;
}

/* Mobile Logo (hidden by default) */
.mobile-logo {
  display: none;
}

/* Tagline */
.tagline {
  font-size: 14px;
  color: #ccc;
}
.logo-link {
  text-decoration: none;
}

/* ===========================
   NAV LINKS
=========================== */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff8552;
}

.nav-links a.active {
  color: #d35b30;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #d35b30;
  border-radius: 1px;
}

/* ===========================
   LOGIN SECTION
=========================== */
.login-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn {
  background-color: #c96a44;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: normal !important;
  
}

.login-btn:hover {
  background-color: #d87e5a;
}

.user-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* ===========================
   MOBILE MENU ICON
=========================== */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  position: relative;
  z-index: 110;
}

.hamburger,
.close-icon {
  transition: opacity 0.3s ease;
}

.close-icon {
  display: none;
  font-size: 28px;
  color: white;
}


@media (max-width: 1100px) {
  .nav-links {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #000;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    display: none;
    animation: slideDown 0.4s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-icon {
    display: block;
  }

  .login-section {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-links a {
    font-size: 20px;
    padding: 15px;
    text-align: center;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  /* Swap logos */
  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
   
  }

  .tagline {
    display: none;
  }

  .logo-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .login-section {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .login-btn {
    font-size: 15px;
    padding: 6px 16px;
    border-radius: 6px;
  }

  .login-btn:hover {
    background-color: #e6892f;
  }

  .user-icon img {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    flex-direction: column;
    gap: 18px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 28px;
    color: white;
  }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
     HERO SECTION (Play the Game)
  =========================== */
  .hero-section {
    background-color: #000;
    padding: 6rem 8rem 0; /* Adjusted padding */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 4rem;
  }
  
  .hero-container {
    display: flex;
    align-items: center; /* Ensure both text and video align vertically */
    justify-content: space-between;
    width: 100%;
    max-width: 1500px; /* Adjusted to match image proportions */
    gap: 5rem; /* Reduced gap for better alignment */
  }
  
  /* LEFT SIDE TEXT */
  .hero-text {
    flex: 1;
    max-width: 650px; /* Adjusted for better alignment */
    font-family: "Helvetica Neue", 'Inter', sans-serif;
  }
  
  .hero-text h2 {
    color: #D35B30;
    font-size: 2rem; /* Adjusted for better scaling */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px; /* Reduced margin */
  }
  
  .hero-text p {
    color: #ffffff;
    font-size: 24px; /* Adjusted font size */
    font-weight: 400;
    line-height: 1.6; /* Increased line-height for better readability */
    margin-bottom: 20px; /* Reduced margin for better spacing */
    font-family: "Helvetica Neue", 'Inter', sans-serif;
  }
  
  .hero-text p span {
    font-weight: 300;
    color: #bbb; /* Slightly lighter color for subtext */
  }
  
  .hero-text strong {
    font-weight: 800;
    color: #fff;
  }
  
  /* Buttons */
  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem; /* Increased gap for better button spacing */
    margin-top: 30px; /* Reduced margin */
  }
  
  .join-btn-hero {
    background-color: #c96a44;
    color: #000;
    border: none;
    padding: 18px 40px; /* Adjusted padding */
    font-size: 0.80rem; /* Adjusted font size */
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: normal !important;
  }
  
  .join-btn-hero:hover {
    background-color: #d87e5a;
  }
  
  .store-btn {
    height: 50px; /* Slightly adjusted size */
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .store-btn:hover {
    transform: scale(1.05);
  }
  
  /* RIGHT VIDEO */
  .hero-video {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .video-frame {
    width: 100%;
    max-width: 850px; /* Increased max-width to ensure larger video display */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  }
  
  .video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
  
  /* ===========================
         RESPONSIVE DESIGN (For Smaller Devices)
      =========================== */
  @media (max-width: 1200px) {
    .hero-container {
      flex-direction: column; /* Stack content and video vertically */
      gap: 2rem; /* Adjusted gap for stacked layout */
      justify-content: center; /* Ensure text and video are centered */
    }
  
    .hero-text {
      text-align: center; /* Center the text for mobile */
      max-width: 100%; /* Ensure text takes full width on smaller screens */
      padding: 0 1rem; /* Add padding for better spacing */
    }
  
    .hero-video {
     
      order: 2; /* Ensures video comes below text */
    }
  
    .video-frame {
      max-width: 100%; /* Make the video responsive on mobile */
    }
  
    .hero-text h2 {
      font-size: 2.5rem; /* Adjust font size for smaller screens */
    }
  
    .hero-text p {
      font-size: 1.1rem; /* Adjust font size for better readability */
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
     
      padding: 4rem 1rem; /* Adjusted padding */
     
    }
    .hero-text h2 {
      font-size: 2rem; /* Smaller font size for mobile */
    }
  
    .hero-text p {
      font-size: 1rem; /* Adjust font size for better readability on mobile */
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  
    .hero-video {
      display: block; /* Ensure the video remains visible on mobile */
      width: 100%; /* Ensure the video takes full width */
    }
  
    .video-frame {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 480px) {
    .hero-section {
     
      padding: 4rem 1rem; /* Adjusted padding */
     
    }
    .hero-text {
      padding: 0 0.5rem; /* More padding on smaller mobile screens */
    }
  
    .hero-text h2 {
      font-size: 1.8rem; /* Further reduce font size for small screens */
    }
  
    .hero-text p {
      font-size: 0.9rem; /* Further reduce font size for small screens */
    }
  
    .hero-buttons {
      gap: 1.5rem;
    }
  
    .video-frame {
      width: 100%;
      height: auto; /* Ensure video scales correctly */
    }
  }
  

  
/* ==============================
   LIVE GAMES SECTION
============================== */
.live-games {
  background: #000;
  color: #fff;
  padding: 6rem 8rem 0;
  overflow: hidden;
}

.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.live-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.countdown {
  color: #D35B30;
  font-size: 26px;
  font-weight: 600;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  flex-wrap: wrap;  /* Allow wrapping of game cards */
  justify-content: space-around; /* Center the cards */
}

/* ===========================
   GAME CARD STYLING
=========================== */
.game-card {
  background: #000;
  border: 1px solid #333;
  border-radius: 14px;
  width: 320px;
  flex-shrink: 0;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: "Helvetica Neue", "Inter", sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(216, 108, 73, 0.25);
}

.game-card .challenge {
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.goal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.game-type {
  color: #888;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 26px;
}

/* Teams row */
.team-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.team-logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.vs {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

/* Status & time */
.status {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.time {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 16px;
}

/* Team names */
.team-names {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.team-name {
  color: #D35B30;
  font-weight: 600;
  font-size: 16px;
}

.team-name.right {
  text-align: right;
}

/* Coming soon card variant */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon .goal-title {
  color: #ccc;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.coming-soon .coming-text {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(216, 108, 73, 0.6);
}

.coming-soon .time {
  color: #999;
  font-size: 16px;
}


@media (max-width: 1024px) {
  .live-games {
    padding: 4rem 2rem;
  }

  .slider {
    gap: 15px;
  }

  .game-card {
    width: 270px; /* Slightly smaller for medium screens */
    padding: 30px 20px;
  }

  .goal-title {
    font-size: 18px;
  }

  .game-type {
    font-size: 14px;
  }

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

  .status {
    font-size: 16px;
  }

  .time {
    font-size: 14px;
  }

  .live-header h2 {
    font-size: 2rem;
  }

  .countdown {
    font-size: 1.6rem;
  }

  .coming-soon .goal-title {
    font-size: 16px;
  }

  .coming-soon .coming-text {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .slider {
    gap: 15px;  /* Space between cards */
    justify-content: center; /* Center the cards */
  }

  .game-card {
    width: calc(50% - 10px); /* Set width to 50% for two cards per row */
    margin-bottom: 20px; /* Space between rows */
  }

  .goal-title {
    font-size: 16px;
  }

  .game-type {
    font-size: 12px;
  }

  .team-logo {
    width: 55px;
    height: 55px;
  }

  .status {
    font-size: 14px;
  }

  .time {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .slider {
    gap: 10px; /* Adjust gap between cards */
    justify-content: center; /* Ensure center alignment */
  }

  .game-card {
    width: 100%; /* Full-width cards on mobile */
    padding: 20px 15px;
  }

  .goal-title {
    font-size: 16px;
  }

  .game-type {
    font-size: 12px;
  }

  .team-logo {
    width: 50px;
    height: 50px;
  }

  .status {
    font-size: 14px;
  }

  .time {
    font-size: 12px;
  }

  .live-header h2 {
    font-size: 1.6rem;
  }

  .countdown {
    font-size: 1.4rem;
  }

  .coming-soon .goal-title {
    font-size: 14px;
  }

  .coming-soon .coming-text {
    font-size: 22px;
  }
}


/* ===========================
   STEPS SECTION
=========================== */
.steps-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

.steps-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.steps-header .highlight {
  color: #D35B30;
}

.steps-header .subheading {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ddd;
  margin-bottom: 80px;
}

/* 3 Steps */
.steps-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 100px;
}

.step {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.step-number {
  background-color: #D35B30;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  /* font-size: 2rem !important; */
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
/* ===========================
     EPIC PRIZES SECTION
  =========================== */
  .epic-prizes {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 6rem 8rem 0;
    overflow: hidden;
  }
  
  .epic-prizes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: left;
    letter-spacing: 0.5px;
  }
  
  /* ===== Combined Box Layout ===== */
  .prizes-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
    height: 550px;
    width: 100%;
  }
  
  /* ===== LEFT SIDE (Scrollable Cards) ===== */
  .prizes-slider {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    height: 100%;
    overflow-y: auto;
    padding-right: 1rem;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
    scrollbar-color: #555 transparent;
  
    /* fade top/bottom visibility */
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  }
  
  .prizes-slider::-webkit-scrollbar {
    width: 6px;
  }
  
  .prizes-slider::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 4px;
  }
  
  .prize-card {
    background: #fff;
    color: #000;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 340px;
    height: 390px;
    border: 1px solid #fff;
    cursor: pointer;
    padding: 10px;
  }

  
  .prize-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }
  
  .prize-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
  }
  
  .prize-info {
    padding: 1.2rem;
    text-align: left;
  }
  
  .prize-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: inherit;
  }
  
  .prize-info ul {
    margin-left: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
  }
  
  /* ===== RIGHT SIDE (Dynamic Info Card) ===== */
  .dark-card {
    background: #1a1a1a;
    color: #fff;
    flex: 2; /* This makes the card take more space */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 100%; /* Ensure it's full width */
  }
  
  .dark-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .dark-card ul {
    margin-left: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  .dark-card p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Active card highlight */
  .prize-card.active {
    border: 2px solid #00b2ff;
    transform: scale(1.03);
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .prizes-box {
      flex-direction: column;
      height: auto;
    }
  
    /* Adjust scrollable cards layout */
    .prizes-slider {
      flex: 1;
      overflow-x: scroll;
      display: flex;
      flex-direction: row;
      gap: 1rem;
      padding: 1rem;
    }
  
    .prize-card {
      height: auto;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    .dark-card {
      padding: 1.5rem;
      flex: 1;
    }
  
    .prize-info h3 {
      font-size: 1.1rem;
    }
  
    .dark-card h3 {
      font-size: 1.4rem;
    }
  
    .prize-info ul,
    .dark-card ul {
      font-size: 0.9rem;
    }
  
    .dark-card p {
      font-size: 0.85rem;
    }
  }
  
.footer {
  text-align: center;
  padding: 30px;
  background-color: #000;
  border-top: 2px solid #222;
  color: #888;
}


/* =============================
   FAQ SECTION STYLES
============================= */

.faq-section {
  background: #000;
  color: #fff;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: left;
  letter-spacing: 0.5px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* ===== Each FAQ item ===== */
.faq-item {
  border-bottom: 1px solid #222;
  padding-bottom: 1.2rem;
}

/* ===== Question ===== */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none; /* Removes blue browser outline */
  box-shadow: none; /* Removes glow border */
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.6rem 0;
  transition: none; /* Disable hover/focus animations */
}

/* No hover styles */
.faq-question:hover {
  color: #fff !important;
  background: none !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
}

/* No outline when focused */
.faq-question:focus,
.faq-question:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}


/* ===== Icon Image ===== */
.faq-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}

/* ===== Answer Panel ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #bcbcbc;
  font-size: 1.05rem;
  line-height: 1.7;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.8rem;
}

/* =============================
   RESPONSIVE DESIGN
============================= */

/* For screens under 1200px */
@media (max-width: 1200px) {
  .faq-section {
    padding: 5rem 4rem 0;
  }
}

/* For tablets under 992px */
@media (max-width: 992px) {
  .faq-section {
    padding: 4rem 3rem 0;
  }

  .faq-section h2 {
    font-size: 2.2rem;
  }
}

/* For small tablets and large phones */
@media (max-width: 768px) {
  .faq-section {
    padding: 3.5rem 2rem 0;
  }

  .faq-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}

/* For mobile phones */
@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 1.2rem 0;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* ===========================
   RESPONSIVE DESIGN (For <= 1100px)
=========================== */
@media (max-width: 1100px) {

  /* Steps Section */
  .steps-section {
    padding: 6rem 4rem;
    /* Adjust padding for smaller screens */
    text-align: center;
    /* Centering content */
  }

  .steps-container {
    flex-direction: column;
    /* Stack steps vertically */
    gap: 2rem;
    /* Adjusted gap */
    margin-bottom: 50px;
    /* Reduced margin */
    justify-content: center;
    /* Center content */
    align-items: center;
    /* Center align items */
    width: 100%;
    /* Ensure full width */
  }

  .step {
    max-width: 100%;
    align-items: center;
    /* Center elements */
    text-align: center;
    /* Center the text */
    margin-bottom: 2rem;
    /* Added margin between steps */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ensure elements are centered */
  }

  .step-number {
    font-size: 2rem;
    /* Adjusted font size */
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    /* Center the number and add margin below */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d35b30;
    /* Circle color */
    border-radius: 50%;
    color: #fff;
    /* White text color */
    font-weight: 700;
  }

  .step-content h3 {
    font-size: 1.4rem;
    /* Adjusted for mobile size */
    margin: 0;
    /* Ensures consistent spacing */
  }

  .step-content p {
    font-size: 1rem;
    margin: 0;
    /* Ensures consistent spacing */
  }

  
}


/* ===========================
   CTA BOX (Default for Desktop)
=========================== */
.cta-box {
  background-color: #D35B30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 60px 80px;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

/* LEFT CONTENT */
.cta-left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 600px;
}

.cta-left p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-buttons img {
  height: 45px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-buttons img:hover {
  transform: scale(1.05);
}

/* RIGHT CONTENT */
.cta-right {
  text-align: right;
}

.cta-right h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000; /* 'First Month' black */
  margin-bottom: 20px;
}

.cta-right h3 span {
  color: #fff; /* 'FREE' white */
  font-weight: 800;
}

/* JOIN BUTTON */
.join-now {
  background: #fff;
  color: #c96a44;
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-now:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE DESIGN (1200px & BELOW)
=========================== */
@media (max-width: 1200px) {
  .cta-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .cta-left {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .cta-left p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-right {
    text-align: center;
  }

  .cta-right h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }

  .join-now {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 12px 32px;
  }
}

/* ===========================
   MOBILE OPTIMIZATION
=========================== */
@media (max-width: 768px) {
  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-left p {
    font-size: 1.1rem;
  }

  .cta-buttons img {
    height: 38px;
  }

  .cta-right h3 {
    font-size: 1.3rem;
  }

  .join-now {
    font-size: 0.95rem;
    padding: 10px 26px;
  }
}

@media (max-width: 480px) {
  .cta-left p {
    font-size: 1rem;
  }

  .cta-right h3 {
    font-size: 1.2rem;
  }

  .join-now {
    font-size: 0.9rem;
    padding: 10px 22px;
  }
}

---- Amisha


/* ===========================
   GLORY SECTION
=========================== */
.glory-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glory-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.glory-content h1 {
  font-family: "Helvetica Neue", "Inter", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.3;
  /* More vertical space */
  letter-spacing: 0.08em;
  /* Spacing between letters */
  color: #f1e6d4;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.glory-content .highlight {
  color: #d35b30;
  display: inline-block;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
}

/* SLAMIT + Heart */
.glory-content .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #f1e6d4;
  font-size: 5rem;
  gap: 1.5rem;
  /* space between SLAMIT and heart */
  margin-top: 1rem;
  letter-spacing: 0.08em;
}

.glory-heart {

  transform: translateY(5px);
}

/* Tagline */
.glory-content .tagline {
  color: #d35b30;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

/* ====== JOIN BUTTON ====== */
.join-btn-glory {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 4px solid #fff;
  border-radius: 32px;
  /* matches Figma corner radius */
  font-family: "Helvetica Neue", "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 1.5rem 5rem;
  /* balanced proportions */
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.join-btn-glory:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}


/* ====== Store Buttons ====== */
.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.store-buttons img {
  width: 170px;
  height: auto;
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .glory-content h1 {
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .glory-content .brand {
    font-size: 2.8rem;
    gap: 0.8rem;
  }

  .glory-heart {
    width: 36px;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .join-btn {
    font-size: 1rem;
    padding: 1rem 2.8rem;
  }
}

/* Tablets and small laptops */
@media (max-width: 768px) {
  .glory-content h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  .glory-content .brand {
    font-size: 2rem;
    gap: 0.6rem;
  }

  .glory-heart {
    width: 28px;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .join-btn {
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
  }

  .store-buttons img {
    width: 130px;
  }
}

/* Mobile (portrait phones) */
@media (max-width: 480px) {
  .glory-section {
    padding: 4rem 1.5rem;
  }

  .glory-content h1 {
    font-size: 1.9rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
  }

  .glory-content .brand {
    font-size: 1.6rem;
    gap: 0.5rem;
  }

  .glory-heart {
    width: 22px;
  }

  .tagline {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .join-btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.8rem;
    border-width: 3px;
  }

  .store-buttons img {
    width: 110px;
  }
}

/* ===========================
   UPCOMING EVENTS SECTION
=========================== */
.events-section {
  background-color: #000;
  color: #fff;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

.events-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Grid Layout ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* ===== Event Card ===== */
.event-card {
  background-color: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ===== Image + Overlay ===== */
.event-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 10%,
      rgba(0, 0, 0, 0.65) 75%);
}

.event-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.8rem 1.2rem;
  z-index: 2;
  text-align: left;
}

.event-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.event-text p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.45;
  margin: 0;
}

/* ===== Card Content ===== */
.event-content {
  background: #0c0c0c;
  padding: 1.8rem;
}

.event-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.event-content ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: #f1e6d4;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.event-content ul li .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ===== Button ===== */
.event-content button {
  background-color: #D35B30;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s ease;
}

.event-content button:hover {
  transform: scale(1.02);
}

/* ===========================
   RESPONSIVE (Typography Scaling)
=========================== */

/* Tablets */
@media (max-width: 1024px) {
  .events-section {
    padding: 4rem 3rem;
  }

  .events-section h2 {
    font-size: 2.2rem;
  }

  .event-text h3 {
    font-size: 1.6rem;
  }

  .event-text p {
    font-size: 0.95rem;
  }

  .event-content ul li {
    font-size: 0.95rem;
  }

  .event-content button {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-image {
    height: 220px;
  }

  .event-text h3 {
    font-size: 1.5rem;
  }

  .event-text p {
    font-size: 0.9rem;
  }

  .event-content {
    padding: 1.5rem;
  }

  .event-content ul li {
    font-size: 0.9rem;
  }

  .event-content button {
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .events-section {
    padding: 3rem 1.5rem;
  }

  .events-section h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .event-image {
    height: 200px;
  }

  .event-text h3 {
    font-size: 1.3rem;
  }

  .event-text p {
    font-size: 0.85rem;
  }

  .event-content ul li {
    font-size: 0.85rem;
  }

  .event-content button {
    font-size: 0.85rem;
    padding: 0.8rem;
  }
}

/* ===========================
   PAST WINNERS SECTION
=========================== */
.winners-section {
  background-color: #000;
  color: #fff;
  padding: 6rem 8rem 0;
  display: flex;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

.winners-container {
  background-color: #111;
  padding: 3rem 2rem;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.winners-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 3rem;
}

.winners-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

/* ===== Individual Winner ===== */
.winner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.winner-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #D35B30;
  padding: 3px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.winner-item:hover .winner-img {
  transform: scale(1.05);
}

.winner-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1e6d4;
  margin-bottom: 0.4rem;
}

.winner-info p {
  font-size: 0.95rem;
  color: #bbb;
  max-width: 160px;
  line-height: 1.4;
}

/* ===== Divider ===== */
.divider-winner {
  width: 1px;
  height: 80px;
  background-color: #9B9B9B;
}

/* ===== 2 Winners per Row (Below 1500px) ===== */
@media (max-width: 1500px) {
  .winners-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }

  .winner-item {
    flex: 0 1 calc(50% - 3rem);
    /* Two per row */
    justify-content: center;
  }

  .divider-winner {
    display: none;
    /* Optional: hide vertical dividers when wrapping */
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .winners-section {
    padding: 5rem 4rem;
  }

  .winner-img {
    width: 80px;
    height: 80px;
  }

  .winners-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .winners-container {
    padding: 2.5rem 1.5rem;
  }

  .winners-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }

  .divider-winner {
    display: none;
  }

  .winner-item {
    flex-direction: column;
    text-align: center;
  }

  .winner-info p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .winners-section {
    padding: 4rem 1.5rem;
  }

  .winner-img {
    width: 75px;
    height: 75px;
  }

  .winners-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .winner-info h3 {
    font-size: 1rem;
  }

  .winner-info p {
    font-size: 0.85rem;
  }
}


/* ===========================
   TOGETHER SECTION
=========================== */

.together-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

.together-content {
  /* Matches Figma width */
  margin: 0 auto;
}

.together-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
}

.together-content .subtitle {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.together-content strong {
  color: #f1e6d4;
  font-weight: 600;
}

/* ===== Video Frame ===== */
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  display: inline-block;
  width: 100%;
  max-width: 918px;
}

.video-frame video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1200px) {
  .together-section {
    padding: 6rem 2rem;
  }

  .together-content h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .together-content .subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .video-frame {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .together-section {
    padding: 5rem 1.5rem;
  }

  .together-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .together-content .subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .video-frame {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .together-section {
    padding: 4rem 1rem;
  }

  .together-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .together-content .subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .video-frame {
    max-width: 100%;
  }
}

/* ==============================
   HEAR FROM OUR AMBASSADORS
============================== */
.ambassadors-section {
  background-color: #000;
  color: #fff;
  padding: 6rem 8rem 0;
  font-family: "Inter", sans-serif;
}

.container-ambassadors {
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

.highlight {
  color: #d76533;
  /* orange accent */
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.episode-group {
  margin-bottom: 4rem;
}

.divider {
  border: none;
  border-bottom: 1px solid #333;
  margin: 3rem 0;
}

.episode-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.play-all {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.play-all:hover {
  color: #d76533;
}

.play-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(215, 101, 51, 0.3);
}

.video-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.1rem;
  }

  .video-grid {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .episode-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .ambassadors-section {
    padding: 4rem 1rem;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   MEMBERSHIP SECTION
============================== */
.membership-section {
  background-color: #000;
  padding: 6rem 8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Card Container ===== */
.membership-card {
  background: url("../frame.png") no-repeat center/cover;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4rem 3rem;
  color: #000;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  gap: 2rem;
}

/* ===== Left Content ===== */
.membership-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 1rem 2rem;
}

.membership-content .title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #111;
}

.membership-content .subtitle {
  color: #d35b30;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.membership-content .price {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #111;
}

/* ===== App Store Buttons ===== */
.store-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.store-buttons img {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

/* ===== Join Button ===== */
.join-btn {
  background-color: #d35b30;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.join-btn:hover {
  background-color: #a54e29;
  transform: translateY(-2px);
}

/* ===== Right Image ===== */
.membership-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.membership-image img {
  width: 100%;
  max-width: 480px;
  transform: rotate(-5deg);
}

/* ==============================
   RESPONSIVE DESIGN
============================== */

/* ----- Tablets (<= 1024px) ----- */
@media (max-width: 1024px) {
  .membership-section {
    padding: 0rem 2rem;
  
  }
  .membership-card {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
  }

  .membership-content {
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .membership-content .price {
    font-size: 2.8rem;
  }

  .store-buttons {
    justify-content: center;
  }

  .membership-image img {
    max-width: 420px;
    transform: rotate(0);
  }
}

/* ----- Mobile (<= 600px) ----- */
@media (max-width: 600px) {
  .membership-card {
    padding: 2rem 1.5rem;
  }

  .membership-content .title {
    font-size: 2rem;
  }

  .membership-content .subtitle {
    font-size: 1rem;
  }

  .membership-content .price {
    font-size: 2.4rem;
  }

  .store-buttons {
    justify-content: center;
    gap: 1rem;
  }

  .membership-image img {
    max-width: 300px;
  }
}



/* ==============================
   CHRISTMAS PROMO SECTION
============================== */
.christmas-section {
  background-color: #000;
  padding: 6rem 8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.christmas-card {
  background-image: url("../christmas-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 3rem 8rem;
  width: 100%;
  color: #fff;
  overflow: hidden;
  min-height: 350px;
}

/* ===== Santa Hat ===== */
.santa-hat {
  position: absolute;
  top: -35px;
  left: -20px;
  width: 120px;
  z-index: 2;
}

/* ===== Left Text ===== */
.christmas-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* ===== Divider ===== */
.divider {
  width: 2px;
  height: 180px;
  background-color: #c65a33;
  margin: 0 2rem;
}

/* ===== Right Text ===== */
.christmas-right {
  text-align: left;
  flex: 1;
  margin-left: 2rem;
}

.christmas-right .deal {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.christmas-right .price {
  color: #fff;
}

.christmas-right .unlock {
  color: #c65a33;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lock-icon {
  width: 22px;
  height: 22px;
  filter: none;
}

/* ===== Tree Image ===== */
.christmas-tree {
  flex-shrink: 0;
}

.christmas-tree img {
  width: 180px;
  height: auto;
  margin-left: 2rem;
}

@media (max-width: 1100px) {
  .christmas-card {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 4rem 2rem 5rem 2rem;
    background-image: url("../mobile-santabg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    background-color: #000;
    min-height: 700px;
  }

  .santa-hat {
    position: static;
    width: 100px;
    margin-bottom: 1rem;
  }

  .christmas-left {
    order: 1;
    text-align: center;
  }

  .christmas-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .divider {
    order: 2;
    width: 100px;
    height: 2px;
    background-color: #c65a33;
    margin: 1rem 0 2rem 0;
  }

  /* Right text below divider */
  .christmas-right {
    order: 3;
    margin-left: 0;
    text-align: center;
  }

  .christmas-right .deal {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .christmas-right .unlock {
    justify-content: center;
    font-size: 1.5rem;
  }

  .lock-icon {
    width: 24px;
    height: 24px;
  }

  /* Tree image last */
  .christmas-tree {
    order: 4;
    margin-top: 2.5rem;
  }

  .christmas-tree img {
    width: 220px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

/* ----- Mobile (<= 600px) ----- */
@media (max-width: 600px) {
  .christmas-card {
    padding: 3rem 1.5rem 4rem;
    background-position: top center;
    background-size: contain;
    min-height: 650px;
  }

  .santa-hat {
    width: 80px;
  }

  .christmas-left h2 {
    font-size: 1.8rem;
  }

  .christmas-right .deal {
    font-size: 1.3rem;
  }

  .christmas-tree img {
    width: 180px;
  }
}

/* ===========================
   BENEFITS SECTION
=========================== */
.benefits-section {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 8rem 0;
}

.benefits-card {
  background: url("../benefit-bg.png") no-repeat center/cover;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5rem;
  width: 100%;
  color: #000;
  flex-wrap: nowrap;
  position: relative;
  overflow: hidden;
}

.benefits-phone {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-phone img {
  width: 320px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
}

.benefits-content {
  flex: 1;
  min-width: 350px;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefits-content h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0px;
  margin-bottom: 2.5rem;
  color: #000;
}

/* ====== Benefits Grid ====== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: invert(0%) brightness(0);
  margin-top: 4px;
}

/* ====== Benefit Text ====== */
.benefit-item h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 0.3rem;
}

.benefit-item p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(0, 0, 0, 0.78);
  margin: 0;
}

/* ====== CTA Button ====== */
.benefit-btn {
  position: absolute;
  /* Button at the bottom-right corner */
  bottom: 1rem;
  right: 0rem;
  background: #fff;
  color: #c55c33;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 6px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 6px 6px 0 #000;
  letter-spacing: normal !important;
}

.benefit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0 #000;
}


@media (max-width: 1000px) {
  .benefits-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .benefits-phone {
    margin-bottom: 2rem;
  }

  .benefits-phone img {
    width: 240px;
    transform: rotate(-6deg);
  }

  .benefits-content {
    padding-left: 0;
    align-items: center;
  }

  .benefits-content h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-item h3 {
    font-size: 1.05rem;
  }

  .benefit-item p {
    font-size: 0.9rem;
  }

  .benefit-btn {
    position: static;
    /* Back to flow */
    margin: 2rem auto 0;
    box-shadow: 4px 4px 0 #000;
  }
}

/* ----- Mobile (<= 600px) ----- */
@media (max-width: 600px) {
  .benefits-card {
    padding: 2rem 1rem;
    /* slightly tighter padding */
    flex-direction: column;
    text-align: center;
  }

  .benefits-phone img {
    width: 200px;
    transform: rotate(-5deg);
  }

  .benefits-content {
    padding-left: 0;
    align-items: center;
    width: 100%;
  }

  .benefits-content h2 {
    font-size: 1.2rem;
    line-height: 1.25;
    text-align: center;
    word-break: break-word;
    /* ensures long titles don’t overflow */
    margin-bottom: 1.5rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    width: 100%;
  }

  .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 0.5rem;
    /* ✅ adds breathing room on sides */
  }

  .benefit-item img {
    margin-bottom: 0.5rem;
  }

  .benefit-item h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    word-break: break-word;
  }

  .benefit-item p {
    font-size: 0.6rem;
    /* safe size */
    line-height: 1.5;
    word-break: break-word;
    text-align: center;
    max-width: 90%;
    /* ✅ prevents text clipping at edges */
    margin: 0 auto;
  }

  .benefit-btn {
    font-size: 1rem;
    padding: 12px 22px;
    margin-top: 2rem;
    align-self: center;
  }
}



/* =============================
   GLOBAL SECTION PADDING SYSTEM
============================= */
section,
.hero-section,
.live-games,
.steps-section,
.epic-prizes,
.faq-section,
.glory-section,
.events-section,
.winners-section,
.together-section,
.ambassadors-section,
.membership-section,
.christmas-section,
.benefits-section {
  padding: 6rem 8rem 0;
}

/* Large screens under 1200px */
@media (max-width: 1200px) {
  section,
  .hero-section,
  .live-games,
  .steps-section,
  .epic-prizes,
  .faq-section,
  .glory-section,
  .events-section,
  .winners-section,
  .together-section,
  .ambassadors-section,
  .membership-section,
  .christmas-section,
  .benefits-section {
    padding: 5rem 4rem 0;
  }
}

/* Tablets under 992px */
@media (max-width: 992px) {
  section,
  .hero-section,
  .live-games,
  .steps-section,
  .epic-prizes,
  .faq-section,
  .glory-section,
  .events-section,
  .winners-section,
  .together-section,
  .ambassadors-section,
  .membership-section,
  .christmas-section,
  .benefits-section {
    padding: 4rem 3rem 0;
  }
}

/* Small tablets under 768px */
@media (max-width: 768px) {
  section,
  .hero-section,
  .live-games,
  .steps-section,
  .epic-prizes,
  .faq-section,
  .glory-section,
  .events-section,
  .winners-section,
  .together-section,
  .ambassadors-section,
  .membership-section,
  .christmas-section,
  .benefits-section {
    padding: 3.5rem 2rem 0;
  }
}

/* Mobile phones under 480px */
@media (max-width: 480px) {
  section,
  .hero-section,
  .live-games,
  .steps-section,
  .epic-prizes,
  .faq-section,
  .glory-section,
  .events-section,
  .winners-section,
  .together-section,
  .ambassadors-section,
  .membership-section,
  .christmas-section,
  .benefits-section {
    padding: 3rem 1.2rem 0;
  }
}








/* =========================================================
   HERO SECTION
========================================================= */
.about-hero {
  background: var(--about-orange);
  padding: 140px 20px 157px;
  text-align: center;
}

.about-heading {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 80px;
}

.about-hero-container {
  max-width: 1020px;
  margin: 6rem auto;
}


.about-hero-text {
  font-weight: 400;
  font-size: 2rem;
  line-height: 50px;
}

/* =========================================================
   INTRO SECTION
========================================================= */
.about-intro {
  padding: 157px 20px 0px 20px;
  background: var(--about-black);
  text-align: center;
}

.about-intro-heading {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-intro-subtext {
  font-size: 2rem;
  margin-bottom: 140px;
  font-weight: 500;
}

.about-intro-container {
  max-width: 1166px;
  margin: 0 auto;
}

.about-intro-images {
  position: relative;
  max-width: 410px;
  width: 100%;
  height: 480px;
  /* margin: 0 auto; */
}

.about-intro-content {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: end;
}

.about-intro-main-container {
  position: relative;
}

.about-card {
  background: var(--about-white);
  border-radius: 12px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
}

.about-card-info {
  color: var(--about-black);
  padding: 10px;
  text-align: start;
}

.about-card-info h4 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.about-card-info p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

/* Card positioning */
.about-card-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.about-card-2 {
  position: absolute;
  bottom: 80px;
  right: 0rem;
}

.about-intro-text {
  max-width: 707px;
  font-size: 1.5rem;
  margin: 80px auto 0;
  line-height: 1.8;
}

/* =========================================================
   IMPACT GALLERY
========================================================= */
.about-impact2 {
  background: var(--about-black);
  padding: 157px 20px 0px 20px;
  text-align: center;
}

.about-impact2-container {
  max-width: 1166px;
  margin: 0 auto;
}

.about-impact2-text {
  font-size: 1.8rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 500;
}

.about-impact2-text span {
  color: var(--about-orange);
  font-weight: 700;
}

.about-impact2-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
  padding: 50px 20px 0px 20px;
}

.about-impact2-gallery img {

  width: 330px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-impact2-gallery img:nth-child(2) {
  width: 440px;
  border-radius: 20px;
}

.about-impact2-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   AMBASSADORS
========================================================= */


.ambassadors-sub-section {
  max-width: 1166px;
  margin: 0 auto;
}

.ambassadors-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

.ambassadors-title span {
  color: #ff5c00;
}

.ambassador-card {
  flex: 0 0 100%;
  /* Each slide fills full width */
  scroll-snap-align: start;
  background: #fff;
  color: #000;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  height: 494px;
}

.ambassador-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
}

.ambassador-content {
  text-align: left;
  flex: 1;
  padding: 0 40px 0 40px;
}

.ambassador-name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.ambassador-content p {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 15px;
  font-weight: 300;

}

.ambassador-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.ambassador-btn {
  width: 42px;
  height: 42px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.ambassadors-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px;
  padding-bottom: 20px;
}

.ambassadors-scroll-wrapper {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}


.ambassadors-scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}



.ambassador-btn i {
  color: #777;
  font-size: 16px;
}


.ambassador-btn:hover i {
  color: #fff;
}


/* =========================================================
   SUPPORT VIDEO (CUSTOM UI)
========================================================= */
.support-section {
  padding: 157px 20px 0px 20px;
  text-align: center;
}

.support-sub-section {
  max-width: 1036px;
  margin: 0 auto;
}

.support-text {
  font-size: 2rem;
  line-height: 1.6;
  /* max-width: 800px; */
  margin: 0 0 50px 0;
  color: #e6e6e6;
  font-weight: 500;
}

.highlight {
  color: #ff5c00;
  font-weight: 600;
}

.about-video-frame {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.about-video-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
}

.controls-left i,
.controls-right i {
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.controls-left i:hover,
.controls-right i:hover {
  opacity: 0.8;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: #444;
  border-radius: 3px;
  margin: 0 12px;
  position: relative;
  overflow: hidden;
}

.progress {
  width: 65%;
  height: 100%;
  background: #ff2e2e;
  border-radius: 3px;
}

/* =========================================================
   FOOTER SECTION (SLAMIT CTA)
========================================================= */
.slamit-section {
  background: var(--about-black);
  color: #fff;
  text-align: center;
  padding: 157px 0px 0px 0px;

}

.slamit-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.slamit-subcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  line-height: 70px;
}

.slamit-title {
  font-size: 82px;
  font-weight: 700;
}

.slamit-icon img {
  width: 48px;
}

.slamit-subtitle {
  font-size: 1.5rem;
  color: #e6e6e6;
  /* margin-top: 20px; */
  font-weight: 500;
}

.slamit-line {
  font-size: 1.3rem;
  color: #fff;
  /* margin-top: 5px; */
}

.slamit-highlight {
  font-size: 1.5rem;
  font-style: italic;
  color: #ff5c00;
  /* margin-top: 10px; */
}

.howitworks-footer {
  background-color: #D35B30;
  color: var(--howitworks-footer-white);
  padding: 54px 20px 30px;
  font-size: 15px;
  margin-top: 157px;
}

.howitworks-footer-main-container {
  max-width: 1156px;
  margin: 0 auto;
}

.howitworks-footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.howitworks-footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}

.howitworks-footer-logo-section img {
  width: 134px;
  height: 32px;
}

.howitworks-footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--howitworks-footer-white);
}

.howitworks-footer-tagline {
  font-size: 13px;
  color: var(--howitworks-footer-white);
  opacity: 0.85;
}

/* ====== NAVIGATION ====== */
.howitworks-footer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 1.5rem;
  font-weight: 400;
}

.howitworks-footer-links a {
  color: var(--howitworks-footer-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
  line-height: 100%;
}

.howitworks-footer-links a:hover {
  opacity: 0.8;
}

/* ====== DOWNLOAD SECTION ====== */
.howitworks-footer-download {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.howitworks-footer-download-title {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 1.5rem;
  line-height: 100%;
}

.howitworks-footer-store-btns-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.howitworks-footer-store-btns {
  background-color: white;
  border-radius: 8px;
  display: flex;
  width: 152px;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 7px 14px 7px 14px;
}

.howitworks-footer-store-btns-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.howitworks-footer-store-btns-text span {
  line-height: 100%;
  font-size: 12px;
  font-weight: 900;
}

.howitworks-footer-store-btns img {
  width: 34px;
  height: 38px;
  border-radius: 6px;
  cursor: pointer;
}

.howitworks-footer-store-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.howitworks-footer-store-btns span {
  color: #000000;
  font-weight: 900;
}

/* ====== SOCIAL & BOTTOM BAR ====== */
.howitworks-footer-bottom {
  margin-top: 88px;
  margin-inline: auto;
}

.howitworks-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
}

.howitworks-footer-social span {
  font-weight: 400;
  margin-right: 8px;
  font-size: 1.5rem;
}

.howitworks-footer-social a {
  color: var(--howitworks-footer-white);
  font-size: 18px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.howitworks-footer-social a:hover {
  opacity: 0.8;
}

.howitworks-footer-divider {
  height: 1px;
  width: 100%;
  border: 0.8px solid #FFFFFF8F;
  margin-bottom: 16px;
}

.howitworks-footer-legal {
  text-align: right;
  font-size: 14px;
  color: #FFFFFFD4;
  font-weight: 400;
}

.howitworks-footer-legal a {
  color: #FFFFFFD4;
  text-decoration: none;
}

.howitworks-footer-legal a:hover {
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE STYLES
========================================================= */

@media (max-width: 1280px) {
  .about-impact2-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 100px 0px 80px 0px;
  }

  .about-impact2-gallery img {
    width: 100%;
  }
  .about-impact2-gallery img:nth-child(2) {
      width: 100%;
  }
  
}

/* ========== Tablets (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .about-hero {
    padding: 100px 40px;
  }

  .howitworks-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-heading {
    font-size: 2rem;
    margin-bottom: 60px;
  }

  .about-hero-text {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .about-intro {
    padding: 100px 20px 0px 20px;
  }

  .about-intro-heading {
    font-size: 2rem;
  }

  .about-intro-subtext {
    font-size: 1.5rem;
    margin-bottom: 100px;
  }

  .about-impact2-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 100px 0px 80px 0px;
  }

  .ambassador-card {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .ambassador-content {
    padding: 30px 40px;
  }

  .about-video-frame {
    max-width: 90%;
  }

  .slamit-title {
    font-size: 64px;
  }

  .slamit-subtitle {
    font-size: 1.25rem;
  }

  .about-impact2 {
    padding-top: 100px;
  }

  .ambassadors-section {
    padding: 100px 20px 0px 20px;
  }

  .support-section {
    padding-top: 100px;
  }

  .slamit-section {
    padding: 100px 0px 0px 0px;
  }

  .about-impact2-gallery img {
    width: 100%;
  }

  .about-intro-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .about-intro-content {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .about-intro-text {
    margin-top: 10px;
    font-size: 1rem;
    text-align: left;
  }

  .howitworks-footer {
    margin-top: 100px;
  }
}

/* ========== Mobiles (max-width: 600px) ========== */
@media (max-width: 600px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-heading {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .about-hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-intro {
    padding: 60px 20px 0px 20px;
  }

  .about-intro-heading {
    font-size: 1.4rem;
  }

  .about-intro-subtext {
    font-size: 1rem;
    margin-bottom: 60px;
  }

  .about-card {
    width: 90%;
    margin: 0 auto 20px;
    position: relative;
  }

  .about-card-1,
  .about-card-2 {
    position: static;
  }

  .about-impact2-text {
    font-size: 1rem;
    /* margin-bottom: 40px; */
  }

  .about-impact2 {
    padding-top: 150px;
  }

  .about-impact2-gallery {
    grid-template-columns: 1fr;
    padding: 60px 0px 80px 0px;
  }

  .ambassadors-title {
    text-align: center;
    font-size: 22px;
  }

  .ambassador-card {
    flex-direction: column;
    border-radius: 12px;
  }

  .ambassador-image img {
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .ambassador-content p {
    font-size: 14px;
  }

  .ambassadors-section {
    padding: 60px 20px 0px 20px;
  }

  .support-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .about-video-frame {
    max-width: 100%;
  }

  .controls-right span {
    font-size: 12px;
  }

  .slamit-title {
    font-size: 40px;
  }

  .slamit-icon img {
    width: 36px;
  }


  .slamit-subtitle,
  .slamit-line {
    font-size: 1rem;
  }

  .support-section {
    padding-top: 60px;
  }

  .slamit-section {
    padding: 60px 0px 0px 0px;
  }

  .about-impact2-gallery img {
    width: 100%;
  }

  .about-intro-content {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .about-intro-text {
    margin-top: 150px;
    text-align: left;
  }

  .howitworks-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .howitworks-footer-download,
  .howitworks-footer-links {
    align-items: start;
  }

  .howitworks-footer-social {
    justify-content: center;
  }

  .howitworks-footer-legal {
    text-align: center;
  }

  .howitworks-footer {
    margin-top: 60px;
  }
}
.about-video-frame {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
}

.about-video-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.video-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
}

.video-controls i {
  cursor: pointer;
  font-size: 18px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  width: 0;
  height: 100%;
  background: #ff0000;
}


/* about us page */

/* ===========================
   HOW IT WORKS HERO SECTION
=========================== */
.howitworks-hero-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", 'Inter', sans-serif;
}

.howitworks-hero-container {
  max-width: 1000px;
  margin: 6rem auto;
}

/* Title */
.howitworks-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Underline below title */
.howitworks-hero-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-top: 0.5rem;
}

/* Tagline (italic orange text) */
.howitworks-hero-tagline {
  font-style: italic;
  color: #d35b30;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Description text */
.howitworks-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

/* Highlighted orange phrases */
.howitworks-hero-highlight {
  color: #d35b30;
  font-weight: 600;
}

/* ===========================
   RESPONSIVE DESIGN (Hero)
=========================== */
@media (max-width: 1024px) {
  .howitworks-hero-section {
    padding: 4rem 1.5rem 0;
  }

  .howitworks-hero-title {
    font-size: 2.2rem;
  }

  .howitworks-hero-tagline {
    font-size: 1.3rem;
  }

  .howitworks-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .howitworks-hero-section {
    padding: 4rem 1.5rem 0;
  }

  .howitworks-hero-title {
    font-size: 2rem;
  }

  .howitworks-hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .howitworks-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .howitworks-hero-section {
    padding: 3rem 1rem 0;
  }

  .howitworks-hero-title {
    font-size: 1.8rem;
  }

  .howitworks-hero-tagline {
    font-size: 1.1rem;
  }

  .howitworks-hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* ===========================
   HOW IT WORKS – Steps Section
=========================== */
.howitworks-steps-section {
  background: #000;
  color: #fff;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

/* Wrapper */
.howitworks-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 9rem;
}

/* Step Container */
.howitworks-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  align-items: center;
  gap: 6rem;
  min-height: 550px;
}

/* Step Number Image – top centered */
.howitworks-step-num-img {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(90px, 11vw, 160px); /* Responsive scaling */
  height: auto;
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

/* Reverse Layout (Step 2) */
.howitworks-step.is-right .howitworks-col--text {
  order: 3;
}
.howitworks-step.is-right .howitworks-col--dots {
  order: 2;
}
.howitworks-step.is-right .howitworks-col--media {
  order: 1;
}

/* Columns */
.howitworks-col {
  position: relative;
}
.howitworks-col--text {
  max-width: 600px;
  z-index: 2;
}
.howitworks-col--dots {
  width: 12px;
  background-image: radial-gradient(#cfcfcf 3px, transparent 3px);
  background-size: 12px 20px;
  background-repeat: repeat-y;
  align-self: stretch;
  opacity: 0.9;
  margin-top: 2rem;
}

/* ===========================
   TEXT STYLES
=========================== */
.howitworks-step-title {
  color: #d35b30;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 1.8rem; /* ~32px */
  margin-bottom: 1.2rem;
}

.howitworks-step-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem; /* ~22px */
  line-height: 1.9;
  font-weight: 400;
}

.howitworks-step-footnote {
  font-size: 1rem; /* ~18px */
  color: #d35b30;
  font-weight: 600;
  margin-top: 1rem;
}

/* Images */
.howitworks-media {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.55);
}
.howitworks-media--tall {
  max-width: 680px;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* 1200px ↓ */
@media (max-width: 1200px) {
  .howitworks-steps-section {
    padding: 5rem 5rem 0;
  }

  .howitworks-steps-wrap {
    gap: 7rem;
  }

  .howitworks-step {
    gap: 4rem;
    min-height: 480px;
  }

  .howitworks-step-num-img {
    width: clamp(80px, 10vw, 130px);
    top: -12%;
  }

  .howitworks-step-title {
    font-size: 1.6rem;
  }

  .howitworks-step-list {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .howitworks-step-footnote {
    font-size: 0.95rem;
  }

  .howitworks-media {
    max-width: 600px;
  }
}

/* 1024px ↓ */
@media (max-width: 1024px) {
  .howitworks-steps-section {
    padding: 4rem 3rem 0;
  }

  .howitworks-steps-wrap {
    gap: 6rem;
  }

  .howitworks-step {
    gap: 3rem;
    min-height: 440px;
  }

  .howitworks-step-num-img {
    width: clamp(70px, 9vw, 110px);
    top: -10%;
  }

  .howitworks-step-title {
    font-size: 1.5rem;
  }

  .howitworks-step-list {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .howitworks-step-footnote {
    font-size: 0.9rem;
  }

  .howitworks-media {
    max-width: 520px;
  }
}

/* 860px ↓ (Mobile Landscape & Small Tablets) */
@media (max-width: 860px) {
  .howitworks-steps-section {
    padding: 3rem 2rem 0;
  }

  .howitworks-step {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2.5rem;
    min-height: auto;
  }

  .howitworks-col--dots {
    display: none;
  }

  .howitworks-step-num-img {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1.5rem;
    width: 90px;
  }

  .howitworks-col--media {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .howitworks-step.is-right .howitworks-col--media {
    order: 1;
  }

  .howitworks-media {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
  }

  .howitworks-step-title {
    font-size: 1.35rem;
  }

  .howitworks-step-list {
    font-size: 1rem;
    line-height: 1.65;
  }

  .howitworks-step-footnote {
    font-size: 0.9rem;
  }

  .howitworks-steps-wrap {
    gap: 4rem;
  }
}

/* 480px ↓ (Mobile Portrait) */
@media (max-width: 480px) {
  .howitworks-steps-section {
    padding: 2.5rem 1.5rem 0;
  }

  .howitworks-step-num-img {
    width: 70px;
    margin-bottom: 1rem;
  }

  .howitworks-step-title {
    font-size: 1.15rem;
  }

  .howitworks-step-list {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .howitworks-step-footnote {
    font-size: 0.8rem;
  }

  .howitworks-media {
    max-width: 100%;
  }
}


/* ===========================
   HOW IT WORKS – CTA SECTION
=========================== */
.howitworks-cta-section {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 8rem 0;
}

.howitworks-cta-container {
  background-color: #c3623a; /* Burnt orange tone */
  border-radius: 20px;
  padding: 3rem 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  color: #fff;
}

/* LEFT SIDE */
.howitworks-cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}

.howitworks-cta-text {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  max-width: 600px;
}

.howitworks-cta-apps {
  display: flex;
  gap: 1rem;
}

.howitworks-cta-apps img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.howitworks-cta-apps img:hover {
  transform: scale(1.05);
}

/* RIGHT SIDE */
.howitworks-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.howitworks-cta-offer {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

.howitworks-cta-offer span {
  color: #fff;
}

.howitworks-cta-btn {
  background-color: #fff;
  color: #c3623a;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.howitworks-cta-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .howitworks-cta-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }

  .howitworks-cta-left,
  .howitworks-cta-right {
    align-items: center;
  }

  .howitworks-cta-text {
    font-size: 1.2rem;
  }

  .howitworks-cta-apps img {
    height: 44px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .howitworks-cta-section {
    padding: 4rem 1.5rem;
  }

  .howitworks-cta-container {
    padding: 2rem;
    gap: 2rem;
  }

  .howitworks-cta-text {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .howitworks-cta-offer {
    font-size: 1.6rem;
  }

  .howitworks-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  /* 🔹 App buttons now stack vertically on small screens */
  .howitworks-cta-apps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
  }

  .howitworks-cta-apps img {
    height: 40px;
    width: auto;
  }

  /* Center all content for a clean stacked layout */
  .howitworks-cta-left,
  .howitworks-cta-right {
    align-items: center;
    text-align: center;
  }

  .howitworks-cta-text {
    text-align: center;
  }
}


/* ===========================
   SUPPORT / IMPACT SECTION
=========================== */
.howitworks-support-section {
  background: #000;
  color: #fff;
  text-align: center;
  /* padding: 8rem 2rem 7rem; */
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

/* Container */
.support-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.support-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.support-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(72%) saturate(555%) hue-rotate(342deg) brightness(94%) contrast(88%);
}

.support-title {
  color: #d35b30;
  font-size: 1.6rem; /* ~26px */
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Body Text */
.support-body p {
  font-size: 1.1rem; /* ~18px */
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

.support-body strong {
  font-weight: 700;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .howitworks-support-section {
    padding: 6rem 2rem 0;
  }

  .support-title {
    font-size: 1.4rem;
  }

  .support-body p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .support-icon {
    width: 32px;
    height: 32px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .howitworks-support-section {
    padding: 5rem 1.5rem 0;
  }

  .support-heading {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .support-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .support-body p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .support-icon {
    width: 28px;
    height: 28px;
  }
}


/* ===========================
   WHY FANS ARE SWITCHING SECTION
=========================== */
.whyfans-section {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
  color: #000;
}

.whyfans-container {
  background-color: #F2DFD8;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
}

/* Heading */
.whyfans-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #f6dfd2;
  padding: 2rem 1rem 1.5rem;
}

.whyfans-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.whyfans-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Table */
.whyfans-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.whyfans-table-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 1rem 2rem;
}

.whyfans-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.whyfans-col {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-col {
  font-weight: 600;
}

.slam-col {
  font-weight: 500;
}

.gamble-col {
  font-weight: 500;
}

/* Icons */
.check {
  color: #00b865;
  font-size: 1.1rem;
}

.cross {
  color: #d35b30;
  font-size: 1.1rem;
}

.warn {
  color: #e2b000;
  font-size: 1.1rem;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .whyfans-section {
    padding: 6rem 1.5rem 0; 
  }

  .whyfans-title {
    font-size: 1.5rem;
  }

  .whyfans-table-header,
  .whyfans-table-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 1rem;
  }

  .whyfans-table-row {
    font-size: 1rem;
  }
}

/* Mobile (≤700px) */
@media (max-width: 700px) {
  .whyfans-table-header {
    display: none; /* Hide header on mobile */
  }

  .whyfans-table-row {
    grid-template-columns: 1fr;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .whyfans-col {
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  }

  .whyfans-col:last-child {
    border-bottom: none;
  }

  .feature-col {
    font-weight: 700;
    color: #000;
  }

  .slam-col,
  .gamble-col {
    font-weight: 600;
  }

  .whyfans-title {
    font-size: 1.3rem;
    text-align: center;
  }
}


/* ===========================
   READY TO PLAY SECTION
=========================== */
.readytoplay-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 8rem 0;
  font-family: "Helvetica Neue", "Inter", sans-serif;
}

.readytoplay-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

/* Title */
.readytoplay-title {
  color: #d35b30;
  font-size: 2.25rem; /* ~36px */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Tagline */
.readytoplay-tagline {
  font-style: italic;
  font-size: 2rem; /* ~32px */
  color: #ffffff;
  max-width: 620px;
  line-height: 1.4;
  margin-bottom: 1.8rem;
}

/* Button */
.readytoplay-btn {
  display: inline-block;
  background-color: #d35b30;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  padding: 1.8rem 4rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.readytoplay-btn:hover {
  background-color: #c14f2a;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Large Tablets (≤1024px) */
@media (max-width: 1024px) {
  .readytoplay-section {
    padding: 6rem 1.5rem 0;
  }

  .readytoplay-title {
    font-size: 1.9rem;
  }

  .readytoplay-tagline {
    font-size: 1.5rem;
  }

  .readytoplay-btn {
    font-size: 1.2rem;
    padding: 1.4rem 3rem;
  }
}

/* Small Tablets & Mobiles (≤768px) */
@media (max-width: 768px) {
  .readytoplay-section {
    padding: 5rem 1.5rem 0;
  }

  .readytoplay-title {
    font-size: 1.7rem;
  }

  .readytoplay-tagline {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .readytoplay-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 360px;
  }
}

/* Mobile Portrait (≤480px) */
@media (max-width: 480px) {
  .readytoplay-title {
    font-size: 1.5rem;
  }

  .readytoplay-tagline {
    font-size: 1rem;
  }

  .readytoplay-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 14px;
  }
}


/* ===========================
   SLAMIT HERO SECTION
=========================== */
.slamit-prizes-hero {
  position: relative;
  background: url("../prizes-bg.png") no-repeat center top / cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 6rem 8rem 0;
  overflow: hidden;
  min-height: 70vh;     /* ≈672px: looks natural on desktop */
  height: auto;          /* allows responsiveness */
}


/* Add black wave overlay image at the bottom */
.slamit-prizes-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url("../wave-black.png") no-repeat bottom center / cover;
  z-index: 1;
}

/* Phone images inside the hero */
.slamit-phone {
  transition: transform 0.3s ease;
}


/* Content (left column) */
.slamit-prizes-hero-content {
  flex: 1;
  min-width: 320px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  z-index: 2;
}

.slamit-prizes-hero-title {
  font-size: 90px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin: 0;
  color: #fff;
}

.slamit-cta-btn {
  background-color: #fff;
  color: #c96a44;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slamit-cta-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-3px);
}

/* App Store Buttons */
.slamit-store-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.slamit-store-buttons img {
  width: 160px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slamit-store-buttons img:hover {
  transform: scale(1.05);
}

/* Phones (right column) */
.slamit-prizes-hero-images {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}

.slamit-phone {
  transition: transform 0.3s ease;
}

.slamit-phone-left {
  transform: rotate(-10deg) translateY(30px);
  z-index: 2;
}

.slamit-phone-right {
  transform: rotate(10deg) translateY(-20px);
  margin-left: -50px;
  z-index: 3;
}

.slamit-phone:hover {
  transform: scale(1.05);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 1100px) {
  .slamit-prizes-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 40px 0;
    min-height: auto;
    margin-top: 5rem;
    
  }

  .slamit-prizes-hero-content {
    align-items: center;
  }

  .slamit-prizes-hero-title {
    font-size: 70px;
  }

  .slamit-phone {
    width: 220px;
  }

  .slamit-prizes-hero-images {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .slamit-prizes-hero {
    padding: 80px 20px 0;
    min-height: auto;
  }

  .slamit-prizes-hero-title {
    font-size: 56px;
  }

  .slamit-cta-btn {
    font-size: 15px;
    padding: 12px 28px;
  }

  .slamit-store-buttons img {
    width: 140px;
  }

  .slamit-phone {
    width: 200px;
  }

  .slamit-phone-left {
    transform: rotate(-6deg) translateY(20px);
  }

  .slamit-phone-right {
    transform: rotate(6deg) translateY(-10px);
  }
}

@media (max-width: 480px) {
  .slamit-prizes-hero {
    padding: 60px 15px 0;
  }

  .slamit-prizes-hero-title {
    font-size: 42px;
  }

  .slamit-store-buttons img {
    width: 120px;
  }

  .slamit-phone {
    width: 160px;
  }
}



/* ===========================
   SLAMIT IMAGE SWIPER SECTION
=========================== */
.slamit-prizes-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  
}

.slamit-prize-details {
  flex: 1;
  max-width: 550px;
  color: #fff;
}

.slamit-prize-gallery {
  flex: 1;
  max-width: 600px;
}

.slamit-prize-gallery .swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}



/* ===========================
   SLIDER HEADER
=========================== */
.slamit-slider-header {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.slamit-prizes-heading {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.slamit-prizes-subheading {
  color: #c96a44;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  margin-top: 0.5rem;
}


.swiper-pagination-bullet {
  background: #f57c3e;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ===========================
   SLIDER SECTION
=========================== */
.slamit-slider-section {
  width: 100%;
  min-height: 30vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 4rem 0 8rem; /* extra bottom padding for arrows */
  flex-wrap: wrap;
}

/* ===========================
   LEFT CONTENT (TEXT)
=========================== */
.slamit-content {
  flex: 0 0 35%;
  padding: 0 3rem;
  z-index: 2;
}

.slamit-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.slamit-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.slamit-content button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.slamit-content button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===========================
   RIGHT SIDE - CARD CONTAINER
=========================== */
.slamit-thumbs {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slamit-thumbs::-webkit-scrollbar {
  display: none;
}

.slamit-thumb {
  flex: 0 0 220px;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 0.8;
}

.slamit-thumb.active {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* ===========================
   ARROW NAVIGATION - ALWAYS AT BOTTOM
=========================== */
.slamit-nav {
  position: absolute;
  bottom: 2rem; /* Always fixed to the bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
}

.slamit-nav button {
  background: rgba(255, 255, 255, 0.6);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slamit-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

ion-icon {
  font-size: 22px;
  color: #000;
}

/* ===========================
   RESPONSIVE MEDIA QUERIES
=========================== */

/* Medium screens (Tablets & small laptops) */
@media (max-width: 1024px) {
  .slamit-slider-section {
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem 7rem;
    margin-top: 3rem;
  }

  .slamit-content {
    text-align: center;
    flex: 1 1 100%;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .slamit-thumbs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .slamit-thumb {
    flex: 0 0 200px;
    height: 280px;
  }

  .slamit-nav {
    bottom: 1.5rem; /* still fixed at bottom */
  }
}

/* Small screens (phones) */
@media (max-width: 768px) {
  .slamit-slider-section {
    flex-direction: column;
    padding: 2rem 1rem 6rem;
  }

  .slamit-content h2 {
    font-size: 1.6rem;
  }

  .slamit-content p {
    font-size: 0.95rem;
  }

  .slamit-thumbs {
    gap: 0.8rem;
    justify-content: center;
  }

  .slamit-thumb {
    flex: 0 0 160px;
    height: 220px;
  }

  .slamit-nav button {
    width: 38px;
    height: 38px;
  }

  ion-icon {
    font-size: 18px;
  }
}

/* Extra small screens (small phones) */
@media (max-width: 480px) {
  .slamit-content h2 {
    font-size: 1.4rem;
  }

  .slamit-content p {
    font-size: 0.85rem;
  }

  .slamit-thumb {
    flex: 0 0 130px;
    height: 180px;
  }

  .slamit-nav {
    bottom: 1rem;
  }
}


/* === Base Section === */
.slamit-monthly-prizes {
  color: #fff;
  padding: 80px 40px;
  overflow: hidden;
  padding: 6rem 8rem 0;
}

.slamit-prizes-header h2 {
  color: #ff6a2e;
  font-weight: 800;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* === Swiper Layout === */
.slamit-prizeSwiper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Base Card === */
.slamit-prize-card {
  background: #fff;
  color: #000;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
  max-width: 340px;
  min-height: 410px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slamit-prize-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.12);
}

.slamit-prize-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.slamit-prize-card h3 {
  font-weight: 800;
  margin: 18px 0 10px;
  font-size: 1.1rem;
  text-align: center;
}

.slamit-prize-card ul {
  list-style: disc;
  text-align: left;
  padding: 0 25px 25px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}

/* === Swiper Navigation === */
.slamit-prev,
.slamit-next {
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}



/* === RESPONSIVE DESIGN === */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .slamit-monthly-prizes {
    padding: 60px 20px;
  }
  .slamit-prizes-header h2 {
    font-size: 1.8rem;
  }
  .slamit-prize-card {
    max-width: 310px;
    min-height: 380px;
  }
}

/* Small tablets & large phones (≤768px) */
@media (max-width: 768px) {
  .slamit-monthly-prizes {
    padding: 50px 15px;
  }
  .slamit-prizeSwiper {
    padding: 0 15px 40px;
  }
  .slamit-prize-card {
    width: 85%;
    max-width: 290px;
    min-height: 370px;
  }
  .slamit-prize-card img {
    height: 200px;
  }
  .slamit-prev,
  .slamit-next {
    width: 36px;
    height: 36px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .slamit-monthly-prizes {
    padding: 40px 10px;
  }

  .slamit-prizes-header h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .slamit-prize-card {
    width: 92%;
    max-width: 280px;
    min-height: 360px;
    margin: 0 auto;
  }

  .slamit-prize-card img {
    height: 180px;
  }

  .slamit-prize-card h3 {
    font-size: 1rem;
  }

  .slamit-prize-card ul {
    font-size: 0.9rem;
    padding: 0 18px 20px;
  }

  /* Move swiper buttons outside visible area */
  .slamit-prev {
    left: -10px;
  }
  .slamit-next {
    right: -10px;
  }
}

/* Extra Small (≤360px) */
@media (max-width: 360px) {
  .slamit-prize-card {
    width: 95%;
  }
  .slamit-prize-card img {
    height: 160px;
  }
  .slamit-prize-card ul {
    padding: 0 15px 15px;
  }
}
