/* Breaking Text Animation */
.breaking-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.05em;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.word-group {
  display: inline-flex;
  white-space: nowrap;
  word-break: keep-all;
}

.dopesalt-word {
  display: inline-flex;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}

.breaking-text .char {
  display: inline-block;
  position: relative;
  animation: charFloat 4s ease-in-out infinite, charGlow 3s ease-in-out infinite;
  animation-delay: calc(var(--char-index, 0) * 0.1s), calc(var(--char-index, 0) * 0.2s);
  transform-origin: center;
  white-space: nowrap;
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 45, 85, 0.3),
    0 0 30px rgba(255, 45, 85, 0.2);
}

/* Character index assignments for the new structure */
.breaking-text .char:nth-child(1) { --char-index: 0; }
.breaking-text .char:nth-child(2) { --char-index: 1; }
.breaking-text .char:nth-child(3) { --char-index: 2; }
.breaking-text .char:nth-child(4) { --char-index: 3; }
.breaking-text .char:nth-child(5) { --char-index: 4; }
.breaking-text .char:nth-child(6) { --char-index: 5; }
.breaking-text .char:nth-child(7) { --char-index: 6; }
.breaking-text .char:nth-child(8) { --char-index: 7; }
.breaking-text .char:nth-child(9) { --char-index: 8; }
.breaking-text .char:nth-child(10) { --char-index: 9; }
.breaking-text .char:nth-child(11) { --char-index: 10; }
.breaking-text .char:nth-child(12) { --char-index: 11; }
.breaking-text .char:nth-child(13) { --char-index: 12; }
.breaking-text .char:nth-child(14) { --char-index: 13; }
.breaking-text .char:nth-child(15) { --char-index: 14; }
.breaking-text .char:nth-child(16) { --char-index: 15; }
.breaking-text .char:nth-child(17) { --char-index: 16; }
.breaking-text .char:nth-child(18) { --char-index: 17; }
.breaking-text .char:nth-child(19) { --char-index: 18; }
.breaking-text .char:nth-child(20) { --char-index: 19; }
.breaking-text .char:nth-child(21) { --char-index: 20; }
.breaking-text .char:nth-child(22) { --char-index: 21; }
.breaking-text .char:nth-child(23) { --char-index: 22; }
.breaking-text .char:nth-child(24) { --char-index: 23; }
.breaking-text .char:nth-child(25) { --char-index: 24; }
.breaking-text .char:nth-child(26) { --char-index: 25; }
.breaking-text .char:nth-child(27) { --char-index: 26; }

/* Force "Dopesalt" to stay together */
.breaking-text .char:nth-child(17),
.breaking-text .char:nth-child(18),
.breaking-text .char:nth-child(19),
.breaking-text .char:nth-child(20),
.breaking-text .char:nth-child(21),
.breaking-text .char:nth-child(22),
.breaking-text .char:nth-child(23),
.breaking-text .char:nth-child(24) {
  white-space: nowrap;
  word-break: keep-all;
}

@keyframes charFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
    opacity: 0.8;
    filter: blur(0.5px);
  }
  50% {
    transform: translateY(-40px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1px);
  }
  75% {
    transform: translateY(-20px) rotate(3deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.5px);
  }
}

@keyframes charGlow {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.8),
      0 0 10px rgba(255, 255, 255, 0.6),
      0 0 15px rgba(255, 255, 255, 0.4),
      0 0 20px rgba(255, 45, 85, 0.3),
      0 0 30px rgba(255, 45, 85, 0.2);
  }
  25% {
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0.9),
      0 0 15px rgba(255, 255, 255, 0.7),
      0 0 25px rgba(255, 255, 255, 0.5),
      0 0 35px rgba(255, 45, 85, 0.4),
      0 0 45px rgba(255, 45, 85, 0.3),
      0 0 55px rgba(0, 255, 136, 0.2);
  }
  50% {
    text-shadow: 
      0 0 12px rgba(255, 255, 255, 1),
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 45, 85, 0.5),
      0 0 50px rgba(255, 45, 85, 0.4),
      0 0 60px rgba(0, 255, 136, 0.3),
      0 0 70px rgba(255, 255, 255, 0.2);
  }
  75% {
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0.9),
      0 0 15px rgba(255, 255, 255, 0.7),
      0 0 25px rgba(255, 255, 255, 0.5),
      0 0 35px rgba(255, 45, 85, 0.4),
      0 0 45px rgba(255, 45, 85, 0.3),
      0 0 55px rgba(0, 255, 136, 0.2);
  }
}

