:root {
  --primary-color: #0066ff;
  --secondary-color: #4dabf7;
  --text-light: #ffffff;
  --bg-dark: #02020d;
  --border-color: #2c343c;
  --text-light: #fff;
  --text-gray: #aaa;
  --highlight: #ccc;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  width: 100%;
  overflow-x: clip;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Container class */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 15px;
  box-sizing: border-box;
}

/* Responsive breakpoints */
@media (max-width: 1200) {
  section {
    padding-inline: 50px !important;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0px 20px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0px 20px;
  }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  background-image: url(images/new-hero-bg2.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1000;
  border-bottom: 1px solid #2c343c;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 11px;
}

.logo img {
  height: 35px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.3s;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
}

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

.contact-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 0.5px solid #fff;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: all-small-caps;
  text-decoration: none;
}

.btn-outline {
  width: fit-content;
  height: 26px;
  border-radius: 60px;
  background: linear-gradient(89.05deg, #6cb6ff 0.81%, #2d51fe 99.19%);
  opacity: 1;
  backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  align-items: start;
  padding: 12px 24px 12px 24px;
  display: flex;
  align-items: center;
}

.btn-outline:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: #ffffff;
  padding-left: 10px;
}

.mobile-menu {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.btn-outline-mobile {
  display: none;
  color: #4ea3ff;
  text-decoration: none;
  transition: all 0.3s;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  font-variant: all-small-caps;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a121c;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

/* Hide body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  height: 100%;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #2c343c;
}

.mobile-menu-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-separator {
  height: 1px;
  background: #2c343c;
  margin: 0 24px;
}

.mobile-menu-nav {
  padding: 24px 0;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  cursor: pointer;
}

.mobile-menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #4dabf7;
}

.mobile-menu-item.active {
  background: rgba(77, 171, 247, 0.1);
  border-left-color: #4dabf7;
  color: #4dabf7;
}

.mobile-menu-item.has-submenu {
  position: relative;
}

.chevron {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Mobile Submenu */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-submenu.active {
  max-height: 500px;
}

.submenu-item {
  display: block;
  padding: 12px 24px 12px 48px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.submenu-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #4dabf7;
}

.submenu-item:first-child {
  padding-top: 16px;
}

.submenu-item:last-child {
  padding-bottom: 20px;
}

/* HERO SECTION */
/* Hero Section Animations */
.hero {
  padding-top: 83px;
  background-image: url("images/new-hero-bg2.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 1;
  transform: translateY(-83px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-heading {
  text-align: center;
  font-family: Montserrat;
  font-size: 120px;
  font-style: normal;
  font-weight: 600;
  line-height: 108.68%;
  letter-spacing: 2.92px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: linear-gradient(
    123deg,
    #fff 61.76%,
    rgba(255, 255, 255, 0.08) 127.03%,
    rgba(255, 255, 255, 0) 141.04%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero.visible .main-heading {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.2s;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero.visible .hero-container {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-right {
  margin-left: -120px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero.visible .hero-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.hero-left {
  text-align: end;
  margin-block: 40px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
  right: -16px;
  z-index: 10;
  margin-right: -19px;
}

.hero.visible .hero-left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.hero-left .main-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-wrap: nowrap;
}

.main-title,
.tagline {
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero.visible .hero-left .main-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-left .hyphen {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.hero-left .tagline {
  margin: 0 0 1rem 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.visible .hero-left .tagline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-left .description {
  font-size: 20px;
  font-weight: 400;
  color: #bbb;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.visible .hero-left .description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero-right h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-right p {
  margin-bottom: 1.5rem;
  color: #ebebeb;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.visible .hero-right p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero-phone {
  position: relative;
  top: -82px;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0;
}

.hero.visible .hero-phone {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
}

.hero-phone img {
  max-width: 600px;
  display: block;
  margin: auto;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, #6cb6ff, #2d51fe);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s;
}

.hero.visible .btn-primary {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.8s;
}

.btn-primary:hover {
  background: #1d7cd9;
}

.btn-primary::after {
  content: url(images/Vector.svg);
  font-size: 16px;
  opacity: 1;
  color: #ffffff;
}

.hero-left-mobile {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 1450px) {
  .hero-left .main-title {
    text-wrap: wrap;
  }
}

@media (max-width: 1210px) {
  .hero-right p {
    font-size: 18px;
    line-height: 30px;
  }

  .hero-left .main-title,
  .hero-left .tagline {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .contact-btn {
    display: none;
  }

  .privacy-install-btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  .privacy-install-btn::after {
    width: 10px !important;
    height: 10px !important;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .btn-outline-mobile {
    display: block;
  }

  .btn-primary {
    font-size: 12px;
    padding: 8px 5px;
  }

  .btn-outline {
    display: none;
  }

  .hero-right {
    text-align: left;
  }

  .hero-right h1 {
    font-size: 2rem;
  }

  .main-heading {
    font-size: 60px;
  }

  .hero-left,
  .hero-right {
    margin: auto;
  }

  .hero-phone {
    top: 0;
  }

  .hero-phone img {
    max-width: 250px;
  }

  .hero-left .main-title {
    font-size: 18px;
  }
  .tagline {
    font-size: 18px !important;
  }

  .hero-left {
    font-size: 21px;
    right: 0;
  }

  .hero-container {
    display: grid;
    text-align: center;
  }
  .description {
    font-size: 18px !important;
  }
}

@media (max-width: 786px) {
  .nav-container {
    padding-block: 12px;
  }

  .main-heading {
    text-align: left;
    font-size: 28px;
  }
  .hero {
    padding-top: 50px;
  }

  .hero-left {
    display: none;
  }

  .hero-left-mobile {
    display: block;
    text-align: left;
  }
  .hero-phone img {
    max-width: 300px;
  }
  .hero-left-mobile h3 {
    font-size: 16px;
    text-transform: uppercase;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .description {
    display: none;
  }

  .hero-right {
    text-align: left;
  }

  .hero-right p {
    font-size: 14px;
    line-height: 140%;
    margin-top: 0;
  }

  .btn-primary {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-left-mobile {
    order: 1;
  }

  .hero-phone {
    order: 3;
    margin-top: 70px;
  }

  .hero-right {
    order: 2;
    margin-left: 0;
    max-width: 100%;
  }
}

/* Section */
.version {
  padding: 60px 20px;
}

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

/* Left image */
.version-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}

/* Right content */
.version-content {
  flex: 1;
  min-width: 280px;
}

.version-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.version-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #cccccc;
}

.version-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.version-content ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 40px;
  border: 1px solid var(--secondary-color);
  color: var(--text-light);
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--secondary-color);
  color: var(--bg-dark);
}

/* ========== SECTION 2: PARTY LOVERS SECTION START ========== */
.party-lovers-section {
  background: #02020d;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.party-lovers-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.party-lovers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(108, 182, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.party-lovers-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-weight: 500;
  font-size: 24px;
  color: #aaa;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 38px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.stats-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 15s linear infinite;
  gap: 140px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
  margin-bottom: 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.stat-item:hover .stat-label {
  color: #fff;
}

.star-rating,
.ages,
.happy-players {
  opacity: 0.5;
}

.star-rating:hover,
.happy-players:hover,
.ages:hover {
  opacity: 1;
}

.stat-item:hover .stat-label {
  font-size: 36px;
}

.stat-number {
  font-weight: 600;
  font-size: 160px;
  line-height: 140%;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #4a9f9f 25%, #1a30ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-weight: 400;
  font-size: 28px;
  color: #ebebeb;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  min-height: 60px;
}

.accent-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #fbbf24 50%,
    transparent 100%
  );
  margin-top: 20px;
  position: relative;
}

.accent-line::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

@media (min-width: 1128px) and (max-width: 1628px) {
  .stat-number {
    font-size: 160px;
  }

  .stat-label {
    font-size: 24px;
  }

  .accent-line {
    margin-top: 15px;
  }

  .accent-line::after {
    width: 3px;
    height: 3px;
  }
}

@media (min-width: 992px) and (max-width: 1128px) {
  .stat-number {
    font-size: 60px;
  }

  .stat-label {
    font-size: 18px;
  }

  .accent-line {
    margin-top: 15px;
  }

  .accent-line::after {
    width: 3px;
    height: 3px;
  }
}

/* ========== SECTION 2: PARTY LOVERS SECTION END ========== */

/* ========== SECTION 2: RESPONSIVE DESIGN START ========== */

/* Tablet Responsive */
@media (max-width: 1024px) {
  .party-lovers-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .stats-container {
    margin-bottom: 35px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 15px;
  }

  .stat-item:hover .stat-label {
    font-size: 26px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .party-lovers-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .stats-container {
    margin-bottom: 30px;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .stat-item:hover .stat-label {
    font-size: 14px;
  }

  .stat-number {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
  }

  .accent-line {
    margin-top: 15px;
  }
}

@media (max-width: 560px) {
  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .accent-line {
    margin-top: 10px;
  }

  .accent-line::after {
    width: 2px;
    height: 2px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .party-lovers-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 12px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .stats-container {
    gap: 50px;
    margin-bottom: 25px;
  }

  .stats-track {
    gap: 50px;
  }

  .stat-item {
    max-width: 250px;
  }

  .stat-number {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 10px;
  }

  .accent-line {
    margin-top: 10px;
    height: 1px;
  }

  .accent-line::after {
    width: 3px;
    height: 3px;
  }
}

/* ========== SECTION 2: RESPONSIVE DESIGN END ========== */

/* ========== SECTION 3: CHARADES CHANGES SECTION START ========== */
.charade-changes-everything {
  padding-bottom: 100px;
  background: #02020d;
  background-image: url("images/patterns.png");
}

.charade-changes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.wrapper-one {
  padding-top: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-inline: 50px;
  border-radius: 30px;
  background: url("images/bg-gradient.png") no-repeat center/cover;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wrapper-one.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Individual animations for each wrapper-one div */
/* First wrapper-one (Why Charades Changes Everything) */
.wrapper-one:first-child.visible {
  transition-delay: 0.1s;
  animation: slideInFromLeft 0.8s ease-out 0.1s both;
}

/* Second wrapper-one (Lightning-fast rounds) */
.wrapper-one:last-child.visible {
  transition-delay: 0.1s;
  animation: slideInFromRight 0.8s ease-out 0.1s both;
}

/* Keyframe animations for wrapper-one divs */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.wrapper-one-text {
  width: 45%;
}

.wrapper-one-text h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.wrapper-one-text p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.wrapper-one img {
  max-width: 100%;
  height: auto;
  display: block;
  padding-bottom: 1px;
}

.lightning-fast-row img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: -63px;
}

.second-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.second-row.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Keyframe animation for second-row */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.zero-hassle {
  display: flex;
  padding: 36px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 30px;
  background: url("images/bg-gradient-vertical.png") no-repeat center/cover;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.zero-hassle.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Individual animations for zero-hassle cards in second-row */
/* First zero-hassle (Versus UI card) */
.second-row .zero-hassle:first-child.visible {
  transition-delay: 0.1s;
  animation: slideInFromLeft 0.8s ease-out 0.1s both;
}

/* Second zero-hassle (Category Locked UI card) */
.second-row .zero-hassle:last-child.visible {
  transition-delay: 0.2s;
  animation: slideInFromRight 0.8s ease-out 0.2s both;
}

.zero-hassle img {
  max-width: 100%;
  height: auto;
  display: block;
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-text h4 {
  margin: 0;
}

.charade-changes-text {
  font-size: 24px;
}

.icon-text-paragraph {
  font-size: 18px;
}

/* Animation for lightning-fast-row class */
.lightning-fast-row {
  padding-top: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-left: 50px;
  padding-right: 80px;
  border-radius: 30px;
  background: url(images/bg-gradient.png) no-repeat center / cover;
  opacity: 0;
  gap: 16px;
}

.lightning-fast-row.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFromRight 0.8s ease-out 0.1s both;
}

/* Animation for lightning-fast div in the last wrapper-one */
.lightning-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lightning-fast.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
  animation: bounceIn 0.8s ease-out 0.1s both;
}

/* Keyframe animation for lightning-fast */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========== SECTION 3: CHARADES CHANGES SECTION ENDS ========== */

/* ========== SECTION 3: RESPONSIVE DESIGN STARTS ========== */

@media (max-width: 1024px) {
  .charade-changes-everything {
    padding: 0;
  }

  .wrapper-one {
    justify-content: space-between;
  }
  .lightning-fast-row {
    justify-content: space-between;
  }

  .wrapper-one img {
    max-width: 438px;
  }
  .lightning-fast-row img {
    max-width: 438px;
  }

  .wrapper-one-text h3 {
    font-size: 18px;
  }

  .wrapper-one-text p {
    font-size: 14px;
  }

  .charade-changes-text {
    font-size: 18px;
  }

  .icon-text-paragraph {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .wrapper-one {
    flex-direction: column;
    padding-top: 24px;
    padding-inline: 20px;
    align-items: flex-start;
  }
  .lightning-fast-row {
    flex-direction: column;
    padding-top: 24px;
    align-items: flex-start;
    padding-inline: 20px;
  }
  .charade-changes-text {
    font-size: 18px;
  }
  .wrapper-one-text {
    width: 100%;
    text-align: left;
  }

  .second-row {
    flex-direction: column;
  }

  .lightning-fast {
    text-align: left;
  }

  .works-anywhere {
    text-align: left;
  }
  .lightning-fast-img {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .wrapper-one img {
    max-width: 250px;
  }
  .lightning-fast-row img {
    max-width: 250px;
  }
}

/* ========== SECTION 3: RESPONSIVE DESIGN END ========== */

/* ========== SECTION 4: FEATURES SECTION STARTS ========== */
.features {
  padding-block: 100px;
  text-align: center;
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.features-heading h2 {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(
    101deg,
    #fff 40.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-section.visible .features-heading h2 {
  opacity: 1;
  transform: translateY(0);
}

.features-heading p {
  color: #ebebeb;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-section.visible .features-heading p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.features-content {
  background: url("images/features-bg2.png") no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
}
.mobile-features {
  display: flex;
  justify-content: center;
}

.features-rows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.features-start {
  text-align: end;
  max-width: 400px;
  width: 30%;
}

.extra-space {
  width: 30%;
}

.features-end {
  text-align: start;
  max-width: 590px;
  width: 30%;
}

.features-start h4,
.features-end h4 {
  color: #2995fe;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.features-start p,
.features-end p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.space {
  justify-content: space-around;
}

/* ========== SECTION 4: FEATURES SECTION ENDS ========== */

/* ========== SECTION 4: RESPONSIVE DESIGN STARTS ========== */

@media (max-width: 1200px) {
  .features-start h4,
  .features-end h4 {
    font-size: 18px;
  }

  .features-start p,
  .features-end p {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .features {
    padding: 60px 0;
  }

  .features-heading h2 {
    font-size: 24px;
  }

  .features-heading p {
    font-size: 18px;
  }
}

/* ========== SECTION 4: RESPONSIVE DESIGN ENDS ========== */

/* ========== SECTION 5: BATTLE MODE SECTION STARTS ========== */
/* Battle Mode Section Animations */
.battle-mode-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding-block: 100px;
  background-color: #02020d;
}

.battle-mode-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.battle-mode-section h2 {
  text-align: center;
  font-size: 48px;
  margin-top: 0;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.battle-mode-section.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SECTION 5: BATTLE MODE SECTION ENDS ========== */

/* ========== SECTION 5: RESPONSIVE DESIGN STARTS ========== */
@media (max-width: 1200px) {
  .battle-mode-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .battle-mode-section {
    padding-block: 60px;
  }
}

@media (max-width: 768px) {
  .battle-mode {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
  }
}

/* ========== SECTION 5: RESPONSIVE DESIGN ENDS ========== */

/* ======SECTION 6: GO-TO GAME SECTION STARTS===== */

/* Go-To-Game Section Animations */
.go-to-game {
  padding-block: 100px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  border-top: 0.5px solid #2c343c;
  background: #02020d;
}

.go-to-game.visible {
  opacity: 1;
  transform: translateY(0);
}

.go-to-game-heading {
  padding-bottom: 60px;
}

.go-to-game-heading h2 {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  margin-top: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.go-to-game.visible .go-to-game-heading h2 {
  opacity: 1;
  transform: translateY(0);
}

.go-to-game-heading p {
  color: #cccccc;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  max-width: 800px;
  margin: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.go-to-game.visible .go-to-game-heading p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.go-to-game-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.go-to-game.visible .go-to-game-cards {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.single-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.go-to-game.visible .single-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for single cards */
.go-to-game.visible .single-card:nth-child(1) {
  transition-delay: 0.3s;
}

.go-to-game.visible .single-card:nth-child(2) {
  transition-delay: 0.4s;
}

.go-to-game.visible .single-card:nth-child(3) {
  transition-delay: 0.5s;
}

.go-to-game.visible .single-card:nth-child(4) {
  transition-delay: 0.6s;
}

.go-to-game.visible .single-card:nth-child(5) {
  transition-delay: 0.7s;
}

.go-to-game.visible .single-card:nth-child(6) {
  transition-delay: 0.8s;
}

.single-card-img {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: linear-gradient(to bottom, #ffffff, #373838);
  padding: 1px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  animation: imageFadeIn 0.5s ease forwards;
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.single-card-content {
  display: flex;
  padding: 1px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  min-height: 148px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #ffffff, #373838);
}
.single-card-overlay {
  background: #08121c;
  height: 100%;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  min-height: 148px;
}

/* Hover effects for cards */
.single-card:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease;
}

.single-card:hover .single-card-overlay {
  background: #0a1a2e;
  border-color: #4dabf7;
  box-shadow: 0 8px 25px rgba(77, 171, 247, 0.15);
  transition: all 0.3s ease;
}

.single-card:hover .single-card-img img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.single-card-content h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32.586px;
  margin: 0;
}

.single-card-content p {
  color: #c1c3c7;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.586px;
  margin: 0;
  text-align: left;
}

/* ======SECTION 6: GO-TO GAME SECTION ENDS===== */

/* ========== SECTION 6: RESPONSIVE DESIGN STARTS ========== */

@media (max-width: 1024px) {
  .go-to-game {
    padding-block: 60px;
  }

  .go-to-game-heading h2 {
    font-size: 24px;
  }

  .go-to-game-heading p {
    font-size: 18px;
  }

  .single-card-content {
    min-height: 80px;
  }
  .single-card-overlay {
    min-height: 80px;
  }

  .single-card-content h4,
  .single-card-content p {
    font-size: 14px;
    line-height: 120%;
  }
}

@media (max-width: 768px) {
  .go-to-game-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .go-to-game-heading h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .single-card-content h4 {
    padding-bottom: 6px;
  }

  .single-card-content h4,
  .single-card-content p {
    font-size: 18px;
  }
  .single-card-content {
    min-height: 114px;
  }
  .single-card-overlay {
    min-height: 114px;
  }
}

@media (max-width: 480px) {
  .go-to-game-cards {
    grid-template-columns: 1fr;
  }

  .single-card-content {
    min-height: 50px;
  }
  .single-card-overlay {
    min-height: 50px;
  }
}

/* ==========SECTION 9: TRANSFORM GATHERING SECTION START========== */
/* CTA Section Animations */
.cta {
  background: #02020d;
  padding: 120px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-content {
  position: relative;
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: space-between;
  background: url("images/bg-gradient.png") no-repeat center/cover;
  border-radius: 30px;
  padding-right: 100px;
  padding-left: 20px;
  padding-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta.visible .cta-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.cta-text {
  flex: 1;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 590px;
}

.cta.visible .cta-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.cta-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta.visible .cta-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.cta-description {
  color: #ccc;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 39.75px;
  letter-spacing: -0.484px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta.visible .cta-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.cta-image {
  flex: 1;
  opacity: 0;
  transform: translateX(30px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  bottom: -2px;
  right: 160px;
}

.cta.visible .cta-image {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.5s;
}

.cta-img {
  width: 100%;
  height: auto;
}

/* CTA Button Animation */
.cta .privacy-install-btn {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta.visible .privacy-install-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.6s;
  animation: ctaButtonPulse 2s ease-in-out 1s infinite;
}

/* Button pulse animation */
@keyframes ctaButtonPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(77, 171, 247, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(77, 171, 247, 0);
  }
}

/* ==========SECTION 9: TRANSFORM GATHERING SECTION ENDS========== */

/* ========== SECTION 9: RESPONSIVE DESIGN STARTS ========== */

@media (max-width: 1320px) {
  .cta-image {
    position: relative;
    right: 0;
  }
  .cta-content {
    padding-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .cta {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.48px;
    text-transform: uppercase;
  }

  .cta-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.28px;
  }
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    padding-right: 0;
    padding-top: 40px;
    padding-inline: 12px;
    gap: 0;
    padding-bottom: 0;
  }
  .cta-description {
    font-size: 18px;
  }

  .cta-text {
    text-align: left;
  }
}

/* ========== SECTION 9: RESPONSIVE DESIGN ENDS ========== */

/* ========== SECTION 11: PLAYERS SECTION STARTS ========== */
.testimonials {
  background: linear-gradient(135deg, #02020d, #020210, #030338);
  padding: 100px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-title {
  text-align: center;
  font-family: Montserrat;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  /* 120.833% */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0.3) 67%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials.visible .testimonials-title {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.testimonial-card {
  border-radius: 16px;
  background: linear-gradient(
    92deg,
    rgba(255, 255, 255, 0.06) 21.68%,
    rgba(255, 255, 255, 0.06) 102.49%
  );
  backdrop-filter: blur(18px);
  padding: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials.visible .testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for each card */
.testimonials.visible .testimonial-card:nth-child(1) {
  transition-delay: 0.1s;
}

.testimonials.visible .testimonial-card:nth-child(2) {
  transition-delay: 0.2s;
}

.testimonials.visible .testimonial-card:nth-child(3) {
  transition-delay: 0.3s;
}

.testimonials.visible .testimonial-card:nth-child(4) {
  transition-delay: 0.4s;
}

.testimonial-app {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 37.375px;
  /* 116.798% */
  font-variant: all-small-caps;
}

.testimonial-text {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 28px */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.author-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #dddddd;
}

/* Testimonials Responsive Styles */
@media (max-width: 1200px) {
  .testimonials-title {
    font-size: 36px;
    line-height: 44px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-inline: 20px;
  }

  .testimonial-card {
    padding: 32px;
  }

  .testimonial-app {
    font-size: 28px;
    line-height: 32px;
  }

  .testimonial-text {
    color: #fff;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 16.8px */
    min-height: 80px;
  }

  .author-avatar {
    width: 56px;
    height: 56px;
  }

  .author-name {
    font-size: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .testimonials-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-app {
    font-size: 32px;
    line-height: 28px;
  }

  .testimonial-text {
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
    min-height: 60px;
  }

  .testimonial-author {
    gap: 16px;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
  }

  .author-name {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-app {
    font-size: 32px;
    line-height: 24px;
  }

  .testimonial-text {
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
    min-height: 50px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-name {
    font-size: 1rem;
  }
}

/* Company Section */
.company {
  background: #02020d;
  padding: 120px 0;
}

.company-content {
  display: flex;
  gap: 100px;
  align-items: center;
  background: #040818;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(37, 37, 48, 0.67);
  background-image: url("images/background-border.png");
  background-size: 99.84% 151.2%;
  background-position: 50% 50%, 0% 0%;
}

.company-text {
  flex: 1;
}

.company-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.company-description {
  font-size: 1.125rem;
  color: #ebebeb;
  margin-bottom: 32px;
  font-weight: 300;
}

.company-features {
  list-style: none;
  margin-bottom: 32px;
}

.company-features li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(37, 37, 48, 0.67);
  font-size: 1.5rem;
  color: #ebebeb;
  font-weight: 300;
}

.company-features li:before {
  content: "✓";
  color: #69b1ff;
  font-size: 1.5rem;
  font-weight: 600;
}

.company-image {
  flex: 1;
}

.company-img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

/* ========== SECTION 11: PLAYERS SECTION ENDS ========== */

/* ========== SECTION 12: CRAFTED SECTION START ==========*/
/* Crafted Section Animations */
.crafted {
  padding-block: 100px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: #02020d;
}

.crafted.visible {
  opacity: 1;
  transform: translateY(0);
}

.crafted-container {
  padding-inline: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 300px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.crafted.visible .crafted-container {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.crafted-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 600px;
}

.crafted.visible .crafted-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.crafted-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding-block: 20px;
}

.crafted.visible .crafted-features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.crafted-features li {
  display: flex;
  align-items: center;
  gap: 21px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.crafted.visible .crafted-features li {
  opacity: 1;
  transform: translateX(0);
  padding-block: 19px;
}

/* Staggered animation for feature items */
.crafted.visible .crafted-features li:nth-child(1) {
  transition-delay: 0.6s;
  border-bottom: 1px solid rgba(37, 37, 48, 0.67);
}

.crafted.visible .crafted-features li:nth-child(2) {
  transition-delay: 0.7s;
  border-bottom: 1px solid rgba(37, 37, 48, 0.67);
}

.crafted.visible .crafted-features li:nth-child(3) {
  transition-delay: 0.8s;
}

/* Crafted section download button animation */
.crafted .privacy-install-btn {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.crafted.visible .privacy-install-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.9s;
}

.feature-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-top: 8px;
}

.feature-text {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
}

.crafted-content h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin: 0;
  padding-bottom: 8px;
}

.crafted.visible .crafted-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.crafted-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  color: #ebebeb;
  margin: 0;
}

.crafted.visible .crafted-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.crafted-img {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.crafted.visible .crafted-img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.crafted-img img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crafted-img img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ========== SECTION 12: CRAFTED SECTION ENDS ==========*/

/* ========== SECTION 12: RESPONSIVE DESIGN STARTS ========== */

/* Desktop - Default styles already defined above */

/* Tablet - Keep row layout but adjust spacing and font sizes */
@media (max-width: 1024px) {
  .crafted {
    padding: 80px 0;
  }
  .feature-text {
    font-size: 16px;
  }

  .crafted-container {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }

  .crafted-content {
    flex: 1;
  }

  .crafted-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .crafted-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .crafted-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .crafted-img img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .crafted-img img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  }
}

/* Mobile - Column layout */
@media (max-width: 768px) {
  .crafted {
    padding: 60px 0;
  }

  .crafted-container {
    flex-direction: column;
    gap: 70px;
    text-align: center;
    padding-inline: 0;
  }

  .crafted-content {
    text-align: left;
  }

  .crafted-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .crafted-content p {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .crafted-features li {
    gap: 10px;
  }

  .feature-icon {
    width: 18px;
    height: 18px;
  }

  .feature-text {
    font-size: 14px;
  }

  .crafted-img img {
    max-height: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .crafted-img img:hover {
    transform: scale(1.02);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .crafted {
    padding: 40px 0;
  }

  .crafted-container {
    gap: 24px;
  }

  .crafted-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .crafted-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .crafted-features li {
    gap: 8px;
  }

  .feature-icon {
    width: 16px;
    height: 16px;
  }

  .crafted-img img {
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
}

/* ========== SECTION 12: RESPONSIVE DESIGN ENDS ========== */

/* ========== SECTION 13: READY TO TURN SECTION START ==========*/
.ready-to-turn {
  padding-block: 100px;
  border-block: 1px solid #2c343c;
  background: #02020d;
}

.ready-to-turn-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.ready-to-turn-content h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  width: 50%;
}

/* ========== SECTION 13: READY TO TURN SECTION ENDS ==========*/

/* ========== SECTION 13: RESPONSIVE DESIGN STARTS ========== */

/* Tablet */
@media (max-width: 1024px) {
  .ready-to-turn {
    padding: 80px 0;
  }

  .ready-to-turn-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .ready-to-turn-content h2 {
    font-size: 28px;
    width: 100%;
    margin-bottom: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ready-to-turn {
    padding: 60px 0;
  }

  .ready-to-turn-content {
    gap: 24px;
    text-align: left;
    align-items: start;
  }

  .ready-to-turn-content h2 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ready-to-turn {
    padding: 40px 0;
  }

  .ready-to-turn-content {
    gap: 20px;
    padding-inline: 16px;
  }

  .ready-to-turn-content h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

/* ========== SECTION 13: RESPONSIVE DESIGN ENDS ========== */

/* =====SECTION 14: RECOGNISED GLOBALLY SECTION START====== */
/* Recognised Globally Section Animations */
.recognised-globally {
  padding-block: 100px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: #02020d;
}

.recognised-globally.visible {
  opacity: 1;
  transform: translateY(0);
}

.recognised-globally-container h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recognised-globally.visible .recognised-globally-container h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.recognised-globally-container p {
  font-size: 24px;
  color: #cccccc;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.recognised-globally.visible .recognised-globally-container p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.recognized-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.recognised-globally.visible .recognized-cards {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.single-recognized-card {
  display: flex;
  padding: 1px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  border-radius: 12px;
  background: linear-gradient(to bottom, #ffffff, #373838);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.single-recognized-overlay {
  background: #08121c;
  height: 100%;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.award-logos {
  min-height: 100px;
}

.recognised-globally.visible .single-recognized-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for recognized cards */
.recognised-globally.visible .single-recognized-card:nth-child(1) {
  transition-delay: 0.4s;
}

.recognised-globally.visible .single-recognized-card:nth-child(2) {
  transition-delay: 0.5s;
}

.recognised-globally.visible .single-recognized-card:nth-child(3) {
  transition-delay: 0.6s;
}

.recognised-globally.visible .single-recognized-card:nth-child(4) {
  transition-delay: 0.7s;
}

.single-recognized-card p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  margin: 0;
}

.award-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.rating {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.partners-bordered {
  background: linear-gradient(to bottom, #ffffff, #373838);
  border-radius: 12px;
  padding: 1px;
}

.partners {
  display: flex;
  gap: 1.5rem;
  padding: 24px;
  border-radius: 12px;
  background: #08121c;
}

.recognised-globally.visible .partners {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.sinle-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.recognised-globally.visible .sinle-partner {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for partner items */
.recognised-globally.visible .sinle-partner:nth-child(1) {
  transition-delay: 0.9s;
}

.recognised-globally.visible .sinle-partner:nth-child(3) {
  transition-delay: 1s;
}

.recognised-globally.visible .sinle-partner:nth-child(5) {
  transition-delay: 1.1s;
}

.sinle-partner p {
  font-size: 18px;
  font-weight: 300;
}

.divider {
  height: 84px;
  width: 0.5px;
  background: #5ea0e8;
  margin: auto;
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.recognised-globally.visible .divider {
  opacity: 1;
  transform: scaleY(1);
}

/* Staggered animation for dividers */
.recognised-globally.visible .divider:nth-child(2) {
  transition-delay: 0.95s;
}

.recognised-globally.visible .divider:nth-child(4) {
  transition-delay: 1.05s;
}

/* =====SECTION 14: RECOGNISED GLOBALLY SECTION ENDS====== */

/* ========== SECTION 14: RESPONSIVE DESIGN STARTS ========== */

/* Desktop - Default styles already defined above */

/* Tablet - 2 cards per row */
@media (max-width: 1200px) {
  .recognised-globally {
    padding: 80px 0;
  }

  .recognised-globally-container h2 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.72px;
  }

  .recognised-globally-container p {
    font-size: 20px;
    line-height: 28px;
  }

  .recognized-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .single-recognized-card {
    padding: 1px;
  }

  .partners {
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }

  .sinle-partner {
    flex: 1;
  }

  .divider {
    display: block;
  }
}

@media (max-width: 1024px) {
  .recognised-globally-container h2 {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .partners {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    align-items: center;
  }

  .sinle-partner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .sinle-partner img {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
  }

  .sinle-partner p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    text-align: center;
  }

  .divider {
    display: none;
  }
}

/* Mobile - 1 card per row */
@media (max-width: 768px) {
  .recognised-globally {
    padding: 60px 0;
  }

  .recognised-globally-container h2 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.56px;
    text-align: left;
  }
  .single-recognized-overlay {
    gap: 8px;
    padding: 12px;
  }

  .recognised-globally-container p {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  .recognized-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }

  .single-recognized-card {
    padding: 1px;
    gap: 0;
  }

  .single-recognized-card img {
    max-width: 120px;
    height: auto;
  }
  .award-logos img {
    max-height: 70px;
  }

  .award-logos {
    min-height: 0;
  }
  .star-icon {
    width: 20px;
    height: 20px;
  }

  .award-rating {
    margin: 8px 0;
    gap: 8px;
  }

  .rating {
    font-size: 14px;
  }

  .single-recognized-card p {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }

  .partners {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    align-items: center;
  }

  .sinle-partner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .sinle-partner img {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
  }

  .sinle-partner p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    text-align: center;
  }

  .divider {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .recognised-globally {
    padding: 40px 0;
  }

  .recognised-globally-container h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.48px;
  }

  .recognised-globally-container p {
    font-size: 18px;
  }

  .recognized-cards {
    gap: 16px;
    margin-bottom: 24px;
  }

  .single-recognized-card {
    padding: 1px;
  }

  .single-recognized-card img {
    max-width: 100px;
  }

  .rating {
    font-size: 14px;
  }

  .star-icon {
    width: 15px;
    height: 15px;
  }

  .single-recognized-card p {
    font-size: 12px;
  }

  .partners {
    padding: 16px;
    gap: 20px;
    align-items: center;
  }

  .sinle-partner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .sinle-partner img {
    max-width: 100px;
  }

  .sinle-partner p {
    font-size: 14px;
    text-align: center;
  }
}

/* ========== SECTION 14: RESPONSIVE DESIGN ENDS ========== */

/* ======FOOTER STARTS===== */
.footer {
  background: #02020d;
}

.footer .container {
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 40px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-cta-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.btn-secondary {
  font-family: Montserrat, sans-serif;
  padding: 12px 24px;
  border-radius: 60px;
  background-color: #02020d;
  border: 1px solid #5ea0e8;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  max-width: fit-content;
  text-decoration: none;
}

.btn-secondary::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: #ffffff;
  padding-left: 10px;
}

.newsletter-input {
  position: relative;
  display: flex;
  min-width: 412px;
}

.email-input {
  padding: 16px 28px;
  border: 1px solid #7c7c7c;
  border-radius: 99999px;
  background: transparent;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: flex;
  gap: 18rem;
  margin-bottom: 40px;
  width: 100%;
}

.footer-nav-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin-top: 48px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #5ea0e8;
}

.footer-locations {
  flex: 1;
}

.footer-locations-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.location-address {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #2c343c;
  width: 100%;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright-text {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 400;
}

.copyright-dot {
  color: #02bde3;
  font-size: 1.125rem;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.social-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #5ea0e8;
}
.join-community,
.made-with-love {
  display: none;
}

/* ========== FOOTER TABLET RESPONSIVE (≤1024px) ========== */
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0;
  }

  .footer .container {
    padding: 0 20px;
  }

  .footer-top {
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 30px;
  }

  .footer-content {
    gap: 10rem;
    margin-bottom: 40px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 1.375rem;
  }

  .footer-link {
    font-size: 14px;
  }

  .location-name {
    font-size: 14px;
  }

  .location-address {
    font-size: 14px;
  }
  .footer-cta-title {
    font-size: 18px;
  }
  .newsletter-title {
    font-size: 18px;
  }
  .btn-secondary {
    font-size: 12px;
  }
  .footer-nav-title {
    font-size: 14px;
  }
  .footer-locations-title {
    font-size: 14px;
  }
  .copyright-text,
  .copyright-text2 {
    font-size: 14px;
  }
  .social-link {
    font-size: 14px;
  }
}

/* ========== FOOTER MOBILE RESPONSIVE (≤768px) ========== */

@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer .container {
    padding: 0 16px;
  }
  .copyright-text2 {
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    text-align: left;
    width: 100%;
  }

  .footer-cta {
    gap: 16px;
    width: 100%;
  }

  .footer-newsletter {
    gap: 16px;
    max-width: 100%;
    margin-left: 0;
    width: 100%;
  }

  .copyright-dot {
    display: none;
  }
  .newsletter-title {
    display: none;
  }
  .join-community {
    display: block;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
  }

  .footer-cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .btn-secondary {
    font-size: 16px;
  }

  .newsletter-input {
    max-width: 100%;
    min-width: 100%;
  }

  .email-input {
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    width: 100%;
  }

  .footer-nav {
    width: 100%;
    text-align: left;
  }

  .footer-locations {
    width: 100%;
    text-align: left;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-nav-list {
    gap: 16px;
  }

  .footer-link {
    font-size: 1rem;
    text-align: center;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 400px;
  }

  .location-name {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    margin-top: 0;
  }

  .location-address {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 0;
    width: 100%;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .made-with-love {
    font-size: 0.875rem;
    text-align: center;
    display: block;
  }

  .copyright-text {
    display: none;
  }

  .footer-social {
    display: none;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-link {
    font-size: 1rem;
    text-align: center;
  }
}

/* ========== FOOTER SMALL MOBILE RESPONSIVE (≤480px) ========== */
@media (max-width: 480px) {
  .footer {
    padding: 24px 0;
  }

  .footer .container {
    padding: 0 12px;
  }

  .footer-top {
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .footer-cta-title,
  .newsletter-title {
    font-size: 1.25rem;
  }

  .footer-content {
    margin-bottom: 20px;
  }

  .footer-nav-title,
  .footer-locations-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .footer-nav-list {
    gap: 12px;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .location-name {
    font-size: 0.9rem;
  }

  .location-address {
    font-size: 0.8rem;
  }

  .footer-bottom {
    gap: 16px;
    padding: 20px 0;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    font-size: 0.9rem;
  }
}

/* ======FOOTER ENDS===== */

/* ========== VERSUS UI CARD STYLES ========== */
.versus-ui-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #4a90e2, #357abd) border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  height: 360px;
}

.versus-header {
  text-align: left;
}

.versus-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.versus-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selection-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-label {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin: 0;
}

.segmented-control {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.segment-btn {
  flex: 1;
  padding: 12px 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  background: #f0f0f0;
  border: none;
  transition: all 0.3s ease;
}

.segment-btn:hover {
  background: #e0e0e0;
}

.segment-btn.selected {
  background: #4a90e2;
  color: white;
}

.continue-btn {
  background: #4a90e2;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.continue-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.continue-btn:hover .btn-arrow {
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .versus-ui-card {
    padding: 10px;
  }

  .category-locked-ui-card {
    padding: 10px !important;
  }
}

/* ========== VERSUS UI CARD RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .versus-ui-card {
    padding: 20px;
    height: 100%;
  }

  .versus-title {
    font-size: 20px;
  }

  .segment-btn {
    padding: 10px 12px;
    font-size: 16px;
  }

  .continue-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .versus-ui-card {
    padding: 15px;
  }

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

  .segment-btn {
    padding: 8px 10px;
    font-size: 14px;
  }

  .continue-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* ========== CATEGORY LOCKED UI CARD STYLES ========== */
.category-locked-ui-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #4a90e2, #357abd) border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 360px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background: #f0f0f0;
}

.category-icon-section {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.category-icon-section img {
  max-width: 34%;
  height: auto;
  display: block;
}

.category-icon-bg {
  background: linear-gradient(135deg, #e8f4fd, #d1e7f5);
  border-radius: 12px;
  padding: 20px;
  width: 120px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-label {
  font-size: 12px;
  color: #333;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  top: 8px;
  left: 12px;
}

.car-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.locked-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 0 10px 0;
}

.locked-description {
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 20px 0;
  padding: 0 10px;
}

.unlock-btn {
  background: #4a90e2;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.unlock-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/* ========== CATEGORY LOCKED UI CARD RESPONSIVE STYLES ========== */

@media (max-width: 1024) {
  .category-locked-ui-card {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .category-locked-ui-card {
    height: 100%;
  }

  .locked-title {
    font-size: 20px;
  }

  .locked-description {
    font-size: 13px;
  }

  .unlock-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .category-icon-bg {
    width: 100px;
    height: 80px;
    padding: 15px;
  }

  .car-illustration svg {
    width: 60px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .category-locked-ui-card {
    padding: 15px;
  }

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

  .locked-description {
    font-size: 12px;
  }

  .unlock-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .category-icon-bg {
    width: 80px;
    height: 70px;
    padding: 12px;
  }

  .car-illustration svg {
    width: 50px;
    height: 35px;
  }
}

/* Features Section Animations */
.features-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: #02020d;
  padding-top: 60px;
}

.features-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-section__content {
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-section.visible .features-section__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.features-section__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 20;
}

.features-section__list-left {
  text-align: end;
  margin-right: -129px;
}

.features-section__list-right {
  text-align: start;
  margin-left: -130px;
}

.features-section__phone--mobile {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-section.visible .features-section__phone--mobile {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.features-section__phone--left {
  max-width: 100%;
  display: block;
  height: auto;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-section.visible .features-section__phone--left {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.3s;
}

.first-item-left {
  margin-right: -80px;
}

.first-item-right {
  margin-left: -80px;
}

.features-section__item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.features-section__list-right .features-section__item {
  transform: translateX(30px);
}

.features-section.visible .features-section__item {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for left side items */
.features-section.visible
  .features-section__list-left
  .features-section__item:nth-child(1) {
  transition-delay: 0.3s;
}

.features-section.visible
  .features-section__list-left
  .features-section__item:nth-child(2) {
  transition-delay: 0.4s;
}

.features-section.visible
  .features-section__list-left
  .features-section__item:nth-child(3) {
  transition-delay: 0.5s;
}

/* Staggered animation for right side items */
.features-section.visible
  .features-section__list-right
  .features-section__item:nth-child(1) {
  transition-delay: 0.4s;
}

.features-section.visible
  .features-section__list-right
  .features-section__item:nth-child(2) {
  transition-delay: 0.5s;
}

.features-section.visible
  .features-section__list-right
  .features-section__item:nth-child(3) {
  transition-delay: 0.6s;
}

.features-section__item h4 {
  color: #2995fe;
  margin-bottom: 0;
}

.features-section__item p {
  margin-top: 0;
}

.features-section__content {
  font-size: 21px;
}

@media (max-width: 1450px) {
  .features-section__list {
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .features-section__list {
    gap: 26px;
  }
  .features-section__content {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .features-section__list h4,
  .features-section__list p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .features-section__image {
    display: none;
  }

  .features-section__list h4 {
    margin-top: 0;
  }
  .features-section__list h4,
  .features-section__list p {
    font-size: 12px;
  }
  .features-section__item {
    min-height: 135px;
  }

  .first-item-left,
  .first-item-right {
    margin: 0;
  }

  .features-section__list-left,
  .features-section__list-right {
    margin: 0;
  }

  .features-section__list {
    text-align: left;
  }

  .features-section__content {
    gap: 15px;
    padding-inline: 20px;
  }

  .features-section__phone--mobile {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

/* Flip layout for Section 3 */
.privacy-section.flip .privacy-main-content {
  flex-direction: row-reverse;
}

.content {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;
  flex-wrap: wrap;
  color: #ffffff;
}

.battle-mode {
  display: flex;
  gap: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.battle-mode-section.visible .battle-mode {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.left img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backdrop-filter: blur(43.2px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.left {
  width: 50%;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.battle-mode-section.visible .left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.step strong {
  display: block;
}

.step.active {
  background: #1f2937;
}

.step.active .content {
  display: block;
}

.right {
  width: 50%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.battle-mode-section.visible .right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.step {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 16px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, opacity 0.5s ease,
    transform 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.battle-mode-section.visible .step {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for step elements */
.battle-mode-section.visible .step:nth-child(1) {
  transition-delay: 0.5s;
}

.battle-mode-section.visible .step:nth-child(2) {
  transition-delay: 0.6s;
}

.battle-mode-section.visible .step:nth-child(3) {
  transition-delay: 0.7s;
}

.battle-mode-section.visible .step:nth-child(4) {
  transition-delay: 0.8s;
}

.right-paragraph {
  font-family: "Inter";
  font-weight: 400;
  color: #ffffffbf;
  margin-top: 0;
  cursor: text;
  font-size: 24px;
}

.right-paragraph:last-of-type {
  margin-bottom: 0;
}

.heading-paragraph {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 80px;
  /* width: 798px; */
  margin-inline: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
  max-width: 800px;
}

.battle-mode-section.visible .heading-paragraph {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.right-heading {
  font-family: "Inter";
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 28px;
  font-size: 32px;
}

.step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--highlight);
}

.step.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--highlight);
}

.master-charades-bottom {
  margin-top: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #cccccc;
  line-height: 34px;
  text-align: start;
  font-size: 24px;
}

.step .content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.step.open .content {
  opacity: 1;
  /* padding: 32px; */
  padding-top: 32px;
}

.steps-container .step strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}

.steps-container .step p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #d1d1d1;
}

.paragraph-title {
  font-family: "Inter";
  font-weight: 600;
  color: #ffffff;
}

/* ========== PRIVACY SECTION STYLES START ========== */
.privacy-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding-block: 100px;
  background-color: #02020d;
}

.privacy-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-content-wrapper {
  width: 100%;
  background: #02020d;
}

.privacy-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* ensures spacing */
  gap: 20px;
  /* adjust as needed */
}

.privacy-left-section,
.privacy-right-section {
  flex: 1;
  /* instead of fixed 50% */
}

.privacy-left-section {
  width: 50%;
  /* height: 688px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin-top: 123px; */
}

.privacy-right-section {
  width: 50%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.privacy-right-section img {
  max-width: 600px;
  display: block;
  margin: auto;
}

.privacy-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 48px;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.privacy-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #cccccc;
  /* width: 628px; */
  text-align: left;
  font-size: 24px;
  margin: 10px 0 12px 0;
}

.block {
  display: block;
}

.privacy-features {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}

.privacy-features li {
  display: flex;
  align-items: flex-start;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ebebeb;
  padding: 15px 0 15px 0;
  padding-left: 0;
  display: flex;
  text-align: left;
  font-size: 24px;
  border-bottom: 1px solid #252530ab;
}

.privacy-features li > div {
  display: flex;
  flex-direction: column;
}

.privacy-features li::before {
  content: url("images/Symbol.svg");
  margin-right: 10px;
  margin-top: 6px;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.privacy-install-btn {
  width: fit-content;
  height: 26px;
  border-radius: 60px;
  background: linear-gradient(89.05deg, #6cb6ff 0.81%, #2d51fe 99.19%);
  opacity: 1;
  backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  align-items: start;
  padding: 12px 24px 12px 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.secondary-btn {
  display: none;
}

.privacy-install-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.privacy-install-btn::after {
  content: url("images/Vector.svg");
  width: 16px;
  height: 16px;
  opacity: 1;
  color: #ffffff;
  padding-left: 10px;
}

.privacy-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #4a90e2, #8e44ad);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.privacy-charades-logo {
  background: white;
  color: #4a90e2;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-people-silhouette {
  position: absolute;
  bottom: 20px;
  width: 200px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* ========== PRIVACY SECTION STYLES END ========== */

/* ========== FAQ SECTION STYLES START ========== */
/* FAQ Section Animations */
.faq-section {
  padding: 100px 0;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background-color: #02020d;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.faq-left {
  flex: 1;
  padding-right: 40px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.faq-main-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(
    101deg,
    #fff 60.32%,
    rgba(255, 255, 255, 0) 129.88%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-section.visible .faq-main-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.faq-description {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #cccccc;
  margin: 0 0 40px 0;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.faq-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid #6cb6ff;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-section.visible .faq-ask-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.faq-ask-btn:hover {
  color: #6cb6ff;
  border-bottom-color: #ffffff;
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-ask-btn:hover .faq-arrow {
  transform: translate(2px, -2px);
}

.faq-right {
  flex: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible .faq-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-left: 1.5px solid rgba(26, 117, 219, 0.5);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-section.visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for FAQ items */
.faq-section.visible .faq-item:nth-child(1) {
  transition-delay: 0.4s;
}

.faq-section.visible .faq-item:nth-child(2) {
  transition-delay: 0.5s;
}

.faq-section.visible .faq-item:nth-child(3) {
  transition-delay: 0.6s;
}

.faq-section.visible .faq-item:nth-child(4) {
  transition-delay: 0.7s;
}

.faq-section.visible .faq-item:nth-child(5) {
  transition-delay: 0.8s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-left: 1.5px solid #1a76db;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  flex: 1;
}

.faq-chevron {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-chevron img {
  width: 16px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section Responsive Styles */
@media (max-width: 1024px) {
  .faq-content {
    gap: 60px;
  }

  .faq-main-heading {
    font-size: 24px;
  }

  .faq-description {
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-chevron img {
    width: 16px;
    height: 14px;
  }
  .faq-ask-btn {
    font-size: 14px;
  }
  .step.open .content {
    padding-top: 10px;
  }
  .content {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-content {
    flex-direction: column;
    gap: 40px;
  }

  .faq-left {
    padding-right: 0;
    text-align: left;
    width: 100%;
  }

  .faq-main-heading {
    font-size: 24px;
    text-align: left;
    font-weight: 500;
  }

  .faq-description {
    font-size: 16px;
    text-align: left;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question-text {
    font-size: 16px;
    text-align: left;
  }

  .faq-answer {
    padding: 0 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
    text-align: left;
  }
  .faq-ask-btn {
    display: none;
  }
  .first-btn {
    display: none;
  }

  .secondary-btn {
    display: block;
    padding: 8px 11px 12px 8px;
    height: 15px;
  }
  .content {
    justify-content: flex-start;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .faq-main-heading {
    font-size: 24px;
  }

  .faq-description {
    font-size: 18px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-chevron img {
    width: 16px;
    height: 14px;
  }
}

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

/* Tablet */
@media (max-width: 1024px) {
  .heading-paragraph {
    font-size: 18px;
    margin-bottom: 40px;
    margin-inline: auto;
    /* width: 668px; */
  }

  .container {
    gap: 24px;
  }

  .right-heading {
    font-size: 18px;
  }

  .right-paragraph {
    font-size: 14px;
  }

  .privacy-right-section img {
    max-width: 400px;
  }

  .step {
    padding: 12px;
  }

  .privacy-title {
    font-size: 24px;
  }

  .privacy-subtitle {
    font-size: 16px;
  }

  .privacy-features li {
    font-size: 14px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    text-align: center;
    gap: 32px;
  }
  .privacy-subtitle {
    font-size: 18px;
  }

  .left,
  .right {
    width: 100%;
  }

  .left img {
    /* max-width: 90%; */
    margin: 0 auto;
    display: block;
  }

  .heading-paragraph {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .privacy-main-content {
    flex-direction: column;
  }

  .right-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .right-paragraph {
    font-size: 16px;
    line-height: 1.4;
  }

  .master-charades-bottom {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .privacy-section.flip .privacy-main-content {
    flex-direction: column;
  }

  .privacy-left-section,
  .privacy-right-section {
    width: 100%;
  }

  .privacy-right-section img {
    max-width: 100%;
  }
}

.digi-logo {
  width: 135px;
  height: 29px !important;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .digi-logo {
    width: 116px;
    height: 25px !important;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .container {
    flex-direction: column;
  }

  .heading-paragraph {
    font-size: 16px;
    margin-bottom: 24px;
    margin-inline: auto;
  }

  .right-heading {
    font-size: 18px;
  }

  .right-paragraph {
    font-size: 14px;
  }

  .master-charades-bottom {
    font-size: 13px;
  }
}
