/* ==========================================================================
   Tarun Bisht - Coming Soon Page Stylesheet
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
  --color-bg-pure: #000000;
  --color-bg-dark: #070707;
  --color-bg-card: rgba(15, 15, 15, 0.7);
  --color-bg-input: rgba(25, 25, 25, 0.5);
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #8a8a8a;
  --color-text-muted: #4e4e4e;
  
  /* Electric Lime - cyber street hip-hop vibe */
  --color-accent: #d4ff00; 
  --color-accent-rgb: 212, 255, 0;
  --color-accent-glow: rgba(212, 255, 0, 0.15);
  --color-accent-dim: #9cb800;
  
  --font-family-display: 'Syne', sans-serif;
  --font-family-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  --container-padding: 4vw;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg-pure);
  scrollbar-width: thin;
  scrollbar-color: var(--color-text-muted) var(--color-bg-pure);
}

body {
  font-family: var(--font-family-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-pure);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Webkit Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-pure);
}
::-webkit-scrollbar-thumb {
  background: var(--color-text-muted);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Ambient Backdrops */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.04;
  z-index: 100;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3 PreservingAspectRatio='none'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle 600px at 70% 30%, rgba(var(--color-accent-rgb), 0.06), transparent 80%),
              radial-gradient(circle 800px at 20% 80%, rgba(255, 255, 255, 0.02), transparent 100%);
  transition: background var(--transition-slow);
}

/* Layout Wrapper */
.page-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 2.5rem var(--container-padding);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeInDown var(--transition-normal) forwards;
}

.logo {
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: translateX(-101%);
  transition: transform var(--transition-normal);
}

.logo:hover::after {
  transform: translateX(0);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.status-badge:hover {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  box-shadow: 0 0 15px rgba(var(--color-accent-rgb), 0.08);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse 2s infinite;
}

/* Main Layout Grid */
.main-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  flex-grow: 1;
  margin-bottom: 3rem;
}

/* Content Side (Left Column) */
.content-side {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 620px;
  animation: fadeInLeft var(--transition-normal) 0.1s forwards;
}

.artist-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.main-title {
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
}

.main-title:hover {
  text-shadow: 
    0.05em 0 0 rgba(255, 0, 0, 0.75),
    -0.025em -0.05em 0 rgba(30, 215, 96, 0.75),
    0.025em 0.05em 0 rgba(0, 240, 255, 0.75);
  animation: glitchShadow 1s infinite;
}

@keyframes glitchShadow {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.05em 0 rgba(30, 215, 96, 0.75), 0.025em 0.05em 0 rgba(0, 240, 255, 0.75);
  }
  14% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.05em 0 rgba(30, 215, 96, 0.75), 0.025em 0.05em 0 rgba(0, 240, 255, 0.75);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(30, 215, 96, 0.75), -0.05em -0.05em 0 rgba(0, 240, 255, 0.75);
  }
  49% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(30, 215, 96, 0.75), -0.05em -0.05em 0 rgba(0, 240, 255, 0.75);
  }
  50% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), -0.025em 0.05em 0 rgba(30, 215, 96, 0.75), 0.025em -0.05em 0 rgba(0, 240, 255, 0.75);
  }
  99% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), -0.025em 0.05em 0 rgba(30, 215, 96, 0.75), 0.025em -0.05em 0 rgba(0, 240, 255, 0.75);
  }
  100% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.025em 0 rgba(30, 215, 96, 0.75), -0.025em -0.05em 0 rgba(0, 240, 255, 0.75);
  }
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
  transition: -webkit-text-stroke var(--transition-normal), color var(--transition-normal);
}

.main-title:hover .outline-text {
  color: var(--color-accent);
  -webkit-text-stroke: 1.5px var(--color-accent);
}

.description {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
}

/* Social Connections Section */
.social-connect-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  width: 100%;
}

.social-connect-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.social-connect-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.social-connect-item:hover::before {
  opacity: 1;
}

.social-connect-item:hover {
  transform: translateY(-2px);
}

