/* ============================================================
   CYCLICAL TRACKS — nft.css
   ============================================================ */

.nft-section {
  margin-top: var(--header-h);
  background: #0d0d0d;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Collection container ── */
.nft-collection {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.nft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #1e1e1e;
  padding: 3.5rem 3rem;
}

/* ── Text column ── */
.nft-text {
  display: flex;
  flex-direction: column;
}

.nft-artist {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 0.5rem;
}

.nft-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #f2f0ec;
  line-height: 1.1;
  margin-bottom: 0;
}

.nft-redline {
  width: 50px;
  height: 2px;
  background: #c0203a;
  margin: 0.9rem 0 1.2rem;
}

.nft-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(242,240,236,0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nft-opensea-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #c0203a;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.nft-opensea-link:hover { color: #f2f0ec; }

/* ── Carousel ── */
.nft-carousel-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nft-carousel {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 0.5rem;
  background: #2a2a2a;
  padding: 1.5rem 0.8rem;
}

.nft-track-wrap {
  overflow: hidden;
}

.nft-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nft-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 0 0.3rem;
}

.nft-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: #111;
}

.nft-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #888;
  text-align: center;
  text-transform: uppercase;
}

/* Arrows */
.nft-arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nft-arrow:hover {
  border-color: #c0203a;
  color: #c0203a;
  background: rgba(192,32,58,0.08);
}

/* Dots */
.nft-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.nft-dot {
  width: 16px; height: 2px;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.nft-dot.active {
  background: #c0203a;
  width: 28px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nft-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  .nft-section { padding: 2rem 1rem; gap: 1.5rem; }
}
