/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

header {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo {
  color: #ff00ff;
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;
}

.wallet-btn {
  background-color: #ff00ff;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-image img {
  width: 400px;
  border-radius: 10px;
  border: 3px solid #ff00ff;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 span {
  color: #ff00ff;
}

.hero-content p {
  font-size: 1em;
  margin-bottom: 30px;
  color: #ccc;
}

.btn {
  background-color: #ff00ff;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* About Section Styling */
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  text-align: center;
}

.about-left,
.about-right {
  flex: 1 1 300px;
  max-width: 350px;
}

.about-left img,
.about-right img {
  width: 100%;
  border-radius: 10px;
}

.about-center {
  flex: 1 1 300px;
  max-width: 400px;
  color: #fff;
}

.about-center h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-center p {
  color: #ccc;
  font-size: 1em;
  line-height: 1.5;
}

/* Features Section Styling */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
  background-color: #0a0a0a;
}

.feature-card {
  background-color: #111;
  border: 2px solid #ff00ff;
  border-radius: 12px;
  width: 250px;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.feature-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ff00ff;
}

.feature-card p {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 15px;
}

.feature-btn {
  display: inline-block;
  background-color: #ff00ff;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #ff00ff88;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
footer{
    text-align: center;
    font-weight: bold;
    color: white;
    font-style: italic;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

