/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== NAVBAR UNIVERSAL (100% COPY DARI MEMBER.CSS) ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 50px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 153, 102, 0.08);
  height: 72px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Scroll Effects - Optimized */
.navbar.scroll-up {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scroll-down {
  transform: translateY(-100%);
}

/* Logo - Simple & Fast */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  will-change: transform;
}

.logo:hover .logo-img {
  transform: translateY(-2px);
}

/* Nav Links Container - Optimized Grid */
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Nav Links - Ultra Clean */
.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.25s ease;
  will-change: color;
}

/* Underline Effect - GPU Accelerated */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}

.nav-links li a:hover {
  color: #ffffff;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: #ff9966;
  font-weight: 600;
}

/* ==================== PROFILE SECTION - OPTIMIZED ==================== */
.nav-profile {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.profile-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  will-change: transform;
}

.profile-btn:hover {
  transform: scale(1.08);
}

/* Hide text completely */
.profile-btn span {
  display: none !important;
  visibility: hidden !important;
}

/* Avatar - Clean & Visible */
.profile-avatar-nav {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: block;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .profile-avatar-nav {
  border-color: #ff9966;
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.4);
}

/* Guest Icon */
.guest-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #c96, #ff9966);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .guest-icon {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.5);
}

/* Dropdown Menu - Lightweight */
.profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  list-style: none;
  display: none;
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

