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

body.landing {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #f1f1f1;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Crypto Ticker */
.crypto-ticker {
  background: rgba(0, 0, 0, 0.7);
  color: #00ffcc;
  padding: 0.7rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.6);
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
}
.crypto-ticker-content {
  animation: ticker 15s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 2rem;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.3);
}
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}
.hero-section p {
  font-size: 1.2rem;
  color: #c9d1d9;
  max-width: 700px;
  margin: auto;
  margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(90deg, #00ffcc, #0077ff);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
  transition: all 0.3s ease;
}
.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.8);
}
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

/* Sections */
.info-section, .how-it-works {
  padding: 3rem 2rem;
  margin: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}
.info-section h2, .how-it-works h2 {
  color: #00ffcc;
  text-align: center;
  margin-bottom: 1.5rem;
}
.info-section p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #b3c0c8;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.card {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.15);
}
.card h3 {
  color: #00e0ff;
  margin-bottom: 0.8rem;
}
.card p {
  color: #cfd9df;
}
.card.hover-glow:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.5);
}

/* Lists */
.how-it-works ul, .how-it-works ol {
  max-width: 600px;
  margin: 1rem auto;
  color: #c9d1d9;
  line-height: 1.8;
}
.how-it-works li {
  margin-bottom: 0.5rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  color: #7d8590;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
