@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

:root {
  --white: rgba(255, 255, 255, 1);
  --typography-900: rgba(23, 23, 23, 1);
  --typography-800: rgba(38, 38, 38, 1);
  --typography-700: rgba(64, 64, 64, 1);
  --typography-600: rgba(82, 82, 82, 1);
  --typography-500: rgba(115, 115, 115, 1);
  --typography-400: rgba(163, 163, 163, 1);
  --typography-300: rgba(212, 212, 212, 1);
  --typography-200: rgba(229, 229, 229, 1);
  --typography-100: rgba(245, 245, 245, 1);
  --typography-50: rgba(250, 250, 250, 1);
  --error-100: rgba(240, 68, 56, 1);
  --font-figtree: 'Figtree', sans-serif;
  --accent-gradient: linear-gradient(286deg, rgba(220, 150, 0, 1) 5%, rgba(251, 199, 88, 1) 88%);
  --blue-gradient: linear-gradient(180deg, rgba(16, 89, 128, 1) 0%, rgba(72, 146, 185, 1) 100%);
  --gold-gradient: linear-gradient(180deg, rgba(178, 124, 6, 1) 0%, rgba(107, 76, 7, 1) 100%);
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--font-figtree), sans-serif;

}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
}

a {
  text-decoration: none;
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(251, 199, 88, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(251, 199, 88, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(251, 199, 88, 0.5);
  }
}

/* Landing Page Styles */
.landing-page {
  width: 100%;
  height: auto;
  background-color: #060709;
  overflow: hidden;
}

/* Background Effects */
.background-effects {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}

.ellipse-1,
.ellipse-2,
.ellipse-3,
.ellipse-4,
.ellipse-5 {
  position: absolute;
  background-color: #1d9fe6b2;
  filter: blur(454.41px);
  animation: pulse infinite ease-in-out;
  pointer-events: none;
  z-index: -1;
}

/* Adjusted individual ellipses (position and size optimized) */
.ellipse-1 {
  width: 80vw;
  height: 65vh;
  top: 400px;
  left: 10vw;
  border-radius: 50%;
  animation-duration: 15s;
}

.ellipse-2 {
  width: 70vw;
  height: 60vh;
  top: 1600px;
  left: 15vw;
  border-radius: 50%;
  animation-duration: 20s;
}

.ellipse-3 {
  width: 75vw;
  height: 45vh;
  top: 3350px;
  left: 20vw;
  border-radius: 50%;
  animation-duration: 18s;
}

.ellipse-4 {
  width: 75vw;
  height: 60vh;
  top: 3350px;
  left: -20vw;
  border-radius: 50%;
  animation-duration: 22s;
}

.ellipse-5 {
  width: 65vw;
  height: 30vh;
  top: 3800px;
  left: 10vw;
  border-radius: 50%;
  animation-duration: 25s;
}


.content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Header Styles */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding: 20px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .header {
    padding: 20px 120px;
  }
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideInLeft 0.8s ease-out;
}

.logo-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  color: white;
  font-size: 24px;
  line-height: 32px;
}

.desktop-menu {
  display: none;
}



@media (min-width: 900px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 42px;
    animation: fadeIn 1s ease-out;
  }
}

.nav-home {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.nav-home:hover {
  transform: translateY(-3px);
}

.nav-item {
  color: white;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.nav-item:hover {
  color: #fbc758;
  transform: translateY(-3px);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--accent-gradient);
  border-radius: 8px;
  color: var(--typography-900);
  font-family: var(--font-figtree), sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInRight 0.8s ease-out;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 150, 0, 0.3);
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

@media (min-width: 900px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* padding: 16px 0;
  background-color: #1a1a1a; */
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.mobile-nav.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-family: var(--font-figtree), sans-serif;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav a:hover {
  color: #fbc758;
  transform: translateX(5px);
}

.download-btn-mobile {
  background: var(--accent-gradient);
  color: var(--typography-900);
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 12px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn-mobile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 150, 0, 0.3);
}

/* Hero Section Styles */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 0 120px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 64px 0;
  width: 100%;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  color: white;
  font-size: 32px;
  line-height: 52px;
  text-align: center;
}

.hero-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-title {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  animation: pulse 3s infinite ease-in-out;
}

.hero-description {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-200);
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-description {
    max-width: 787px;
  }
}

.app-download-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideInUp 1.2s ease-out;
}

.download-button {
  transition: transform 0.3s ease;
}

.download-button:hover {
  transform: translateY(-5px);
}

.hero-showcase {
  position: relative;
  width: 100%;
  height: 567px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), var(--blue-gradient);
  animation: fadeIn 1.5s ease-out;
}