/* Glitch effect for extra chaos */
.breaking-text .char::before {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  color: #ff2d55;
  animation: glitch 3s infinite;
  animation-delay: calc(var(--char-index, 0) * 0.2s);
  opacity: 0;
  text-shadow: 
    0 0 5px rgba(255, 45, 85, 0.8),
    0 0 10px rgba(255, 45, 85, 0.6),
    0 0 15px rgba(255, 45, 85, 0.4);
}

.breaking-text .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  color: #00ff88;
  animation: glitch 3s infinite reverse;
  animation-delay: calc(var(--char-index, 0) * 0.15s);
  opacity: 0;
  text-shadow: 
    0 0 5px rgba(0, 255, 136, 0.8),
    0 0 10px rgba(0, 255, 136, 0.6),
    0 0 15px rgba(0, 255, 136, 0.4);
}

@keyframes glitch {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  10% {
    opacity: 0.3;
    transform: translate(-2px, 2px);
  }
  20% {
    opacity: 0;
    transform: translate(0, 0);
  }
  30% {
    opacity: 0.3;
    transform: translate(2px, -2px);
  }
  40% {
    opacity: 0;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.3;
    transform: translate(-1px, 1px);
  }
  60% {
    opacity: 0;
    transform: translate(0, 0);
  }
  70% {
    opacity: 0.3;
    transform: translate(1px, -1px);
  }
  80% {
    opacity: 0;
    transform: translate(0, 0);
  }
  90% {
    opacity: 0.3;
    transform: translate(-1px, 1px);
  }
}

/* Custom Apple Music Icon */
.apple-music-icon {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background: linear-gradient(45deg, #ff2d55, #ff3b30);
  border-radius: 50%;
  transform: scale(0.8);
}

.apple-music-icon::before {
  content: "♪";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.6em;
  font-weight: bold;
  line-height: 1;
}

.apple-music-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.3em;
  height: 0.3em;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
}

/* Alternative: Use a text-based approach */
.apple-music-text {
  font-weight: bold;
  background: linear-gradient(45deg, #ff2d55, #ff3b30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9em;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #ffffff;
  --secondary: #888888;
  --accent: #666666;
  --bg: #000000;
  --bg-secondary: #111111;
  --text: #ffffff;
  --text-muted: #888888;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 4px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
}

h2 {
  font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw + 1rem, 1.8rem);
  color: var(--text);
  font-weight: 400;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Links and Buttons */
a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  position: relative;
}