.profile-menu::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: rgba(15, 15, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.profile-menu[aria-hidden="false"] {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.profile-menu li {
  margin: 0;
  padding: 0;
}

.profile-menu li a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  will-change: background, color;
}

/* Override underline for dropdown menu */
.profile-menu li a::after {
  display: none !important;
}

.profile-menu li a:hover {
  color: #ffffff !important;
  background: rgba(255, 153, 102, 0.1);
}

.profile-menu li:not(:last-child) {
  margin-bottom: 2px;
}

.profile-menu li:last-child {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==================== NAVBAR RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .navbar {
    padding: 18px 40px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links li a {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 30px;
    height: auto;
    min-height: 70px;
  }

  .nav-links {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li a {
    padding: 9px 12px;
    font-size: 11px;
  }

  .logo-img {
    height: 42px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
    height: auto;
  }

  .nav-links {
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .nav-links li a {
    padding: 8px 10px;
    font-size: 11px;
  }

  .profile-avatar-nav,
  .guest-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .profile-btn {
    min-width: 36px;
    min-height: 36px;
  }

  .logo-img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-links li a {
    padding: 7px 9px;
    font-size: 10px;
  }

  .logo-img {
    height: 34px;
  }

  .profile-menu {
    min-width: 170px;
  }
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
/* Reduce repaints and reflows */
.navbar,
.nav-links li a,
.profile-btn,
.profile-menu {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

/* Hardware acceleration for smooth animations */
.nav-links li a::after,
.profile-avatar-nav,
.guest-icon,
.profile-menu {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Optimize hover states - no layout shifts */
.nav-links li a:hover,
.profile-btn:hover {
  transform: translateZ(0);
}

/* Prevent font rendering issues */
.navbar,
.nav-links,
.profile-menu {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reduce blur complexity on low-end devices */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .profile-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.98);
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Container query for future-proofing */
@supports (container-type: inline-size) {
  .navbar {
    container-type: inline-size;
  }
}

/* ==================== MUSIC PROMOTION STYLES ==================== */

/* Music Header */
.music-header {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.music-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(29, 185, 84, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 102, 204, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.music-header h1 {
  font-size: clamp(2.5em, 6vw, 3.5em);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1db954 0%, #ff66cc 50%, #ff9966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 2px;
}

.music-header p {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.music-header .orange {
  color: #ff9966;
}

.music-header .pink {
  color: #ff66cc;
}

/* Platform Highlight */
.platform-highlight {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.platform-highlight img {
  width: 50px;
  height: 50px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-highlight img:hover {
  transform: translateY(-5px) scale(1.1);
  filter: brightness(1.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Music Section */
.music-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Music Card - Promotional Design */
.music-card {
  display: flex;
  background: linear-gradient(145deg, #1a1a1a 0%, #151515 100%);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.music-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(29, 185, 84, 0.1), 
    transparent);
  transition: left 0.7s ease;
}

.music-card:hover::before {
  left: 100%;
}

.music-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(29, 185, 84, 0.2);
  border-color: rgba(29, 185, 84, 0.3);
}

/* Album Cover */
.album-cover {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.music-card:hover .album-cover {
  transform: scale(1.05);
}

/* Music Info */
.music-info {
  flex: 1;
}

.song-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.song-header h2 {
  font-size: 1.8em;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.release-date {
  background: rgba(29, 185, 84, 0.2);
  color: #1db954;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  border: 1px solid rgba(29, 185, 84, 0.3);
}

.song-description {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1em;
}

/* Platform Links */
.platform-links {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.platform-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.platform-link img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.platform-link:hover img {
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: rgba(29, 185, 84, 0.1);
  border-color: rgba(29, 185, 84, 0.3);
}

/* Song Stats */
.song-stats {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-label {
  color: #999;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.stat-value {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
}

/* No Songs Message */
.no-songs {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}

.no-songs h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ccc;
}

/* Call to Action Section */
/* ==================== PREMIUM CTA SECTION - MUSIC THEME ==================== */

/* Call to Action Section - Clean & Elegant */
.cta-section {
  background: #0a0a0a;
  padding: 100px 20px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle gradient overlay - very minimal */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(10, 10, 10, 0) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Heading - Matching music header style */
.cta-content h2 {
  font-size: clamp(1.8em, 4vw, 2.8em);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1db954 0%, #ff66cc 50%, #ff9966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* Description */
.cta-content p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.7;
  margin: 0 auto 50px;
  max-width: 600px;
}

/* ==================== SYMMETRIC BUTTON LAYOUT ==================== */

/* Buttons Container - Horizontal & Centered */
.cta-section .follow-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 600px;
}

/* Follow Button - Premium Music Style */
.cta-section .follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  
  /* ✅ PERFECT SYMMETRIC: Fixed equal width */
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  
  /* ✅ Perfect text alignment */
  text-align: center;
  white-space: nowrap;
  
  /* Remove any inherited text-align */
  box-sizing: border-box;
  
  /* Shadow for depth */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Shine effect overlay */
.cta-section .follow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.cta-section .follow-btn:hover::before {
  left: 100%;
}

/* Icon */
.cta-section .follow-btn img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  display: block;
  margin: 0;
}

.cta-section .follow-btn:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* ==================== SPOTIFY BUTTON ==================== */

.cta-section .follow-btn.spotify {
  background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
  color: white;
  border: 2px solid rgba(29, 185, 84, 0.3);
}

.cta-section .follow-btn.spotify:hover {
  background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
  border-color: #1db954;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 40px rgba(29, 185, 84, 0.5),
    0 0 0 4px rgba(29, 185, 84, 0.1);
}

.cta-section .follow-btn.spotify:active {
  transform: translateY(-2px) scale(1.02);
}

/* ==================== APPLE MUSIC BUTTON ==================== */

.cta-section .follow-btn.apple {
  background: linear-gradient(135deg, #fa243c 0%, #ff4757 100%);
  color: white;
  border: 2px solid rgba(250, 36, 60, 0.3);
}

.cta-section .follow-btn.apple:hover {
  background: linear-gradient(135deg, #ff4757 0%, #fa243c 100%);
  border-color: #fa243c;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 40px rgba(250, 36, 60, 0.5),
    0 0 0 4px rgba(250, 36, 60, 0.1);
}

.cta-section .follow-btn.apple:active {
  transform: translateY(-2px) scale(1.02);
}

/* ==================== DECORATIVE ELEMENTS ==================== */

/* Removed decorative circle - keeping it clean */

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
  
  /* Stack vertically on mobile */
  .cta-section .follow-buttons {
    flex-direction: column;
    max-width: 100%;
  }
  
  .cta-section .follow-btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
  
  .cta-content h2 {
    font-size: 1.8em;
    margin-bottom: 16px;
  }
  
  .cta-content p {
    font-size: 1em;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 50px 16px;
  }
  
  .cta-section .follow-btn {
    padding: 16px 28px;
    font-size: 14px;
    gap: 10px;
    max-width: 260px;
  }
  
  .cta-section .follow-btn img {
    width: 22px;
    height: 22px;
  }
  
  .cta-content h2 {
    font-size: 1.6em;
  }
  
  .cta-content p {
    font-size: 0.95em;
  }
}

/* Desktop: side by side */
@media (min-width: 769px) {
  .cta-section .follow-buttons {
    gap: 20px;
  }
  
  .cta-section .follow-btn {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
  }
}

/* ==================== ACCESSIBILITY ==================== */

/* Focus state for keyboard navigation */
.cta-section .follow-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta-section .follow-btn::before {
    animation: none;
  }
  
  .cta-section .follow-btn {
    transition: none;
  }
  
  .cta-section .follow-btn:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .cta-section .follow-btn {
    border-width: 3px;
  }
}

/* ==================== PRINT STYLES ==================== */

@media print {
  .cta-section {
    background: white;
    color: black;
  }
  
  .cta-section::before,
  .cta-section .follow-buttons::before {
    display: none;
  }
  
  .cta-section .follow-btn {
    border: 2px solid black;
    box-shadow: none;
  }
}

/* ==================== FOOTER STYLES ==================== */
/* Orange & Black Footer - Synced Theme */
.footer {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  margin-top: 100px;
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c96, #ff9966, #ffa500, #ff9966, #c96);
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.footer::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 102, 102, 0.15), transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.glow-circle {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 153, 102, 0.12), transparent);
  border-radius: 50%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Main Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

/* Brand Section */
.brand-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c96, #ff9966);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  box-shadow: 0 4px 20px rgba(201, 102, 102, 0.4);
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 102, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 153, 102, 0.6); }
}

.brand-name h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px;
  background: linear-gradient(90deg, #ffffff, #ff9966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #cccccc;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 102, 102, 0.1);
  border: 1px solid rgba(201, 102, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ff9966;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #c96, #ff9966);
  color: #000;
  box-shadow: 0 5px 20px rgba(201, 102, 102, 0.5);
  border-color: #ff9966;
}

/* Links Section */
.links-section h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ff9966;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.links-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #ff9966;
  transition: width 0.3s ease;
}

.links-list a:hover {
  color: #ff9966;
  padding-left: 15px;
}

.links-list a:hover::before {
  width: 10px;
}

/* Follow Section */
.follow-section h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ff9966;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.follow-section p {
  font-size: 12px;
  color: #999999;
  line-height: 1.4;
  margin-bottom: 15px;
}

.follow-section .follow-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.follow-section .follow-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(201, 102, 102, 0.1);
  border: 1px solid rgba(201, 102, 102, 0.3);
  border-radius: 8px;
  text-decoration: none;
  color: #cccccc;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.follow-section .follow-btn:hover {
  background: linear-gradient(135deg, #c96, #ff9966);
  color: #000;
  border-color: #ff9966;
  transform: translateX(5px);
  box-shadow: 0 3px 15px rgba(201, 102, 102, 0.4);
}

.follow-section .follow-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.follow-section .follow-btn .follower-count {
  margin-left: auto;
  font-size: 11px;
  opacity: 0.7;
}

/* Contact Info */
.contact-info {
  margin-top: 15px;
}

.contact-info p {
  color: #999999;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-phone {
  color: #ff9966;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-phone:hover {
  color: #ffa500;
  text-shadow: 0 0 10px rgba(255, 153, 102, 0.5);
}

/* Bottom Section */
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 102, 102, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.copyright {
  color: #666666;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff9966;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .music-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .album-cover {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  
  .song-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .song-stats {
    justify-content: center;
  }
  
  .platform-links {
    justify-content: center;
  }
  
  .cta-section .follow-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-section .follow-btn {
    width: auto;
    min-width: 220px;
  }
  
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .platform-highlight {
    gap: 15px;
  }
  
  .platform-highlight img {
    width: 40px;
    height: 40px;
  }
  
  .platform-link img {
    width: 35px;
    height: 35px;
  }
  
  .cta-section .follow-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 200px;
  }
}