* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fff9f5;
  color: #421d06;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
section {
  margin-bottom: 5rem;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 144, 33, 0.2);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff9021, #421d06);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #421d06;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff9021;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(145deg, #fff0e4 0%, #fde8d9 100%);
  padding: 70px 0 100px;
  overflow: hidden;
}

.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-glow-1 {
  background: #ff9021;
  top: -100px;
  left: -100px;
}

.hero-glow-2 {
  background: #421d06;
  bottom: -100px;
  right: -100px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  color: #ff9021;
  background: linear-gradient(120deg, #ff9021 0%, #ff9021 40%, #421d06 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #5a3a28;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: #ff9021;
  border: none;
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 10px 20px -5px rgba(255, 144, 33, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -10px rgba(255, 144, 33, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #421d06;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  color: #421d06;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #421d06;
  color: white;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badges span {
  background: rgba(255, 144, 33, 0.1);
  padding: 6px 14px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  position: relative;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: #421d06;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-mockup {
  width: 340px;
}

.mockup-screen {
  /* background: #fff; */
  border-radius: 32px;
  height: auto;
  width: 100%;
  /* padding: 20px; */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 20px; */
}

.mockup-header {
  font-weight: bold;
  color: #ff9021;
}

.mockup-prize {
  background: #ff9021;
  padding: 12px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
}

.mockup-button {
  background: #421d06;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 40px;
  margin-top: auto;
}

.floating-ticket {
  position: absolute;
  font-size: 2.8rem;
  animation: float 5s infinite ease-in-out;
}

.ticket-1 {
  top: 0;
  left: -20px;
  animation-delay: 0s;
}
.ticket-2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 1s;
}
.ticket-3 {
  top: 40%;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 70px;
  padding: 30px 40px;
  border: 1px solid rgba(255, 144, 33, 0.3);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff9021;
}

/* Prizes Section */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(135deg, #421d06, #ff9021);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.prizes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.prize-card {
  background: white;
  width: 18%;
  height: 250px;
  display: flex;
  border-radius: 32px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 144, 33, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
/* .prize-card {
  background: white;
  border-radius: 32px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,144,33,0.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
} */

.prize-card:hover {
  transform: translateY(-10px);
  border-color: #ff9021;
  box-shadow: 0 25px 35px -12px rgba(66, 29, 6, 0.15);
}

.prize-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.prize-icon img {
  width: 100%;
  height: auto;
}

/* About / Highlights */
.about {
  background: #421d06;
  color: white;
  padding: 80px 0;
  margin-top: 60px;
}

.about .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(100deg, #ff9021, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.highlights-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.highlight-card {
  display: flex;
  width: 30%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-content: center;
  justify-content: center;
}

/* Steps */
.steps {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  gap: 20px;
}

.step {
  /* flex: 1; */
  width: 20%;
  text-align: center;
  background: white;
  border-radius: 40px;
  padding: 30px 20px;
  border: 1px solid #ff9021;
  position: relative;
}

.step-number {
  background: #ff9021;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.step-icon {
  margin-bottom: 5px;
}
.step h3 {
  margin-bottom: 5px;
}

/* Features, winners, etc */
.features-grid {
  display: flex;
  gap: 20px;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feature {
  background: rgba(255, 144, 33, 0.05);
  border-radius: 60px;
  padding: 14px;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255, 144, 33, 0.3);
  transition: all 0.2s;
}

/* Winner Slider */
.winners {
  padding: 80px 0;
}

.winner-card {
  background: white;
  border-radius: 36px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.05);
}

.winner-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #ff9021;
}

.winner-prize {
  background: #ff9021;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  margin: 12px 0;
}

/* App Showcase */
.app-showcase {
  background: linear-gradient(120deg, #fff0e4, #ffe6d5);
  padding: 70px 0;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.screenshot {
  background: #421d06;
  border-radius: 38px;
  padding: 12px;
  width: 180px;
  height: 350px;
}

.phone-inner {
  background: white;
  border-radius: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #421d06;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2cfbf;
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #421d06;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0 0 0;
  color: #5a3a28;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #ff9021, #421d06);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.final-cta p {
  margin-bottom: 30px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary-outline {
  background: transparent;
  border: 2px solid white;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}
.btn-secondary-outline:hover {
  background: #421d06;
  color: white;
  border: 2px solid #421d06;
}

/* Footer */
/* .footer {
  background: #421D06;
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #ffd6b5;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
} */
.footer {
  background: #421d06;
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* FIXED */
.footer-col {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.footer-col p {
  color: #ffd6b5;
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #ffd6b5;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .stats-row {
    flex-direction: column;
    text-align: center;
    border-radius: 32px;
  }
  .steps {
    flex-direction: column;
  }
}
