
body {
  margin: 0;
  background-color: #0c0c0c;
  font-family: 'Arial', sans-serif;
  color: #f2f2f2;
}
.header {
  background-image: url('cover_elliza.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
  mask-image: linear-gradient(to bottom, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent);
}
.section {
  padding: 40px 20px;
  text-align: center;
}
.section h2 {
  font-size: 2em;
  color: #f06595;
  margin-bottom: 20px;
}
.card-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
}
.card h3 {
  color: #e6778d;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
}
.socials a img {
  height: 40px;
  width: 40px;
}
footer {
  text-align: center;
  font-size: 0.9em;
  padding: 30px 10px;
  background: #111;
  color: #aaa;
}
.gallery {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: auto;
}
.slide {
  display: none;
  flex-direction: column;
  align-items: center;
}
.slide img {
  max-width: 100%;
  border-radius: 12px;
}
.slide.active {
  display: flex;
}

.ca-box {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  width: 90%;
  max-width: 400px;
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ccc;
  font-size: 0.95em;
}
.ca-copy {
  background: #333;
  border: none;
  color: #f2f2f2;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.nft-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nft-gallery img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}


.infinite-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: #000;
  padding: 10px 0;
}
.infinite-scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.infinite-scroll-track img {
  height: 120px;
  margin: 0 10px;
  border-radius: 10px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .infinite-scroll-track img {
    height: 90px;
    margin: 0 6px;
  }
}
