/* Global Styles */
:root {
  --primary-color: #7C5DFA;
  --primary-light: #9277FF;
  --secondary-color: #25C099;
  --text-color: #252945;
  --text-light: #888EB0;
  --background: #F8F8FB;
  --white: #ffffff;
  --dark: #1E2139;
  --danger: #FF5678;
  --accent: #FF9F43;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --card-shadow: 0 10px 30px rgba(124, 93, 250, 0.1);
  --glow: 0 0 15px rgba(124, 93, 250, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
  overflow-x: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(124, 93, 250, 0.03) 0%, rgba(37, 192, 153, 0.03) 90%);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}

.highlight {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(124, 93, 250, 0.25);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(124, 93, 250, 0.3), var(--glow);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(124, 93, 250, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(124, 93, 250, 0.15);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(124, 93, 250, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(124, 93, 250, 0.4), var(--glow);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(124, 93, 250, 0.25);
  }
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.7rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo h1 .highlight {
  position: relative;
}

.logo h1 .highlight::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  top: 5px;
  right: -8px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  position: relative;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  bottom: -8px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 93, 250, 0.1) 0%, rgba(124, 93, 250, 0) 70%);
  top: -150px;
  left: -150px;
  border-radius: 50%;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 192, 153, 0.1) 0%, rgba(37, 192, 153, 0) 70%);
  bottom: -200px;
  right: -200px;
  border-radius: 50%;
  z-index: -1;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  width: 50%;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-content h1 .gradient-text {
  display: inline-block;
  position: relative;
}

.hero-content h1 .gradient-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(124, 93, 250, 0.2), rgba(37, 192, 153, 0.2));
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.stats {
  display: flex;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  top: 0;
  left: 0;
}

.stat-item {
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 70%;
  background: rgba(136, 142, 176, 0.2);
  top: 15%;
  right: -1rem;
}

.stat-item:last-child::after {
  display: none;
}

.counter {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  width: 45%;
  position: relative;
}

.image-container {
  z-index: 1;
  position: relative;
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.floating-element {
  position: absolute;
  padding: 0.8rem 1.2rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-element:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(124, 93, 250, 0.2);
  cursor: pointer;
}

.floating-element i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.earnings {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.device {
  bottom: 30%;
  right: -5%;
  animation-delay: 1s;
}

.time {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

.money-particle {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('../images/coin.svg') no-repeat center center/contain;
  animation: fall 5s linear forwards;
  opacity: 0;
  z-index: 1;
}

@keyframes fall {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(500px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Notification popup */
.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 999;
  max-width: 300px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: bold;
}

.notification-content {
  flex: 1;
}

.notification-content h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.notification-content p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.notification-amount {
  font-weight: bold;
  color: var(--secondary-color);
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/dots-pattern.svg') repeat;
  opacity: 0.03;
  z-index: 0;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.steps::after {
  content: '';
  position: absolute;
  top: 110px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  z-index: 0;
}

.step {
  width: 23%;
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(124, 93, 250, 0.2);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(124, 93, 250, 0.1), rgba(37, 192, 153, 0.1));
  position: relative;
  z-index: 2;
}

.step-icon::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 93, 250, 0.2), rgba(37, 192, 153, 0.2));
  z-index: -1;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.step-icon i {
  font-size: 2rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(to right, rgba(124, 93, 250, 0.05), rgba(37, 192, 153, 0.05));
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  width: calc(33.33% - 1.5rem);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 120px;
  color: rgba(124, 93, 250, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 93, 250, 0.15);
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  box-shadow: 0 5px 15px rgba(124, 93, 250, 0.2);
  border: 3px solid white;
}

.user-details h4 {
  font-weight: 600;
}

.stars {
  color: #FFD700;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Featured Brands */
.featured-brands {
  padding: 100px 0;
  background-color: var(--white);
}

.brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  width: 18%;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.brand:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/dollar-pattern.svg') repeat;
  opacity: 0.05;
  z-index: 0;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.cta-particle {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: none;
}

.cta-content .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta-amount {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-amount span {
  font-size: 2rem;
  vertical-align: middle;
}

.cta-content .small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 25%;
}

.footer-logo h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-logo h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  bottom: -8px;
  left: 0;
}

.footer-logo p {
  opacity: 0.7;
}

.footer-links {
  width: 45%;
  display: flex;
  justify-content: space-between;
}

.link-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.link-column h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  bottom: -8px;
  left: 0;
}

.link-column ul li {
  margin-bottom: 0.8rem;
}

.link-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.link-column ul li a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.link-column ul li a:hover {
  color: var(--white);
  padding-left: 20px;
}

.link-column ul li a:hover::before {
  opacity: 1;
}

.footer-newsletter {
  width: 25%;
}

.footer-newsletter h3 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-newsletter h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  bottom: -8px;
  left: 0;
}

.footer-newsletter p {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter input {
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 192, 153, 0.2);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .btn-primary {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-3px) rotate(10deg);
  box-shadow: 0 5px 15px rgba(124, 93, 250, 0.3);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .step {
    width: 48%;
    margin-bottom: 2rem;
  }
  
  .steps::after {
    display: none;
  }
  
  .testimonial-card {
    width: calc(50% - 1rem);
  }
  
  .footer-logo,
  .footer-newsletter {
    width: 30%;
  }
  
  .footer-links {
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  nav ul, 
  .cta-button {
    display: none;
  }
  
  .mobile-menu-icon {
    display: block;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content,
  .hero-image {
    width: 100%;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .stats {
    justify-content: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .step {
    width: 100%;
  }
  
  .testimonial-card {
    width: 100%;
  }
  
  .brand {
    width: 30%;
    margin-bottom: 2rem;
  }
  
  .footer-logo,
  .footer-links,
  .footer-newsletter {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .social-icons {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .section-title,
  .hero-content h1,
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .stat-item {
    margin-right: 1rem;
  }
  
  .counter {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .brand {
    width: 45%;
  }
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(124, 93, 250, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  margin: 0;
} 