.app-screenshots {
  position: absolute;
  width: 100%;
  height: 391px;
  top: 176px;
  display: flex;
  justify-content: center;
}

.screenshots-container {
  height: 639px;
}

.screenshots-group {
  position: relative;
  width: 905px;
  height: 398px;
  top: -7px;
}

.screenshot {
  position: absolute;
  transition: transform 0.5s ease;
}

.screenshot:hover {
  transform: translateY(-10px);
}

.scroll-wager {
  top: 90px;
  left: 0;
  animation: slideInLeft 1s ease-out 0.5s both;
}

.lobby {
  top: 0;
  left: 292px;
  animation: slideInUp 1s ease-out 0.7s both;
}

.wager-detail {
  top: 90px;
  right: 0;
  animation: slideInRight 1s ease-out 0.5s both;
}

.app-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 40px;
  width: 100%;
  animation: fadeIn 1.5s ease-out;
}

.intro-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 24px;
  text-align: center;
  line-height: 32px;
}

.app-name {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  color: var(--typography-100);
  font-size: 56px;
  text-align: center;
  line-height: 64px;
  animation: pulse 3s infinite ease-in-out;
}

.football-image {
  position: absolute;
  top: 59px;
  left: 0;
  animation: float 6s infinite ease-in-out;
}

/* How It Works Styles */
.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  padding: 60px 20px;
  width: 100%;
  position: relative;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 120px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex: 1;
  flex-grow: 1;
  animation: slideInLeft 1s ease-out;
}

.section-title {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  width: 100%;
}

.section-description {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 24px;
  line-height: 32px;
  /* width: 100%; */
}

/* body {
  background: #06141e;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
} */

.timeline-container {
  display: flex;
  justify-content: center;
  padding: 0px 16px 40px 0px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #fbc758, #fbc758);
  z-index: 0;
}


.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  z-index: 1;
}

.circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #000;
  font-size: 16px;
  /* box-shadow: 0 0 10px rgba(251, 199, 88, 0.6); */
  z-index: 2;
}

.content {
  max-width: 500px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.6;
}


/* .steps-container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  overflow-x: auto;
  animation: slideInRight 1s ease-out;
}

@media (min-width: 768px) {
  .steps-container {
    overflow-x: visible;
  }
}

.steps-numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 8px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--accent-gradient);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(251, 199, 88, 0.7);
}

.step-number span {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 600;
  color: var(--typography-900);
  font-size: 18px;
  line-height: 24px;
}

.step-line {
  width: 2px;
  flex-grow: 1;
  background: var(--accent-gradient);
  height: 70px;
}

.steps-descriptions {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 100%;
} */

.vertical-timeline-element {
  padding: 0px;
}

.vertical-timeline-element {
  margin: 0px;
}

@media (min-width: 768px) {
  .steps-descriptions {
    width: 576px;
  }

}

.step-description {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-300);
  font-size: 24px;
  line-height: 32px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.step-description:hover {
  transform: translateX(10px);
  color: var(--typography-100);
}

.baseball-image {
  position: absolute;
  bottom: 120px;
  left: 0;
  display: none;
  animation: float 8s infinite ease-in-out;
}

@media (min-width: 768px) {
  .baseball-image {
    display: block;
  }


}

/* CTA Section Styles */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 60px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .cta-wrapper {
    padding: 0 0 120px;
  }
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-container {
    padding: 0 120px;
  }
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 40px 20px;
  width: 100%;
  border-radius: 32px;
  background: var(--gold-gradient);
  position: relative;
  animation: slideInUp 1s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(107, 76, 7, 0.4);
}

@media (min-width: 768px) {
  .cta-content {
    padding: 40px 102px;
    flex-direction: row;
  }
}

.cta-pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-pricing {
    flex-direction: row;
  }
}


.price-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  color: var(--typography-100);
  font-size: 72px;
  line-height: 72px;
  animation: pulse 3s infinite ease-in-out;
}

.price-amount {
  line-height: 64px;
}

.price-period {
  font-size: 24px;
  line-height: 32px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-left: 15px;
}

