:root {
  --bg-color: #0b0c0b;
  --text-primary: #ededed;
  --text-muted: #bababa;
  --gold: #b39758;
  --gold-dark: #81724f;
  --gold-bright: #d4b568;
  --divider: rgba(179, 151, 88, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: 'EB Garamond', serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* TOP NAVIGATION BAR */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: rgba(11, 12, 11, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.05em;
  margin-right: 3rem;
}

.nav-cd-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #222 0%, #111 40%, #000 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinLogo 5s linear infinite;
}

.nav-cd-center {
  width: 4px;
  height: 4px;
  background: #f0f2eb;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.nav-cd-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.5rem;
  color: #fff;
  z-index: 3;
  transform: rotate(-10deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--gold);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 900px;
  width: 100%;
  padding: 8rem 1.5rem 3rem 1.5rem;
  /* Increased top padding for fixed nav */
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-logo-wrapper {
  margin-bottom: 2.5rem;
  perspective: 1000px;
}

.cd-vinyl {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #222 0%, #111 40%, #050505 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinLogo 5s linear infinite;
  /* Increased spin speed */
  cursor: pointer;
}

.cd-vinyl:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.cd-groove {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cd-groove-1 {
  width: 80px;
  height: 80px;
}

.cd-groove-2 {
  width: 60px;
  height: 60px;
}

.cd-groove-3 {
  width: 40px;
  height: 40px;
}

.cd-center {
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8), 0 0 0 2px #111;
  position: absolute;
  z-index: 2;
}

.cd-text-wrapper {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  pointer-events: none;
}

.wn-w {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.2rem;
  color: #fff;
  text-shadow: -1px -1px 0 #b39758, 1px -1px 0 #b39758, -1px 1px 0 #b39758, 1px 1px 0 #b39758, 0 4px 6px rgba(0, 0, 0, 0.8);
  margin-right: -8px;
}

.wn-n {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.95rem;
  color: #fff;
  text-shadow: -1px -1px 0 #b39758, 1px -1px 0 #b39758, -1px 1px 0 #b39758, 1px 1px 0 #b39758, 0 4px 6px rgba(0, 0, 0, 0.8);
}

@keyframes spinLogo {
  100% {
    transform: rotate(360deg);
  }
}

.subtitle-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.sub-title,
.sub-subtitle {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.sub-subtitle {
  color: rgba(129, 114, 79, 0.7);
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: var(--text-primary);
}

.main-title i {
  color: var(--gold-bright);
  font-style: italic;
}

.profiles-section {
  display: flex;
  justify-content: center;
  gap: 4rem;
  /* Increased spacing between profiles */
  margin: 3.5rem 0 2rem 0;
  flex-wrap: wrap;
}

.profile {
  position: relative;
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.profile:hover {
  transform: translateY(-8px) scale(1.05);
}

.profile:hover .avatar {
  box-shadow: 0 0 15px rgba(212, 181, 104, 0.4);
}

.profile-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.profile:hover .profile-info {
  opacity: 1;
}

.profile-handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

.profile-followers {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.avatar {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-primary);
  margin: 0 auto;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  border-radius: 50%;
  display: block;
}

.profile:hover .avatar img {
  opacity: 0.8;
}

/* Custom Avatar Styles have been overridden by inline background-image URLs */

.stats-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin: 1rem 0 2rem 0;
  text-transform: uppercase;
}

/* TESTIMONIAL SECTION */
.trust-section {
  width: 100vw;
  max-width: 1200px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-sizing: border-box;
}

.trust-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.trust-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  max-width: 400px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  flex: 1.5;
  opacity: 0.6;
}

.artist-btn {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.artist-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--gold-bright);
}

.stats-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(179, 151, 88, 0.5);
  /* gold */
}

.stat-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.stat-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

.section-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--divider);
  margin: 0 0 2rem 0;
}

/* FOUNDERS SECTION */
.founders-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin: 2rem 0;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.founder-image-slot {
  width: 140px;
  height: 180px;
  border-radius: 8px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card:hover .founder-image-slot {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(179, 151, 88, 0.2);
}

.founder-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  /* Explicit fixed size */
  line-height: 1.2;
  /* Tighter line height to prevent optical illusion */
  color: var(--text-primary);
  margin-top: -0.5rem;
  text-align: center;
  /* Explicitly center both */
  white-space: nowrap;
  /* Prevent wrapping which changes perceived size */
}

.info-list {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.info-item:hover {
  transform: translateX(10px);
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom-color: transparent;
}

.info-item:not(.no-border) {
  border-bottom: 1px solid var(--divider);
}

.info-item.no-border {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.info-item .bullet {
  color: var(--gold-dark);
  font-size: 0.7rem;
  line-height: 1.5;
  padding-top: 0.1rem;
}

.info-item .content {
  flex: 1;
}

.info-item h4 {
  margin: 0 0 0.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 500;
}

.info-item p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.info-item p a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.info-item p a:hover {
  opacity: 0.8;
}

footer {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.contact-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--gold-bright);
}

@media (max-width: 500px) {
  .top-nav {
    padding: 0 1rem;
    height: 60px;
  }

  .nav-logo {
    margin-right: auto;
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
  }

  .main-title {
    font-size: 2.4rem;
  }

  .profiles-section {
    gap: 2rem;
  }

  .avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    flex-shrink: 0;
  }

  .profile-handle {
    font-size: 0.5rem;
  }

  .profile-followers {
    font-size: 0.45rem;
  }
}