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

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: #FFFFFF;
  overflow-x: hidden;
}

.floating-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 191, 22, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 80%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.logo {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(45deg, #35BF16, #FFFFFF, #35BF16);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(53, 191, 22, 0.5);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #35BF16, #45d526);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(53, 191, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(53, 191, 22, 0.5);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.features {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #35BF16;
  text-shadow: 0 0 20px rgba(53, 191, 22, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(53, 191, 22, 0.1), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(53, 191, 22, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(53, 191, 22, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(53, 191, 22, 0.2);
  border-color: #35BF16;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  color: #35BF16;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.platforms {
  padding: 100px 0;
  text-align: center;
}

.platforms-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.platform {
  padding: 2rem;
  background: rgba(53, 191, 22, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(53, 191, 22, 0.3);
  transition: all 0.3s ease;
  min-width: 200px;
}

.platform:hover {
  background: rgba(53, 191, 22, 0.2);
  border-color: #35BF16;
  transform: scale(1.05);
}

.platform-icon {
  font-size: 4rem;
  color: #35BF16;
  margin-bottom: 1rem;
}

.demo {
  padding: 100px 0;
  text-align: center;
}

.demo-container {
  background: linear-gradient(145deg, rgba(53, 191, 22, 0.05), rgba(0, 0, 0, 0.2));
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(53, 191, 22, 0.2);
  margin-top: 3rem;
}

.currency-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.currency-item {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #35BF16;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.currency-name {
  font-weight: bold;
  color: #35BF16;
}

.currency-rate {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.footer {
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(53, 191, 22, 0.2);
  margin-top: 100px;
}

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

.animate {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
  .logo {
      font-size: 2.5rem;
  }

  .tagline {
      font-size: 1.2rem;
  }

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

  .platforms-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
  }

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