@media (min-width: 768px) {
  .cta-features {
    width: 439px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 16px;
  width: 100%;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-dot {
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
  border-radius: 5px;
}

.feature-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 24px;
  line-height: 40px;
}

.cta-ball-image {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  animation: float 6s infinite ease-in-out ease-out;
}

@media (min-width: 768px) {
  .cta-ball-image {
    display: block;
  }
}

/* Features Section Styles */
.features-section {
  /* margin-top: 80px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 0 20px 60px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .features-section {
    padding: 0 0 120px;
  }
}

.features-container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  animation: slideInUp 1s ease-out;
}

.features-title {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  text-align: center;
}

.features-description {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-200);
  font-size: 24px;
  text-align: center;
  line-height: 40px;
  max-width: 100%;
}

.swiper-slide {
  width: 30% !important;
  height: 550px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (min-width: 768px) {
  .features-description {
    max-width: 690px;
  }
}


@media (max-width: 1024px) {
  .swiper-slide {
    width: 35% !important;
    height: 450px !important;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 40% !important;
    height: 300px !important;
  }
}


@media (max-width: 428px) {
  .swiper-slide {
    width: 45% !important;
    height: 200px !important;
  }
}

.features-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}


.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.control-button:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Subscribe Section Styles */
.subscribe-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px 60px;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .subscribe-section {
    padding: 0 120px 120px;
  }
}

.subscribe-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), var(--blue-gradient);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16, 89, 128, 0.4);
}

.subscribe-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
  animation: slideInUp 1s ease-out;
}

@media (min-width: 768px) {
  .subscribe-content {
    width: 954px;
  }
}

.subscribe-title {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  color: var(--typography-100);
  font-size: 40px;
  text-align: center;
  line-height: 64px;
}

.subscribe-description {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 24px;
  text-align: center;
  line-height: 32px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

input::placeholder {
  color: white;
}

@media (min-width: 768px) {
  .subscribe-form {
    flex-direction: row;
    width: 554px;
    gap: 24px;
  }
}

.input-field {
  width: 100%;
}

@media (min-width: 768px) {
  .input-field {
    width: 345px;
  }
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-wrapper:focus-within {
  border-color: rgba(251, 199, 88, 0.8);
  box-shadow: 0 0 10px rgba(251, 199, 88, 0.3);
}

.email-input {
  width: 100%;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 14px;
  line-height: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.email-input:focus {
  outline: none;
}

.subscribe-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 48px;
  width: 100%;
  border-radius: 8px;
  background: var(--accent-gradient);
  font-family: var(--font-figtree), sans-serif;
  font-weight: 600;
  color: var(--typography-900);
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 150, 0, 0.3);
}

.subscribe-button.submitting {
  position: relative;
  background: linear-gradient(286deg, rgba(180, 120, 0, 1) 5%, rgba(211, 159, 48, 1) 88%);
}

/* .subscribe-button.submitting::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-top-color: var(--typography-900);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  right: 15px;
} */

.subscribe-button.submitted {
  background: linear-gradient(286deg, rgba(0, 150, 50, 1) 5%, rgba(0, 200, 80, 1) 88%);
  animation: pulse 1s;
}

@media (min-width: 768px) {
  .subscribe-button {
    flex: 1;
  }
}

/* Contact Section Styles */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 1024px) {
  .contact-section {
    flex-direction: row;
    gap: 80px;
    padding: 80px 120px;
  }
}

.contact-form-container {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0px 20px 80px rgba(17, 17, 17, 0.15);
  animation: slideInLeft 1s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0px 25px 100px rgba(17, 17, 17, 0.25);
}

@media (min-width: 1024px) {
  .contact-form-container {
    width: 572px;
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 1024px) {
  .form-row {
    flex-direction: row;
    gap: 24px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-group.full-width {
  width: 100%;
}

label {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 14px;
  line-height: 20px;
}

.required {
  color: var(--error-100);
}

.input-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-container:focus-within {
  border-color: rgba(251, 199, 88, 0.8);
  box-shadow: 0 0 10px rgba(251, 199, 88, 0.3);
}

.input-container.message-input {
  height: 100px;
  align-items: flex-start;
}

.input-content {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.country-code {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 14px;
  line-height: 20px;
}

.separator {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 14px;
  line-height: 20px;
}

.input-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 14px;
  line-height: 20px;
}

.form-input {
  width: 100%;
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 14px;
  line-height: 20px;
  background: transparent;
  border: none;
  padding: 0;
}

.form-input:focus {
  outline: none;
}

.privacy-policy {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.privacy-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-policy p,
.privacy-policy label {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 20px;
}

.policy-link {
  color: white;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.policy-link:hover {
  color: #fbc758;
}

.send-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 48px;
  width: 100%;
  border-radius: 8px;
  background: var(--accent-gradient);
  font-family: var(--font-figtree), sans-serif;
  font-weight: 600;
  color: var(--typography-900);
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.send-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 150, 0, 0.3);
}

.send-button.submitting {
  position: relative;
  background: linear-gradient(286deg, rgba(180, 120, 0, 1) 5%, rgba(211, 159, 48, 1) 88%);
}

/* .send-button.submitting::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-top-color: var(--typography-900);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  right: 15px;
} */

.send-button.submitted {
  background: linear-gradient(286deg, rgba(0, 150, 50, 1) 5%, rgba(0, 200, 80, 1) 88%);
  animation: pulse 1s;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  animation: slideInRight 1s ease-out;
  order: 1;
}

@media (min-width: 1024px) {
  .contact-form-container {
    order: 1;
    flex: 2;
  }

  .contact-info {
    order: 2;
    flex: 1;
  }
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-title {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 700;
  color: var(--typography-100);
  font-size: 40px;
  line-height: 64px;
}

.contact-description {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-300);
  font-size: 24px;
  line-height: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 24px;
  line-height: 32px;
}

.contact-baseball {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  /* animation: float 8s infinite ease-in-out; */
}

@media (min-width: 1200px) {
  .contact-baseball {
    display: block;
  }
}

/* Footer Styles */
.footer {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
  padding: 20px;
  width: 100%;
  background-color: #060709;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .footer {
    padding: 80px;
  }
}

.footer-content {
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 50px;
}

.footer-links-container {
  display: flex;
  flex-wrap: nowrap;
}


@media (min-width: 520px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
  }
}

.footer-logo {
  width: 120px;
  height: 120px;
  animation: pulse 5s infinite ease-in-out;
}

/* .early-access {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .early-access {
    width: 345px;
  }
}

.early-access-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 48px;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  background: var(--accent-gradient);
  font-family: var(--font-figtree), sans-serif;
  font-weight: 600;
  color: var(--typography-900);
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.early-access-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 150, 0, 0.3);
} */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}