/* Hover effects for each platform with dynamic brand glows */
.social-connect-item.spotify:hover {
  border-color: rgba(30, 215, 96, 0.4);
  box-shadow: 0 5px 25px rgba(30, 215, 96, 0.08);
}

.social-connect-item.youtube:hover {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 5px 25px rgba(255, 0, 0, 0.08);
}

.social-connect-item.instagram:hover {
  border-color: rgba(212, 255, 0, 0.4);
  box-shadow: 0 5px 25px rgba(212, 255, 0, 0.08);
}

.social-connect-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.social-connect-icon {
  width: 24px;
  height: 24px;
  color: var(--color-text-secondary);
  transition: color var(--transition-normal), transform var(--transition-normal);
}

/* Connect text styles */
.social-connect-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.social-connect-label {
  font-family: var(--font-family-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  transition: color var(--transition-normal);
}

.social-connect-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  transition: color var(--transition-normal);
}

/* Hover behaviors */
.social-connect-item.spotify:hover .social-connect-icon {
  color: #1ed760;
  transform: scale(1.08);
}

.social-connect-item.youtube:hover .social-connect-icon {
  color: #ff0000;
  transform: scale(1.08);
}

.social-connect-item.instagram:hover .social-connect-icon {
  color: var(--color-accent);
  transform: scale(1.08);
}

.social-connect-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-normal), transform var(--transition-normal);
  position: relative;
  z-index: 2;
}

.social-connect-arrow svg {
  width: 18px;
  height: 18px;
}

.social-connect-item:hover .social-connect-arrow {
  color: var(--color-text-primary);
  transform: translate(2px, -2px);
}

.social-connect-item.spotify:hover .social-connect-arrow { color: #1ed760; }
.social-connect-item.youtube:hover .social-connect-arrow { color: #ff0000; }
.social-connect-item.instagram:hover .social-connect-arrow { color: var(--color-accent); }

/* Subscription Form */
.form-container {
  max-width: 500px;
  position: relative;
}

.input-group {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-bg-input);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-sm);
  padding: 4px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-group:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.1);
}

#email-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text-primary);
  font-family: var(--font-family-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.2rem;
  width: 100%;
}

#email-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: opacity var(--transition-fast);
}

#email-input:focus::placeholder {
  opacity: 0.5;
}

.submit-btn {
  background-color: var(--color-text-primary);
  color: var(--color-bg-pure);
  border: none;
  outline: none;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0 1.5rem;
  border-radius: calc(var(--border-radius-sm) - 2px);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  transition: background-color var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.submit-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-pure);
}

.submit-btn:active {
  transform: scale(0.98);
}

.btn-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-normal);
}

.submit-btn:hover .btn-icon svg {
  transform: translateX(4px);
}

/* Form Validation Messages */
.form-message {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  min-height: 18px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.form-message.success {
  color: var(--color-accent);
  opacity: 1;
  transform: translateY(0);
}

.form-message.error {
  color: #ff3333;
  opacity: 1;
  transform: translateY(0);
}

/* Image Side (Right Column) */
.image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: fadeInRight var(--transition-normal) 0.1s forwards;
  padding-right: 180px; /* Space for the 50% peeking vinyl record */
}

.album-sleeve-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1; /* Perfect square container */
  z-index: 2;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%; /* Fill the square sleeve container */
  border-radius: var(--border-radius-sm); /* Sharper corners like actual sleeves */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background-color: var(--color-bg-dark);
  z-index: 2; /* Sits in front of the vinyl record */
}

.artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: transform var(--transition-slow), filter var(--transition-normal);
  transform: scale(1.02);
}

.image-wrapper:hover .artist-image {
  transform: scale(1.07);
  filter: grayscale(1) contrast(1.15) brightness(0.95);
}

/* Edge & gradient fading on image so it merges with the page */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, var(--color-bg-pure) 0%, transparent 15%, transparent 85%, var(--color-bg-pure) 100%),
              linear-gradient(to bottom, transparent 70%, var(--color-bg-pure) 100%);
  z-index: 2;
  transition: opacity var(--transition-normal);
}

