/* -----------------------------
   RESET / BASE
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 70px;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* -----------------------------
   NAVBAR
----------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 42px;
}

.navbar-logo {
  height: 42px;
  width: auto;
}

/* Hide text when image loads successfully */
.navbar-logo:not([src=""]) + .navbar-text {
  display: none;
}

/* Fallback text styling (shown when image fails to load) */
.navbar-text {
  font-weight: 700;
  font-size: 1.75rem;
  color: #0099ff;
  background: linear-gradient(135deg, #0099ff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 5rem;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.navbar-links a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
  white-space: nowrap;
}

.navbar-links a:hover {
  color: #0099ff;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
}

/* -----------------------------
   HERO SECTION
----------------------------- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: #000;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  playsinline: true;
  -webkit-playsinline: true;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.hero-content {
  max-width: 90%;
  padding: 70px 2rem;
  z-index: 1;
  position: relative;
}

.hero-content h1 {
  display: none;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  width: 100%;
}

/* -----------------------------
   BUTTONS
----------------------------- */
.btn {
  padding: 0.9rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.primary-btn {
  background: linear-gradient(135deg, #0066ff, #00b2ff);
  padding: 1.25rem 2rem;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 8px;
  position: relative;
  color: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

/* Replace the continuous animation with a simpler hover effect */
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 153, 255, 0.4);
  background: linear-gradient(135deg, #0052cc, #0099ff);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  display: inline-flex;
  color: #fff;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Larger download button with more noticeable pulsing */
.primary-btn.download-btn {
  background: linear-gradient(135deg, #0066ff, #00b2ff);
  padding: 1.6rem 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 14px;
  position: relative;
  color: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
  letter-spacing: 0.02em;
  min-width: 320px;
  animation: pulseButton 2.5s infinite; /* Faster animation (from 3s to 2.5s) */
}

/* More noticeable pulse animation (60% between subtle and original) */
@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
  }
  50% {
    transform: scale(1.035); /* Increased from 1.02 to 1.035 (60% toward 1.05) */
    box-shadow: 0 11px 30px rgba(0, 153, 255, 0.48); /* Increased shadow intensity */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
  }
}

/* Enhanced hover effect */
.primary-btn.download-btn:hover {
  transform: translateY(-3px) scale(1.04); /* Slightly increased scale */
  box-shadow: 0 15px 38px rgba(0, 153, 255, 0.55); /* Increased shadow intensity */
  background: linear-gradient(135deg, #0052cc, #0099ff);
}

/* Subtle glow effect */
.primary-btn.download-btn::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.4), rgba(0, 178, 255, 0.4));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.primary-btn.download-btn:hover::after {
  opacity: 0.35; /* Increased from 0.3 to 0.35 */
}

/* Larger download icon */
.download-btn::before {
  content: "";
  width: 32px; /* Larger icon */
  height: 32px;
  margin-right: 0.75rem;
  background: url("./assets/icons/download.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.play-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  background: url("./assets/icons/play.svg") no-repeat center;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

/* -----------------------------
   HIGHLIGHTS SECTION
----------------------------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 2rem 3rem;
  max-width: 90vw;
  margin: -80px auto 0;
  position: relative;
  z-index: 2;
}

.highlight-item {
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6);

  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: #0099ff;
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-item h3 {
  color: #0099ff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* For even smaller heights, add more space */
@media (max-height: 1024px) {
  .highlights {
    margin-top: 0px; /* More space for very small heights */
  }
}

/* -----------------------------
   PODCAST SECTION
----------------------------- */
.podcast-section {
  background-color: #000;
  color: #fff;
  padding: 8rem 2rem;
  overflow: hidden;
}

.podcast-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.podcast-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.overline {
  color: #0099ff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.podcast-text h2 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #86868b;
}

.podcast-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, #0099ff, #00e5ff);
  padding: 1rem 2rem;
  border-radius: 8px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.podcast-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
  background: linear-gradient(135deg, #0085dd, #00ccff);
}

.podcast-image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .podcast-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .podcast-text h2 {
    font-size: 2.5rem;
  }

  .app-preview {
    padding: 2rem 1rem !important;
  }

  .app-preview .podcast-text h2 {
    margin-bottom: 1rem;
  }

  .carousel-content {
    padding: 2rem 0;
  }

  .podcast-section {
    padding: 4rem 1.5rem;
  }
}

/* -----------------------------
   APP PREVIEW
----------------------------- */
.app-preview {
  padding: 8rem 1rem;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.app-preview h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 4rem 0;
}

.carousel-content {
  position: relative;
  height: 70vh;
  margin: 0 auto;
  max-width: 1200px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  will-change: transform, opacity;
  padding: 0 4rem;
}

.carousel-slide img {
  max-height: 65vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 153, 255, 0.3));
  transition: all 0.4s ease;
  border-radius: 24px;
  justify-self: start;
  box-shadow:
    0 0 40px rgba(0, 153, 255, 0.2),
    0 0 80px rgba(0, 153, 255, 0.1);
  will-change: transform, filter, box-shadow;
}

.carousel-slide.active img {
  filter: drop-shadow(0 30px 60px rgba(0, 153, 255, 0.4));
  box-shadow:
    0 0 50px rgba(0, 153, 255, 0.25),
    0 0 100px rgba(0, 153, 255, 0.15);
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-description {
  margin-top: 0;
  text-align: left;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slide-description h3 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-description p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #86868b;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 2rem;
}
.next {
  right: 2rem;
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.dot {
  width: 2rem;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
    gap: 0.5rem;
  }

  .carousel-slide img {
    max-height: 35vh;
    justify-self: center;
    margin-bottom: 0;
  }

  .slide-description {
    text-align: center;
    padding: 0;
    gap: 0.5rem;
  }

  .slide-description h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .slide-description p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
  }

  .podcast-features {
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .podcast-text {
    gap: 0.4rem;
  }

  .feature {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .overline {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .carousel-content {
    height: 80vh;
    padding: 0.5rem 0;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .prev {
    left: 0.25rem;
  }
  .next {
    right: 0.25rem;
  }

  .subtitle {
    font-size: 0.85rem;
    margin: 0;
  }

  h2 {
    margin: 0;
    line-height: 1.2;
  }
}

/* -----------------------------
   FINAL CTA
----------------------------- */
.final-cta {
  padding: 8rem 1rem;
  background: linear-gradient(135deg, #0099ff, #00e5ff);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.final-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* -----------------------------
   FOOTER
----------------------------- */
.footer {
  background-color: #333;
  color: #ccc;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}

.social-icons a:hover img {
  opacity: 0.8;
}

.sitemap ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sitemap a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap a:hover {
  color: #0099ff;
}

/* -----------------------------
   MEDIA QUERIES
----------------------------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    opacity: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 70px;
    right: 0;
    height: calc(100vh - 70px);
    width: 280px;
    padding: 2rem;
    gap: 2rem;
  }

  .navbar-links.show {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar-links a {
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hamburger span {
    transition: all 0.3s ease;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .highlights {
    max-width: 100%;
  }

  .app-preview-grid {
    gap: 0.5rem;
  }

  .app-preview-grid img {
    max-width: 45%;
    height: auto;
  }

  .carousel-dots {
    bottom: 0;
  }

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

  .sitemap ul {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (min-width: 769px) {
  .hero-btns {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 60vh;
    padding: 2rem 1rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 50px 1rem 30px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .podcast-content blockquote {
    font-size: 1.25rem;
  }

  .final-cta h2 {
    font-size: 1.5rem;
  }
}

.nav-cta {
  background: linear-gradient(135deg, #0099ff, #00e5ff);
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.2);
}

/* Replace continuous animation with simpler hover effect */
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
  background: linear-gradient(135deg, #0085dd, #00ccff);
}

/* Value points container with improved responsive behavior */
.value-points {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap; /* Allow wrapping */
}

/* Value point item */
.value-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px; /* Minimum width before wrapping */
  flex: 1; /* Allow items to grow */
}

.value-point .emoji {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

/* Media query for medium screens */
@media (max-width: 992px) {
  .value-points {
    gap: 2rem;
  }

  .value-point {
    min-width: 180px;
  }
}

/* Media query for small screens - switch to vertical layout */
@media (max-width: 768px) {
  .value-points {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 0 2rem;
    width: 100%;
  }

  .value-point {
    width: 100%;
    justify-content: flex-start;
    min-width: 0;
  }

  .value-section span {
    text-align: left;
  }

  .value-section .emoji {
    margin-top: -12px;
  }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
  .value-points {
    padding: 0 1rem;
    gap: 1.2rem;
  }
}

/* Keep original value section styling */
.value-section {
  padding: 2rem 2rem 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Trust indicators with improved responsive behavior */
.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin: 1.5rem 0;
  font-size: 1.3rem;
  color: #4a4a4a;
  flex-wrap: wrap; /* Allow wrapping */
}

/* Individual trust indicator items */
.rating,
.users,
.award {
  display: flex;
  align-items: center;
  min-width: 150px; /* Minimum width before wrapping */
  margin: 0.5rem; /* Add some margin for wrapped items */
}

/* Award specific styling */
.award {
  gap: 10px;
}

.award-image {
  height: 60px;
  width: auto;
}

/* Media query for medium screens */
@media (max-width: 992px) {
  .trust-indicators {
    gap: 3rem;
  }
}

/* Media query for small screens - switch to vertical layout */
@media (max-width: 768px) {
  .trust-indicators {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .rating,
  .users,
  .award {
    min-width: 0;
    margin: 0;
  }

  .award-image {
    height: 50px;
  }

  /* Ensure text alignment is consistent */
  .ystack {
    align-items: flex-start;
  }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
  .trust-indicators {
    gap: 1.5rem;
  }

  .rating,
  .users,
  .award {
    width: 100%;
    justify-content: flex-start;
  }
}

body {
  background: black;
}

.bg-white {
  background: white;
  padding-top: 0;
}

/* Add spacing for tablets to prevent bunching with hero awards */
@media (min-width: 769px) and (max-width: 1024px) {
  .bg-white {
    padding-top: 3rem;
  }

  .highlights {
    margin-top: 0;
    padding-top: 1rem;
  }
}

/* Mobile Awards Section - Hidden on desktop, shown on mobile */
.awards-mobile-section {
  display: none;
  padding: 2rem 1rem 1rem;
  max-width: 100%;
}

.awards-mobile-section .award-spotlight {
  margin-bottom: 16px;
}

/* Awards container for grouping cards */
.awards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Desktop: awards container remains column layout */
@media (min-width: 769px) {
  .awards-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Approach 1: Hide hero awards on mobile, show mobile section */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    height: auto;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  /* Hide hero cards on mobile */
  .hero-branding .award-spotlight {
    display: none;
  }

  /* Show awards in white section on mobile */
  .awards-mobile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 2.5rem 1rem 1rem;
  }

  .awards-mobile-section .award-spotlight {
    width: 92%;
    max-width: 600px;
    margin-bottom: 16px;
  }

  .awards-mobile-section .award-spotlight:last-child {
    margin-bottom: 0;
  }
}

/* Desktop: Hide mobile awards, show hero awards */
@media (min-width: 769px) {
  .awards-mobile-section {
    display: none;
  }

  .hero-branding .award-spotlight {
    display: flex;
  }
}

.hero-content .everything-app {
  font-size: 5rem;
}

@media (max-width: 768px) {
  .hero-content .everything-app {
    font-size: 3rem;
  }
}

.award-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 10px 20px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.award-banner-image {
  height: 70px;
  margin-right: 15px;
}

.award-banner span {
  font-weight: bold;
  color: #003366;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .award-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .award-banner-image {
    height: 60px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .award-banner span {
    font-size: 1rem;
  }
}

/* Apple-inspired Award Ribbon in Navbar */
.award-ribbon {
  display: none; /* Hide completely */
}

/* Apple-inspired Award Spotlight in Hero */
.award-spotlight {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 0 0 0.5px rgba(0, 0, 0, 0.04);
  border: none;
  position: relative;
  max-width: 650px;
  width: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.spotlight-image {
  height: 85px;
  margin-right: 0;
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.spotlight-text h2 {
  color: #1d1d1f;
  margin: 0 0 8px 0;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.spotlight-text p {
  color: #434347;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Apple-inspired Award in trust indicators */
.award {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background-color: rgba(245, 245, 247, 0.7);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.award:hover {
  background-color: rgba(245, 245, 247, 0.9);
}

.award-image {
  height: 44px;
  filter: saturate(0.95);
}

.award .ystack .bold {
  color: #1d1d1f;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.award .ystack span:not(.bold) {
  color: #86868b;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

/* Remove glow and animations for Apple-like minimalism */
.award-glow {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .spotlight-image {
    height: 95px;
    margin-right: 20px;
  }

  .spotlight-text h2 {
    font-size: 1.5rem;
  }

  .spotlight-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .award-spotlight {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .spotlight-image {
    height: 85px;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .spotlight-image {
    height: 75px;
  }

  .spotlight-text h2 {
    font-size: 1.2rem;
  }

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

/* Hero branding container with improved layout */
.hero-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero banner (Funjumpr logo) with enhanced styling */
.hero-banner {
  max-width: 85%;
  height: auto;
  margin-bottom: 70px; /* Generous spacing */
  margin-top: -50px; /* Position it higher */
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center;
  animation: fadeInDown 1s ease-out forwards;
}

/* Subtle hover effect on logo */
.hero-banner:hover {
  transform: scale(1.02);
}

/* Award Spotlight with refined Apple-inspired design */
.award-spotlight {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 30px 35px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 0.5px rgba(0, 0, 0, 0.04);
  border: none;
  position: relative;
  max-width: 700px;
  width: 92%;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: fadeInUp 1s ease-out forwards;
  overflow: hidden;
}

/* Subtle hover effect on award */
.award-spotlight:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 0 0 0.5px rgba(0, 0, 0, 0.05);
}

/* Add subtle gradient border to award */
.award-spotlight:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 204, 0, 0.7),
    rgba(255, 215, 0, 0.9),
    rgba(255, 204, 0, 0.7)
  );
}

/* Improved award image styling */
.spotlight-image {
  height: 120px;
  margin-right: 30px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
  animation: pulse 6s infinite ease-in-out;
}

/* Refined typography for award text */
.spotlight-text h2 {
  color: #1d1d1f;
  margin: 0 0 12px 0;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.spotlight-text p {
  color: #424245;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 95%;
}

/* Rising Stars award styling */
.award-spotlight.rising-stars {
  margin-top: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.award-spotlight.rising-stars:after {
  background: linear-gradient(
    90deg,
    rgba(0, 153, 255, 0.7),
    rgba(0, 229, 255, 0.9),
    rgba(0, 153, 255, 0.7)
  );
}

.award-spotlight.rising-stars .spotlight-image {
  height: 120px;
  margin-right: 30px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  object-fit: contain;
}

.award-spotlight.rising-stars .spotlight-text {
  text-align: left;
  width: 100%;
}

.award-spotlight.rising-stars:hover {
  text-decoration: none;
  color: inherit;
}

/* Enhanced hero content container */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  width: 100%;
}

/* Improved download button styling */
.hero-btns {
  margin-top: 10px;
  animation: fadeIn 1.5s ease-out forwards;
}

.primary-btn.download-btn {
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.primary-btn.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Responsive adjustments with improved design */
@media (max-width: 992px) {
  .hero-banner {
    max-width: 90%;
    margin-top: -40px;
    margin-bottom: 60px;
  }

  .award-spotlight {
    padding: 25px 30px;
    width: 90%;
  }

  .spotlight-image {
    height: 110px;
    margin-right: 25px;
  }

  .spotlight-text h2 {
    font-size: 1.7rem;
  }

  .spotlight-text p {
    font-size: 1.05rem;
  }

  /* Add spacing for tablets to prevent highlights from bunching */
  .bg-white {
    padding-top: 3rem;
  }

  .highlights {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    max-width: 92%;
    margin-top: -30px;
    margin-bottom: 24px;
  }

  .hero-branding {
    margin-bottom: 20px;
  }

  .hero-btns {
    margin-top: 1.5rem;
  }

  .award-spotlight {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    width: 88%;
    margin-bottom: 18px;
  }

  .award-spotlight.rising-stars {
    padding: 20px;
    width: 92%;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .spotlight-image {
    height: 100px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .award-spotlight.rising-stars .spotlight-image {
    height: 80px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 18px;
  }

  .spotlight-text h2 {
    font-size: 1.5rem;
  }

  .award-spotlight.rising-stars .spotlight-text {
    text-align: center;
  }

  .award-spotlight.rising-stars .spotlight-text h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .spotlight-text p {
    font-size: 1rem;
    max-width: 100%;
  }

  .award-spotlight.rising-stars .spotlight-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .primary-btn.download-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    max-width: 95%;
    margin-top: -20px;
    margin-bottom: 20px;
  }

  .hero-branding {
    margin-bottom: 16px;
  }

  .hero-btns {
    margin-top: 1.25rem;
  }

  .award-spotlight {
    padding: 20px;
    width: 92%;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .award-spotlight.rising-stars {
    padding: 18px 16px;
    width: 94%;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .spotlight-image {
    height: 85px;
    margin-bottom: 15px;
  }

  .award-spotlight.rising-stars .spotlight-image {
    height: 70px;
    max-width: 240px;
    margin-bottom: 14px;
  }

  .spotlight-text h2 {
    font-size: 1.3rem;
  }

  .award-spotlight.rising-stars .spotlight-text h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

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

  .award-spotlight.rising-stars .spotlight-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 4px;
  }

  .primary-btn.download-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* -----------------------------
   TWEET GRID
----------------------------- */
.tweet-grid {
  padding: 6rem 2rem;
  background: #000;
  color: #fff;
}

.tweet-grid-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tweet-grid-header h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.tweet-grid-header p {
  color: #86868b;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.tweets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tweet {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.tweet:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tweet-author {
  flex: 1;
}

.tweet-name {
  font-weight: 600;
  color: #fff;
}

.tweet-handle {
  color: #86868b;
  font-size: 0.9rem;
}

.tweet-content {
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tweet-grid {
    padding: 4rem 1rem;
  }

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

  .tweets-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tweet-content {
    font-size: 1rem;
  }

  .tweet {
    padding: 1.1rem;
  }
}

/* Add new styles for navigation */
.tweets-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.load-more-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  min-width: 200px;
}

.load-more-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tweets-pagination {
  color: #86868b;
  font-size: 0.9rem;
}

/* Add fade-in animation for new tweets */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tweet {
  animation: fadeIn 0.5s ease forwards;
}

/* Fix for black bar on small width screens */
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}
/* Add spacing between stars and rating text */
.rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px; /* Add space between stars and text */
}

.stars {
  font-size: 1.4rem; /* Slightly larger stars */
  color: #ffd700; /* Gold color for stars */
  letter-spacing: 2px; /* Add spacing between individual stars */
  margin-bottom: 3px; /* Additional bottom margin */
}

/* Media query for small screens */
@media (max-width: 768px) {
  .rating {
    align-items: flex-start;
  }

  .stars {
    font-size: 1.3rem;
  }
}
