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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #1a1d2e;
  color: white;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 29, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-icon {
  background: #00ff88;
  color: #1a1d2e;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.logo-text {
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: white;
}

.signup-btn {
  background: #00ff88;
  color: #1a1d2e;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.signup-btn:hover {
  background: #00e67a;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 29, 46, 0.8);
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #00ff88;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-bottom: 3rem;
}

.offers-count {
  color: #00ff88;
}

/* App Cards */
.app-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.app-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  width: 200px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.app-card.featured {
  border: 2px solid #00ff88;
  transform: scale(1.05);
}

.app-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.app-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.app-info p {
  font-size: 0.875rem;
  color: #a0a0a0;
  margin-bottom: 0.5rem;
}

.app-reward {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00ff88;
}

.app-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.stars {
  color: #ffd700;
  font-size: 0.875rem;
}

.rating-number {
  font-size: 0.875rem;
  color: #a0a0a0;
}

/* Trustpilot Section */
.trustpilot-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trustpilot-section p {
  color: #a0a0a0;
  font-size: 0.875rem;
}

.trustpilot-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars-image,
.trustpilot-logo {
  height: 20px;
}

/* Sign Up Form */
.signup-form-container {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.signup-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.input-group {
  margin-bottom: 1rem;
}

.input-group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.input-group input::placeholder {
  color: #a0a0a0;
}

.cta-btn {
  width: 100%;
  background: #00ff88;
  color: #1a1d2e;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.cta-btn:hover {
  background: #00e67a;
  transform: translateY(-2px);
}

.signup-stats {
  text-align: center;
  font-size: 0.875rem;
  color: #a0a0a0;
}

/* Statistics Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.875rem;
  color: #a0a0a0;
  line-height: 1.4;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #2a2d3e;
  margin: 15% auto;
  padding: 0;
  border-radius: 16px;
  width: 400px;
  max-width: 90%;
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

.close:hover {
  color: white;
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.modal-body h2 {
  color: #00ff88;
  margin-bottom: 1rem;
}

.modal-body p {
  color: #a0a0a0;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.modal-btn {
  background: #00ff88;
  color: #1a1d2e;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-btn:hover {
  background: #00e67a;
}

/* How It Works Section */
.how-it-works {
  background: #1a1d2e;
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side */
.how-it-works-left {
  padding-right: 2rem;
}

.how-it-works-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: white;
}

.cta-btn-secondary {
  background: #00ff88;
  color: #1a1d2e;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 300px;
}

.cta-btn-secondary:hover {
  background: #00e67a;
  transform: translateY(-2px);
}

.trustpilot-section-secondary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trustpilot-section-secondary p {
  color: #a0a0a0;
  font-size: 0.875rem;
}

/* Right Side - Steps */
.how-it-works-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}

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

.step-icon {
  font-size: 1.5rem;
}

.step-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.step-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Step Visuals */
.step-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  position: relative;
}

/* Choose Offer Visual */
.choose-offer-visual {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1),
    rgba(0, 150, 100, 0.1)
  );
  border-radius: 12px;
  padding: 2rem;
  min-height: 300px;
}

.offer-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.offer-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-image:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

/* Complete Offer Visual */
.complete-offer-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.complete-bg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.complete-figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60%;
  height: auto;
  z-index: 2;
}

/* Get Paid Visual */
.get-paid-visual {
  background: linear-gradient(
    135deg,
    rgba(0, 100, 255, 0.1),
    rgba(100, 0, 255, 0.1)
  );
  border-radius: 12px;
  padding: 1rem;
}

.get-paid-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

/* Best Ways to Earn Section */
.best-ways-section {
  background: #1a1d2e;
  padding: 5rem 0;
}

.best-ways-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.best-ways-content {
  margin-bottom: 5rem;
}

.best-ways-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

/* Earning Methods */
.earning-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.earning-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.earning-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
}

.earning-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.earning-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.earning-rate {
  margin-bottom: 2rem;
}

.rate-label {
  display: block;
  color: #a0a0a0;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.rate-amount {
  display: block;
  color: #00ff88;
  font-size: 1.5rem;
  font-weight: 700;
}

.earning-visual {
  margin-top: auto;
}