/* Styled Tech brackets for industrial design look */
.corner-bracket {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
  z-index: 5;
  pointer-events: none;
  transition: border-color var(--transition-normal);
}

.image-wrapper:hover .corner-bracket {
  border-color: var(--color-accent);
}

.top-left {
  top: 15px;
  left: 15px;
  border-width: 2px 0 0 2px;
}

.top-right {
  top: 15px;
  right: 15px;
  border-width: 2px 2px 0 0;
}

.bottom-left {
  bottom: 15px;
  left: 15px;
  border-width: 0 0 2px 2px;
}

.bottom-right {
  bottom: 15px;
  right: 15px;
  border-width: 0 2px 2px 0;
}

.image-label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
  font-family: var(--font-family-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Section */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 2rem;
  animation: fadeInUp var(--transition-normal) forwards;
}

.copyright {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}



/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(var(--color-accent-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0);
  }
}

@keyframes bounceEQ {
  0% {
    transform: scaleY(0.1);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Scrolling Marquee Banner
   ========================================================================== */
.ticker-banner {
  overflow: hidden;
  background-color: var(--color-accent);
  color: var(--color-bg-pure);
  font-family: var(--font-family-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.5rem 0;
  width: 100%;
  position: relative;
  z-index: 100;
  text-transform: uppercase;
  user-select: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 25s linear infinite;
}

.ticker-track span {
  padding-right: 1.5rem;
  white-space: nowrap;
  display: inline-block;
}

@keyframes scrollTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   Corner Crosshairs
   ========================================================================== */
.corner-crosshair {
  position: fixed;
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 5;
  user-select: none;
}

.corner-crosshair.top-l { top: 20px; left: 20px; }
.corner-crosshair.top-r { top: 20px; right: 20px; }
.corner-crosshair.bottom-l { bottom: 20px; left: 20px; }
.corner-crosshair.bottom-r { bottom: 20px; right: 20px; }

/* Hide corner elements on small mobile viewports to prevent clutter */
@media (max-width: 768px) {
  .corner-crosshair {
    display: none;
  }
}

/* ==========================================================================
   Mini Equalizer inside Status Badge
   ========================================================================== */
.mini-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 8px;
  margin-left: 0.5rem;
}

.mini-eq .eq-bar {
  width: 1.5px;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 1px;
  animation: bounceMiniEQ 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
  animation-play-state: paused; /* Paused by default */
  transition: background-color var(--transition-fast);
}

body.music-playing .mini-eq .eq-bar {
  animation-play-state: running;
  background-color: #ffffff; /* Turns white when active */
}

.mini-eq .eq-bar:nth-child(1) { height: 30%; animation-delay: -0.2s; }
.mini-eq .eq-bar:nth-child(2) { height: 90%; animation-delay: -0.5s; animation-duration: 0.6s; }
.mini-eq .eq-bar:nth-child(3) { height: 60%; animation-delay: -0.1s; animation-duration: 0.7s; }

@keyframes bounceMiniEQ {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

/* ==========================================================================
   Technical Metadata Grid
   ========================================================================== */
.tech-metadata {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.75rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 500px;
}

.meta-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.meta-tag {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.meta-val {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .tech-metadata {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Concert Particles Animation
   ========================================================================== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0.18;
  animation: floatParticle 10s infinite linear;
  will-change: transform, opacity;
}

.particle:nth-child(1) { left: 15%; top: 85%; animation-duration: 14s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 35%; top: 92%; animation-duration: 18s; width: 5px; height: 5px; animation-delay: -2s; }
.particle:nth-child(3) { left: 65%; top: 88%; animation-duration: 12s; width: 4px; height: 4px; animation-delay: -4s; }
.particle:nth-child(4) { left: 80%; top: 78%; animation-duration: 16s; width: 3px; height: 3px; animation-delay: -6s; }
.particle:nth-child(5) { left: 22%; top: 96%; animation-duration: 20s; width: 5.5px; height: 5.5px; animation-delay: -1s; }
.particle:nth-child(6) { left: 52%; top: 74%; animation-duration: 13s; width: 4px; height: 4px; animation-delay: -3s; }

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 0.22;
  }
  85% {
    opacity: 0.22;
  }
  100% {
    transform: translateY(-25vh) translateX(30px);
    opacity: 0;
  }
}

/* ==========================================================================
   Sliding Vinyl Record Animation
   ========================================================================== */
.vinyl-record {
  position: absolute;
  top: 2%;
  left: 2%;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transform: translateX(50%); /* Always stays 50% out */
  transition: transform var(--transition-slow);
}

.vinyl-grooves {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    #181818 0%, #181818 9%, 
    #0a0a0a 9.5%, #0a0a0a 14%, 
    #181818 14.5%, #181818 19%, 
    #0a0a0a 19.5%, #0a0a0a 24%, 
    #181818 24.5%, #181818 29%, 
    #0a0a0a 29.5%, #0a0a0a 39%, 
    #181818 39.5%, #181818 44%, 
    #0a0a0a 44.5%, #0a0a0a 100%
  );
  border: 4px solid #1f1f1f;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), inset 0 0 25px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinVinyl 10s linear infinite; /* Constantly rotating */
}

.vinyl-label {
  position: absolute;
  width: 32%;
  height: 32%;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-pure);
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  border: 3px double rgba(0, 0, 0, 0.2);
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.vinyl-label .label-text {
  line-height: 1.1;
}

.vinyl-label .label-sub {
  font-size: 0.28rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}

body.music-playing .vinyl-grooves {
  animation-duration: 4s; /* Spin faster when active */
}

body.music-playing .vinyl-label {
  box-shadow: 0 0 15px var(--color-accent); /* Green glow */
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  /* On mobile and tablet, record sits centered directly behind the image with a subtle offset */
  .vinyl-record {
    transform: translateX(45%) scale(0.95);
    top: 2.5%;
    left: 2.5%;
  }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
  :root {
    --container-padding: 5vw;
  }
  
  .main-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
  }
  
  .content-side {
    display: contents; /* Unwraps elements to be direct children of the main grid */
  }

  .artist-intro {
    order: 1;
  }
  
  .image-side {
    order: 2; /* Place image on top of socials and form */
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .social-connect-list {
    order: 3; /* Social list below the image */
    max-width: 100%;
  }

  .image-side {
    order: 2; /* Place image on top of socials and form */
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    padding-right: 120px; /* Space for the 45% peeking vinyl record */
    width: 100%;
  }

  .album-sleeve-container {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
  }
  
  .image-overlay {
    background: linear-gradient(to top, var(--color-bg-pure) 0%, transparent 20%, transparent 80%, var(--color-bg-pure) 100%),
                linear-gradient(to right, var(--color-bg-pure) 0%, transparent 10%, transparent 90%, var(--color-bg-pure) 100%);
  }

  .form-container {
    order: 4; /* Form at the bottom */
    max-width: 100%;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .page-wrapper {
    padding: 1.5rem var(--container-padding);
  }
  
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .status-badge {
    padding: 0.4rem 0.8rem;
  }
  
  .main-container {
    gap: 2.5rem;
  }
  
  .tagline {
    font-size: 0.75rem;
  }
  
  .main-title {
    font-size: 3.25rem;
  }
  
  .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.75rem;
  }
  
  #email-input {
    background: var(--color-bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 0.9rem 1.2rem;
  }
  
  #email-input:focus {
    border-color: var(--color-accent);
  }
  
  .submit-btn {
    padding: 1rem;
    justify-content: center;
    border-radius: var(--border-radius-sm);
  }
  
  .image-side {
    padding-right: 90px; /* Smaller spacing on small screens */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .album-sleeve-container {
    max-width: 190px;
  }
  
  .footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  

}
