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

body {
  font-family: 'Comic Sans MS', sans-serif;
  background-color: #1a1e2e;
  color: #fff;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffff;
}

.buy-btn {
  background-color: #ff00c8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 0 #00000080;
}

/* Tagline */
.tagline {
  text-align: center;
  margin: 40px 0;
}

.tagline h1 {
  font-size: 2.2rem;
  color: #00ffff;
  text-shadow: 2px 2px #000;
}

/* Card Section */
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.card {
  background: #2b2e44;
  border-radius: 30px;
  padding: 40px;
  width: 500px;
  text-align: center;
  box-shadow: 8px 8px 0 #000000cc, 0 0 15px #00000088;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  color: #c8c8c8;
  margin-bottom: 20px;
}

.card-btn {
  background: #ff00c8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 0 #00000080;
}

/* NFT Gallery */
.nft-gallery {
  text-align: center;
  margin-bottom: 60px;
}

.nft-gallery h2 {
  margin-bottom: 20px;
  color: #ff00c8;
}

.nft-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nft-row img {
  width: 180px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 6px 20px #000;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #333;
  margin-top: 40px;
  font-size: 0.9rem;
}

.social-media {
  margin-bottom: 10px;
}

.social-media a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 10px;
}
