:root {
  --bg-dark: #0f0a1a;
  --bg-darker: #07040d;
  --bg-card: rgba(20, 14, 33, 0.65);
  --bg-card-hover: rgba(30, 21, 50, 0.85);
  
  --accent: #8b5cf6;
  --accent-secondary: #f472b6;
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #f472b6 100%);
  --accent-glow: 0 0 25px rgba(139, 92, 246, 0.45);
  
  --text-main: #f1eafb;
  --text-muted: #b9aeca;
  --text-dim: #84759b;
  
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-border: 1px solid rgba(241, 234, 251, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background-color: var(--bg-darker);
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Scrollbar Styles --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Common Layout & Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- Typography Helpers --- */
.section-title-wrap {
  position: relative;
  margin-bottom: 60px;
}

.section-title-wrap.text-center {
  text-align: center;
}

.title-bg {
  position: absolute;
  top: -15px;
  left: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 8px;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  width: 100%;
  line-height: 1;
}

.text-center .title-bg {
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
  margin-top: 10px;
}

.text-center .section-title::after {
  margin: 10px auto 0 auto;
}

.section-subtitle {
  margin-top: 15px;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--accent-glow);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-glow:hover::after {
  opacity: 0.8;
  filter: blur(15px);
}

/* --- Background Ambient Glows --- */
.cursor-glow {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(244, 114, 182, 0.05) 50%, rgba(0,0,0,0) 100%);
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* --- Header / Navigation Bar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(7, 7, 9, 0.6);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(2, 2, 3, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

nav a:hover, nav a.active {
  color: var(--text-main);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: 
    linear-gradient(90deg, rgba(2, 2, 3, 0.95) 0%, rgba(2, 2, 3, 0.6) 50%, rgba(2, 2, 3, 0.9) 100%),
    url('assets/beste_hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 50%, rgba(168, 85, 247, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-left: 6%;
  max-width: 850px;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 0.95;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff 40%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Social & Streaming Links */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stream-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.stream-btn i {
  font-size: 1.2rem;
}

.stream-btn:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hover Accent Colors per Platform */
.stream-btn.spotify:hover {
  background: rgba(29, 185, 84, 0.2);
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.25);
  color: #1db954;
}

.stream-btn.apple:hover {
  background: rgba(252, 60, 89, 0.2);
  box-shadow: 0 0 20px rgba(252, 60, 89, 0.25);
  color: #fc3c59;
}

.stream-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
  color: #ff0000;
}

.stream-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.2);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.25);
  color: #e1306c;
}

.stream-btn.tiktok:hover {
  background: rgba(0, 242, 234, 0.15);
  box-shadow: 0 0 20px rgba(254, 44, 85, 0.2);
  color: #00f2ea;
  text-shadow: 0 0 4px rgba(254, 44, 85, 0.8);
}

/* Scroll Down Indicator */
.scroll-down {
  margin-top: 60px;
  animation: pulse 2s infinite;
}

.scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.scroll-down .arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-down .arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: white;
  animation: scrollDownArrow 1.5s infinite ease-in-out;
}

/* --- Music Section --- */
.music-section {
  background-color: var(--bg-darker);
}

.spotify-player {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 20px;
}

.player-container iframe {
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  display: block;
}

/* --- About Section --- */
.about-section {
  background-color: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.bio-text strong {
  color: white;
  font-weight: 600;
}

.bio-quote {
  margin-top: 35px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  position: relative;
}

.bio-quote i {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: rgba(168, 85, 247, 0.08);
  z-index: 0;
  pointer-events: none;
}

.bio-quote p {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: #d1d5db;
  position: relative;
  z-index: 1;
}

/* About Image styling */
.about-image-wrap {
  position: relative;
  padding: 15px;
}

.image-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--accent-gradient);
  opacity: 0.15;
  filter: blur(20px);
  z-index: 1;
}

.image-inner {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: var(--glass-border);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
}

.about-img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrap:hover .about-img {
  transform: scale(1.03);
}

/* --- Contact Section --- */
.contact-section {
  background-color: var(--bg-darker);
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contact-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  background: var(--bg-card-hover);
}

.contact-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  font-size: 2rem;
  color: var(--accent);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.email-link {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.email-link:hover {
  transform: scale(1.03);
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.manager-name {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 35px;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--glass-border);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.contact-socials a:hover {
  color: white;
  border-color: rgba(255,255,255,0.25);
  background: var(--accent-gradient);
  transform: translateY(-4px);
  box-shadow: var(--accent-glow);
}

/* --- Footer --- */
footer {
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .copyright {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

footer .credits {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

footer .highlight {
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
}

/* --- Animation Classes (Scroll Reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

/* --- Keyframe Animations --- */
@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

@keyframes scrollDownArrow {
  0% { transform: translateY(-100%); }
  80% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

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

.fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 5rem;
  }
  
  .title-bg {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(2, 2, 3, 0.98);
    backdrop-filter: blur(25px);
    border-left: var(--glass-border);
    padding: 120px 40px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 40px;
  }

  nav a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  /* Hero */
  .hero {
    background-position: 70% center;
  }
  
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 3.8rem;
    letter-spacing: 4px;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .streaming-links {
    gap: 12px;
  }

  .stream-btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  
  /* Sections common */
  section {
    padding: 80px 0;
  }

  /* Music Grid */
  .music-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .release-details h3 {
    font-size: 1.7rem;
  }

  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Order details on mobile: Image on top, text below */
  .about-image-wrap {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-card {
    padding: 40px 20px;
  }

  .email-link {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 2rem;
  }

}
