/* ========================================
   NEENYO LINK IN BIO — Styles
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #09090b;
  color: #fafafa;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* --- Site Wrapper --- */
.site-wrapper {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

/* --- Appear Animation --- */
.appear {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.appear.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.appear:nth-child(2) { transition-delay: 0.08s; }
.appear:nth-child(3) { transition-delay: 0.16s; }
.appear:nth-child(4) { transition-delay: 0.24s; }

/* --- Header --- */
.header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
}

.header-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: linear-gradient(to top, #09090b 0%, transparent 100%);
  pointer-events: none;
}

.header-content {
  text-align: center;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

.header-name {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.header-subtitle {
  font-size: 0.95rem;
  color: #a1a1aa;
  margin-top: 8px;
  font-weight: 500;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #a1a1aa;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
  color: #fafafa;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* --- Navigation Bar --- */
.nav-bar {
  position: relative;
  width: 100%;
  margin-top: 24px;
}

.nav-gradient-left,
.nav-gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.nav-gradient-left {
  left: 0;
  background: linear-gradient(to right, #09090b 0%, transparent 100%);
}

.nav-gradient-right {
  right: 0;
  background: linear-gradient(to left, #09090b 0%, transparent 100%);
}

.nav-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1aa;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link:hover {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #fafafa;
}

/* --- Main Content --- */
.main-content {
  padding: 0 16px;
}

/* --- Sections --- */
.section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.view-all:hover {
  color: #fafafa;
}

/* --- Latest Release --- */
.latest-release-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.latest-release-card:hover {
  filter: brightness(1.08);
}

.latest-release-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* --- Spotify Embed --- */
.spotify-embed-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.spotify-embed-wrapper iframe {
  border-radius: 12px;
}

/* --- Carousel --- */
.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: transparent;
  color: #a1a1aa;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  color: #fafafa;
  border-color: rgba(255, 255, 255, 0.3);
}

/* --- YouTube Card --- */
.youtube-card {
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.youtube-card:hover {
}

.youtube-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.youtube-card:hover .youtube-play-btn {
  background: rgba(255, 0, 0, 0.85);
  transform: translate(-50%, -50%) scale(1.1);
}

/* --- Store Card --- */
.store-card {
  flex-shrink: 0;
  width: 75%;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
  display: block;
}

.store-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.store-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.store-card-info {
  padding: 14px 16px;
}

.store-card-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.store-card-subtitle {
  font-size: 0.8rem;
  color: #a1a1aa;
  margin-top: 2px;
}

.store-card-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.store-card-original-price {
  font-size: 0.8rem;
  color: #71717a;
  text-decoration: line-through;
}

.store-card-price {
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Store Dots --- */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.carousel-dot.active {
  background: #fafafa;
  border-color: #fafafa;
}

/* --- About --- */
.about-content {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 20px;
}

.about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d4d4d8;
}

.about-text p {
  margin-bottom: 12px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-more-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a1a1aa;
  transition: color 0.25s ease;
}

.about-more-link:hover {
  color: #fafafa;
}

/* --- Mailing List --- */
.mailing-list-text {
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mailing-list-form {
  display: flex;
  gap: 8px;
}

.mailing-list-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.mailing-list-input::placeholder {
  color: #71717a;
}

.mailing-list-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.mailing-list-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  background: #fafafa;
  color: #09090b;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.mailing-list-btn:hover {
  opacity: 0.9;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 48px 16px 32px;
}

.footer-text {
  font-size: 0.8rem;
  color: #71717a;
  transition: color 0.25s ease;
}

.footer-text:hover {
  color: #a1a1aa;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .header-name {
    font-size: 2rem;
  }

  .youtube-card {
    width: 90%;
  }

  .store-card {
    width: 80%;
  }
}

@media (min-width: 541px) {
  .site-wrapper {
    padding: 0 16px;
  }
}