.logo img {
  width: 70px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes logoGlow {
  0%, 100% {
    filter: brightness(0) invert(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    transform: scale(1.02);
  }
}

.main-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.main-menu a {
  padding: 0.4rem 0;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.2s ease;
}

.main-menu a:hover::after {
  width: 100%;
}

.main-menu a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero .section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Sections */
section {
  padding: 4rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Music Embeds */
.music-embeds {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.music-embeds iframe {
  border-radius: var(--radius);
  width: 100%;
  border: none;
  background: var(--bg-secondary);
  transition: all 0.2s ease;
}

.music-embeds iframe:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .music-embeds {
    grid-template-columns: 1fr 1fr;
  }
}

.best-songs .music-embeds {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.best-songs .music-embeds iframe {
  height: 400px;
}

/* About Page */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  opacity: 0.1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  z-index: -1;
}

.about-content {
  max-width: 800px;
  margin: 6rem auto 0;
  padding: 2rem;
  background: transparent;
  animation: slideInUp 1s ease-out;
}

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

.about-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-content h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.feature-list li:hover {
  color: var(--text);
}

.feature-list i {
  color: var(--text);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.cta-section {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Contact Page */
.contact-content {
  max-width: 800px;
  margin: 6rem auto 0;
  padding: 2rem;
  background: transparent;
  text-align: center;
  animation: slideInUp 1s ease-out;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-content h1 {
  margin-bottom: 1.5rem;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-intro p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-intro a {
  color: var(--text);
  font-weight: 400;
  transition: all 0.2s ease;
}

.contact-intro a:hover {
  color: var(--primary);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-option {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}

.contact-option:hover {
  opacity: 0.8;
}

.contact-option i {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-option h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-option p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-email-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-email-section h2 {
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-email-section p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 1rem 2rem;
  border: 1px solid var(--text);
  border-radius: var(--radius);
}

.contact-email-link:hover {
  background: var(--text);
  color: var(--bg);
}

.contact-email-link i {
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-gif {
  display: flex;
  align-items: center;
}

.footer-gif img {
  height: 35px;
  width: auto;
  border-radius: var(--radius);
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-gif img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.footer-note {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--primary);
  opacity: 0.8;
}

/* Scroll Animations */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-scale {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Staggered animations for lists */
.scroll-fade-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-stagger:nth-child(1) { transition-delay: 0.1s; }
.scroll-fade-stagger:nth-child(2) { transition-delay: 0.2s; }
.scroll-fade-stagger:nth-child(3) { transition-delay: 0.3s; }
.scroll-fade-stagger:nth-child(4) { transition-delay: 0.4s; }
.scroll-fade-stagger:nth-child(5) { transition-delay: 0.5s; }

/* Scroll-based fade out effects for index page */
.fade-out-on-scroll {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out-on-scroll.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

/* Hero text fade out */
.hero h1.fade-out-on-scroll.fade-out {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
}

.hero .section-desc.fade-out-on-scroll.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.hero .cta.fade-out-on-scroll.fade-out {
  opacity: 0;
  transform: translateY(-15px);
}

/* Section text fade out */
.section-head.fade-out-on-scroll.fade-out {
  opacity: 0;
  transform: translateY(-25px);
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    min-height: 70vh;
    padding: 1rem 0;
  }
  
  .hero-inner {
    padding: 1rem;
  }
  
  .hero .cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .navbar .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .main-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .about-content,
  .contact-content {
    margin: 3rem auto 0;
    padding: 1.5rem 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer-gif {
    justify-content: center;
  }
  
  .footer-gif img {
    height: 30px;
  }
  
  .footer-note {
    order: 2;
  }
  
  .footer-social {
    justify-content: center;
    order: 3;
  }
  
  .music-embeds {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-email-link {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2rem, 8vw + 1rem, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 6vw + 1rem, 1.8rem);
  }
  
  .logo img {
    width: 60px;
  }
  
  .hero {
    padding: 1rem 0;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .about-content,
  .contact-content {
    padding: 1rem;
  }
}

/* Loading Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Legacy fade-in for backward compatibility */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text);
}

/* Music Page Specific Styles */
.music-page .hero {
  min-height: 60vh;
  padding: 4rem 0;
}

.music-page .hero h1 {
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  margin-bottom: 1.5rem;
}

.music-page .hero .section-desc {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.recent-music {
  padding: 4rem 0;
  background: var(--bg);
}

.latest-music {
  padding: 4rem 0;
  background: var(--bg);
}

.artist-profile {
  padding: 4rem 0;
  background: var(--bg);
}

.artist-profile .music-embeds {
  max-width: 800px;
  margin: 0 auto;
}

.music-page .cta-section {
  padding: 4rem 0;
  background: var(--bg);
  text-align: center;
}

.music-page .cta-section .section-head {
  margin-bottom: 2rem;
}

.music-page .cta-section .cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.music-page .cta-section .btn {
  min-width: 200px;
}

/* Music embeds responsive layout */
.music-embeds {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.music-embeds iframe {
  border-radius: var(--radius);
  width: 100%;
  border: none;
  background: var(--bg-secondary);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.music-embeds iframe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .music-embeds {
    grid-template-columns: 1fr 1fr;
  }
  
  .artist-profile .music-embeds {
    grid-template-columns: 1fr;
  }
}

/* Section spacing and typography */
.music-page section {
  position: relative;
}

.music-page .section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.music-page .section-head h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.music-page .section-head .section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .music-page .hero {
    min-height: 50vh;
    padding: 3rem 0;
  }
  
  .music-page .hero h1 {
    font-size: clamp(2rem, 8vw + 1rem, 2.5rem);
  }
  
  .music-page .hero .section-desc {
    font-size: 1rem;
  }
  
  .recent-music,
  .artist-profile,
  .music-page .cta-section {
    padding: 3rem 0;
  }
  
  .music-page .cta-section .cta {
    flex-direction: column;
    align-items: center;
  }
  
  .music-page .cta-section .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .music-embeds {
    gap: 1.5rem;
  }
}

/* Animated Brand Name with Sparkle Effect */
.animated-brand {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--text);
}

.animated-brand::before,
.animated-brand::after {
  content: '✨';
  position: absolute;
  font-size: 0.8em;
  opacity: 0;
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  animation: sparkle 2s ease-in-out infinite;
}

.animated-brand::before {
  top: -10px;
  left: -15px;
  animation-delay: 0s;
}

.animated-brand::after {
  top: -5px;
  right: -15px;
  animation-delay: 1s;
}

.animated-brand .sparkle-1,
.animated-brand .sparkle-2,
.animated-brand .sparkle-3 {
  position: absolute;
  font-size: 0.6em;
  opacity: 0;
  color: #ffffff;
  text-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
  animation: sparkle 3s ease-in-out infinite;
}

.animated-brand .sparkle-1 {
  top: 50%;
  left: -20px;
  animation-delay: 0.5s;
}

.animated-brand .sparkle-2 {
  top: 50%;
  right: -20px;
  animation-delay: 1.5s;
}

.animated-brand .sparkle-3 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2.5s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
    text-shadow: 0 0 5px #ffffff;
  }
  20% {
    opacity: 0.3;
    transform: scale(0.5) rotate(45deg);
    text-shadow: 0 0 8px #ffffff;
  }
  40% {
    opacity: 1;
    transform: scale(1) rotate(90deg);
    text-shadow: 0 0 15px #ffffff, 0 0 25px #ffffff;
  }
  60% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
    text-shadow: 0 0 12px #ffffff, 0 0 20px #ffffff;
  }
  80% {
    opacity: 0.4;
    transform: scale(0.8) rotate(270deg);
    text-shadow: 0 0 6px #ffffff;
  }
}

/* 8-Bit Text Animation */
.eight-bit-text {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: #00ff00;
  text-shadow: 
    2px 2px 0px #000,
    4px 4px 0px #000,
    6px 6px 0px #000;
  animation: eightBitGlitch 3s infinite;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #00ff00, #00cc00, #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eight-bit-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #ff0000;
  animation: eightBitRed 2s infinite;
  z-index: -1;
}

.eight-bit-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #0000ff;
  animation: eightBitBlue 2.5s infinite;
  z-index: -2;
}

@keyframes eightBitGlitch {
  0%, 100% {
    transform: translate(0, 0);
    filter: hue-rotate(0deg);
  }
  10% {
    transform: translate(-2px, 2px);
    filter: hue-rotate(90deg);
  }
  20% {
    transform: translate(2px, -2px);
    filter: hue-rotate(180deg);
  }
  30% {
    transform: translate(-1px, 1px);
    filter: hue-rotate(270deg);
  }
  40% {
    transform: translate(1px, -1px);
    filter: hue-rotate(0deg);
  }
  50% {
    transform: translate(-3px, 3px);
    filter: hue-rotate(90deg);
  }
  60% {
    transform: translate(3px, -3px);
    filter: hue-rotate(180deg);
  }
  70% {
    transform: translate(-1px, 1px);
    filter: hue-rotate(270deg);
  }
  80% {
    transform: translate(1px, -1px);
    filter: hue-rotate(0deg);
  }
  90% {
    transform: translate(-2px, 2px);
    filter: hue-rotate(90deg);
  }
}

@keyframes eightBitRed {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  15% {
    opacity: 0.3;
    transform: translate(-1px, 1px);
  }
  30% {
    opacity: 0;
    transform: translate(0, 0);
  }
  45% {
    opacity: 0.3;
    transform: translate(1px, -1px);
  }
  60% {
    opacity: 0;
    transform: translate(0, 0);
  }
  75% {
    opacity: 0.3;
    transform: translate(-1px, 1px);
  }
  90% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes eightBitBlue {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  20% {
    opacity: 0.3;
    transform: translate(1px, -1px);
  }
  40% {
    opacity: 0;
    transform: translate(0, 0);
  }
  60% {
    opacity: 0.3;
    transform: translate(-1px, 1px);
  }
  80% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

/* Live Stats Section */
.live-stats {
  padding: 4rem 0;
  background: var(--bg);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  opacity: 1;
  transform: scale(1.1);
}

.stat-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.counter {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: 0.8;
}

.stats-update {
  text-align: center;
  margin-top: 3rem;
}

.update-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter.animate {
  animation: countUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .counter {
    font-size: 2.5rem;
  }
  
  .stat-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .live-stats {
    padding: 3rem 0;
  }
  
  .counter {
    font-size: 2rem;
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
}