@media (min-width: 520px) {
  /* .footer-links {
    width: 264px;
  } */
}

.footer-link-active {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link-active:hover {
  color: #fbc758;
  transform: translateX(5px);
}

.footer-link {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: #fbc758;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-bottom {
    width: 264px;
  }
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-link-active {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.legal-link-active:hover {
  color: #fbc758;
}

.legal-link {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 500;
  color: var(--typography-100);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #fbc758;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-icon {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

.copyright-text {
  font-family: var(--font-figtree), sans-serif;
  font-weight: 400;
  color: var(--typography-100);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .section-title,
  .features-title,
  .subscribe-title,
  .contact-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-description,
  .features-description,
  .subscribe-description,
  .contact-description {
    font-size: 18px;
    line-height: 28px;
  }

  .step-description,
  .feature-text {
    font-size: 20px;
    line-height: 28px;
  }

  .price-text {
    font-size: 48px;
    line-height: 56px;
  }
}



.phone-input-container {
  width: 100%;
  margin: 0 auto;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 5px;
  color: white;
  font-size: 16px;
  position: relative;
  transition: border-color 0.2s ease;
}

.phone-input-wrapper:focus-within {
  border-color: rgba(251, 199, 88, 0.8);
  box-shadow: 0 0 10px rgba(251, 199, 88, 0.3);
}

.country-code-dropdown {
  position: relative;
}

.selected-country {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 0;
}

.dropdown-menus {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  width: 100px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #1f2937;
}

.country-name {
  color: #8b949e;
  font-size: 14px;
}

.separator {
  margin: 0 12px;
  color: #8b949e;
}

.phone-number-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  outline: none;
  padding: 4px 0;
  width: 100%;
}

.phone-number-input::placeholder {
  color: white;
}

.country-select__menu-list::-webkit-scrollbar {
  display: none;
}

.country-select__menu-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade.active {
  opacity: 1;
  transform: translateY(0);
}


.privacy-policy-container {
  /* color: white; */
  padding: 60px 20px;
  min-height: calc(100vh - 200px);
  /* Adjust based on header/footer height */
  color: var(--typography-100);
  animation: fadeIn 1s ease-out;
}

.privacy-policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-date {
  color: var(--typography-400);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--typography-100);
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--typography-300);
}

.privacy-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  color: var(--typography-300);
}

.contact-address {
  margin-top: 1rem;
  font-style: normal;
  line-height: 1.6;
  color: var(--typography-300);
}

.info-category {
  margin-bottom: 2rem;
}

.info-category h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--typography-100);
  margin: 1rem 0;
}

/* Add if not already present */
.privacy-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--typography-300);
}

/* Responsive styles */
@media (max-width: 768px) {
  .privacy-policy-container {
    padding: 40px 16px;
  }

  .privacy-policy-content {
    padding: 24px;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy-container {
    padding: 20px 12px;
  }

  .privacy-policy-content {
    padding: 16px;
  }

  .privacy-title {
    font-size: 1.75rem;
  }

  .privacy-section h2 {
    font-size: 1.1rem;
  }
}