.earning-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Why Section */
.why-section {
  text-align: center;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-svg {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(84%) sepia(99%) saturate(1837%)
    hue-rotate(79deg) brightness(107%) contrast(101%);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.feature-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.feature-emoji {
  font-size: 2.5rem;
  filter: sepia(1) hue-rotate(90deg) saturate(2) brightness(1.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-emoji {
  transform: scale(1.1);
  filter: sepia(1) hue-rotate(90deg) saturate(3) brightness(1.4);
}

/* Cashout Via Section */
.cashout-section {
  background: #1a1d2e;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cashout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cashout-title {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3rem;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 8px;
}

.payment-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.payment-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* Testimonials Section */
.testimonials-section {
  background: #1a1d2e;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-container {
  max-width: 1000px; /* Reduced from 1200px */
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

/* Carousel */
.testimonials-carousel {
  margin-bottom: 3rem;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 400%; /* Reduced from 500% */
}

.testimonial-card {
  width: 22%; /* Reduced from 20% */
  max-width: 280px; /* Added max-width constraint */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem; /* Reduced padding */
  text-align: left;
  flex-shrink: 0;
  margin-right: 1.5rem; /* Reduced margin */
  box-sizing: border-box;
}

.testimonial-card:last-child {
  margin-right: 0;
}

.stars-rating {
  margin-bottom: 1rem;
}

.star {
  color: #00ff88;
  font-size: 1rem; /* Slightly smaller */
  margin-right: 0.1rem;
}

.testimonial-title {
  font-size: 1rem; /* Reduced size */
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.testimonial-text {
  color: #a0a0a0;
  font-size: 0.85rem; /* Reduced size */
  line-height: 1.4;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name {
  font-weight: 600;
  color: white;
  font-size: 0.85rem;
}

.author-time {
  color: #a0a0a0;
  font-size: 0.75rem;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: rgba(0, 255, 136, 0.2);
  border-color: #00ff88;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #00ff88;
}

/* Trustpilot Section */
.testimonials-trustpilot {
  margin-bottom: 2rem;
}

.testimonials-trustpilot p {
  color: #a0a0a0;
  font-size: 1rem;
}

/* CTA Button */
.cta-btn-testimonials {
  background: #00ff88;
  color: #1a1d2e;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn-testimonials:hover {
  background: #00e67a;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%; /* 5 cards total */
  }

  .testimonial-card {
    width: 20%; /* Each card takes 20% of the track */
    max-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-sizing: border-box;
  }

  .carousel-nav {
    gap: 1rem;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  background: #1a1d2e;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

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

.faq-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle:hover {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #00ff88;
}

/* Live Cashouts Section */
.live-cashouts-section {
  background: #1a1d2e;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.live-cashouts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cashouts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Stats Card */
.stats-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.stats-background {
  width: 100%;
  height: 100%;
  position: relative;
}

.stats-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  border-radius: 20px;
}

.stats-overlay h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.amount-display {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

/* Live Feed */
.live-feed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.feed-header {
  margin-bottom: 1.5rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Footer Section */
.footer {
  background: #1a1d2e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

/* Brand Section */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  background: #00ff88;
  color: #1a1d2e;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.footer-logo .logo-text {
  color: white;
}

.footer-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.app-download {
  margin-bottom: 2rem;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-badge:hover {
  background: #333;
  transform: translateY(-2px);
}

.play-icon {
  font-size: 1.5rem;
  color: #00ff88;
}

.download-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.get-it {
  font-size: 0.75rem;
  color: #a0a0a0;
}

.store-name {
  font-size: 1rem;
  font-weight: 600;
}

.footer-trustpilot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.trustpilot-text {
  color: white;
  font-weight: 500;
}

.trustpilot-stars {
  display: flex;
  gap: 0.1rem;
}

.trustpilot-stars .star {
  color: #00ff88;
  font-size: 1rem;
}

.trustpilot-logo {
  color: #00ff88;
  font-weight: 600;
}

/* Footer Links */
.footer-links {
  padding-left: 2rem;
}

.footer-title {
  color: #00ff88;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.copyright {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.footer-language {
  display: flex;
  align-items: center;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  font-size: 0.9rem;
}

.flag {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-brand {
    max-width: none;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

.live-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.cashouts-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cashout-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: slideInUp 0.5s ease;
}

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

.cashout-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.user-avatar {
  flex-shrink: 0;
}

.avatar-letter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.cashout-info {
  flex: 1;
}

.username {
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.timestamp {
  font-size: 0.8rem;
  color: #a0a0a0;
}

.cashout-amount {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cashouts-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-card {
    height: 250px;
  }

  .amount {
    font-size: 2.5rem;
  }

  .currency {
    font-size: 1.75rem;
  }

  .live-feed {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .live-cashouts-section {
    padding: 3rem 0;
  }

  .stats-card {
    height: 200px;
  }

  .amount {
    font-size: 2rem;
  }

  .currency {
    font-size: 1.5rem;
  }

  .stats-overlay h3 {
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

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

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer.active {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer.active {
    padding: 1rem;
  }

  .faq-toggle {
    font-size: 1.25rem;
    width: 25px;
    height: 25px;
  }
}

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

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

  .testimonial-card {
    padding: 1.25rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cashout-section {
    padding: 3rem 0;
  }

  .cashout-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .payment-methods {
    gap: 1.5rem;
  }

  .payment-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .payment-methods {
    gap: 1rem;
    justify-content: center;
  }

  .payment-icon {
    width: 45px;
    height: 45px;
  }

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

/* Responsive Design */
@media (max-width: 768px) {
  .earning-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .best-ways-title,
  .why-title {
    font-size: 2rem;
  }

  .earning-card,
  .feature-card {
    min-height: auto;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .best-ways-section {
    padding: 3rem 0;
  }

  .best-ways-title,
  .why-title {
    font-size: 1.75rem;
  }

  .earning-card,
  .feature-card {
    padding: 1rem;
  }

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

  .feature-svg {
    width: 30px;
    height: 30px;
  }
}

/* If your images are meant to be stacked vertically */
@media (min-width: 769px) {
  .offer-grid {
    gap: 1.5rem;
  }

  .offer-image {
    max-height: 80px;
    object-fit: contain;
  }
}

/* Responsive Design for Choose Offer */
@media (max-width: 768px) {
  .choose-offer-visual {
    padding: 1.5rem;
    min-height: 250px;
  }

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

/* Responsive Design */
@media (max-width: 768px) {
  .how-it-works-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .how-it-works-left {
    padding-right: 0;
    order: 2;
  }

  .how-it-works-right {
    order: 1;
  }

  .how-it-works-title {
    font-size: 2.5rem;
  }

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

  .trustpilot-section-secondary {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 3rem 0;
  }

  .how-it-works-title {
    font-size: 2rem;
  }

  .step-card {
    padding: 1rem;
  }

  .step-visual {
    min-height: 150px;
  }

  .complete-figure {
    max-width: 70%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .app-cards {
    justify-content: center;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trustpilot-section {
    flex-direction: column;
    text-align: center;
  }
}

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

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

  .app-card {
    width: 100%;
    max-width: 280px;
  }
}
