/* ============================================
   HEVON STAR - Official Website Styles
   Brand: Flaming Eye | Red, Yellow, Green, Black
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-glow: #ff1a1a;
  --yellow: #FFD700;
  --orange: #FF6600;
  --green: #00CC00;
  --green-bright: #33FF33;
  --green-dark: #009900;
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #151515;
  --gray: #222;
  --gray-light: #888;
  --white: #ffffff;
  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: var(--green); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--yellow); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- PARTICLE CANVAS --- */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.2);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 45px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nav-link {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--green);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav-social {
  display: flex;
  gap: 1rem;
}

.nav-social a {
  color: var(--gray-light);
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-social a:hover { color: var(--green); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(204, 0, 0, 0.6);
  color: var(--yellow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 20px rgba(0, 204, 0, 0.2);
}

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

.btn-outline-fire:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.btn-small { padding: 0.5rem 1.2rem; font-size: 0.65rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-soldout {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid var(--gray);
  cursor: default;
  opacity: 0.6;
}

/* --- SECTIONS --- */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section-dark {
  background: var(--black-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title i {
  color: var(--red);
  margin-right: 0.5rem;
}

.section-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 65px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.3);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--black) 70%),
    linear-gradient(180deg, transparent 60%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-flame-icon {
  margin-bottom: 1.5rem;
}

.hero-eye-icon {
  width: 120px;
  height: auto;
  margin: 0 auto;
  animation: pulse-glow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 204, 0, 0.5));
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 204, 0, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 40px rgba(204, 0, 0, 0.6)); transform: scale(1.05); }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 6px;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(204, 0, 0, 0.5);
}

.accent-green { color: var(--green); }
.accent-yellow { color: var(--yellow); }
.accent-red { color: var(--red); }

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-light);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--gray-light);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==============================
   MUSIC / ALBUM SECTIONS
   ============================== */
.album-showcase {
  position: relative;
  margin-bottom: 5rem;
}

.album-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  z-index: 2;
}

.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.album-grid.reverse { direction: rtl; }
.album-grid.reverse > * { direction: ltr; }

.album-cover-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.album-cover-wrap:hover .album-cover {
  transform: scale(1.05);
}

.album-glow {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 60px rgba(0, 204, 0, 0.3);
  pointer-events: none;
}

.album-glow.glow-red {
  box-shadow: inset 0 0 60px rgba(204, 0, 0, 0.3);
}

.album-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 0.2rem;
}

.album-subtitle {
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.album-year {
  color: var(--gray-light);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Track List */
.track-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.track:hover {
  background: rgba(204, 0, 0, 0.1);
  border-color: rgba(204, 0, 0, 0.2);
}

.track.playing {
  background: rgba(0, 204, 0, 0.1);
  border-color: rgba(0, 204, 0, 0.3);
}

.track-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gray-light);
  min-width: 24px;
}

.track.playing .track-num { color: var(--green); }

.track-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.track-duration {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gray-light);
}

.play-btn {
  background: none;
  border: none;
  color: var(--gray-light);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.3rem;
  transition: color 0.3s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
}

.play-btn:hover {
  color: var(--green);
  border-color: var(--green);
}

.track.playing .play-btn {
  color: var(--green);
}

/* Buy Buttons */
.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 204, 0, 0.1);
  border: 1px solid rgba(0, 204, 0, 0.3);
  border-radius: 4px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}

.buy-btn:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 15px rgba(0, 204, 0, 0.3);
}

.buy-btn i {
  font-size: 0.6rem;
}

.album-buy-btn {
  margin-bottom: 1rem;
  display: inline-flex;
}

/* Stream Links */
.album-stream-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white);
  font-size: 0.75rem;
  transition: all 0.3s;
}

.stream-btn:hover {
  background: rgba(0, 204, 0, 0.15);
  border-color: var(--green);
  color: var(--green);
}

/* ==============================
   MINI PLAYER
   ============================== */
.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-player.visible {
  transform: translateY(0);
}

.mini-player-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 200px;
}

.mini-album-art {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  object-fit: cover;
}

.mini-track-name {
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.mini-album-name {
  font-size: 0.7rem;
  color: var(--gray-light);
}

.mini-player-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mini-player-controls button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.3rem;
  transition: color 0.3s;
}

.mini-player-controls button:hover { color: var(--green); }

.play-pause-main {
  width: 40px !important;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background: var(--red) !important;
  font-size: 0.9rem !important;
}

.play-pause-main:hover {
  background: var(--green) !important;
  color: var(--black) !important;
}

.mini-player-progress {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gray-light);
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--gray);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.mini-player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-light);
  font-size: 0.8rem;
}

#volumeSlider {
  width: 80px;
  -webkit-appearance: none;
  height: 4px;
  background: var(--gray);
  border-radius: 2px;
  outline: none;
}

#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
}

/* ==============================
   TOUR SECTION
   ============================== */
.tour-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.tour-item:hover {
  background: rgba(204, 0, 0, 0.08);
  border-color: rgba(204, 0, 0, 0.2);
  transform: translateX(5px);
}

.tour-date {
  text-align: center;
  min-width: 60px;
}

.tour-month {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--red);
}

.tour-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.tour-info { flex: 1; }

.tour-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.tour-info p {
  color: var(--gray-light);
  font-size: 0.85rem;
}

/* ==============================
   MERCH SECTION
   ============================== */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.merch-item {
  background: var(--black-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.merch-item:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(204, 0, 0, 0.2);
}

.merch-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.merch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.merch-item:hover .merch-img { transform: scale(1.08); }

.merch-details {
  padding: 1.2rem;
}

.merch-details h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.merch-price {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* ==============================
   VIDEOS SECTION
   ============================== */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.video-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-item:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-3px);
}

.video-featured {
  grid-column: 1 / -1;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background 0.3s;
}

.video-item:hover .video-play-overlay {
  background: rgba(204, 0, 0, 0.25);
}

.video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.6);
  transition: transform 0.3s;
}

.video-play-btn:hover { transform: scale(1.1); }

.video-info {
  padding: 1rem 1.2rem;
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.video-info p {
  color: var(--gray-light);
  font-size: 0.8rem;
}

/* ==============================
   EPK SECTION
   ============================== */
.epk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.epk-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
}

.epk-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--green);
}

.epk-card h3 i {
  color: var(--red);
  margin-right: 0.5rem;
}

.epk-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.epk-artist-photo {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 1;
  object-fit: cover;
}

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

.epk-stat { text-align: center; }

.epk-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.epk-stat-label {
  font-size: 0.75rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.epk-disco-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.epk-disco-thumb {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
}

.epk-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.epk-photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

.epk-photo-grid img:hover { transform: scale(1.05); }

.epk-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.epk-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.epk-contact-role {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.epk-contact-item a {
  color: var(--white);
  font-size: 0.9rem;
}

.epk-contact-item a:hover { color: var(--green); }

.epk-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.epk-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white);
  font-size: 0.8rem;
  transition: all 0.3s;
}

.epk-social-link:hover {
  background: rgba(0, 204, 0, 0.15);
  border-color: var(--green);
  color: var(--green);
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(0, 204, 0, 0.15);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--red);
}

.contact-info-card h3 i { margin-right: 0.4rem; }

.contact-socials {
  display: flex;
  gap: 1rem;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-socials a:hover {
  background: var(--green);
  color: var(--black);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input:focus { border-color: var(--green); }

/* ==============================
   FOOTER
   ============================== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  border-top: 1px solid rgba(204, 0, 0, 0.2);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-logo { height: 40px; width: auto; }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--gray-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--green); }

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--gray-light);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-socials a:hover { color: var(--green); }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ==============================
   ANIMATIONS
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .album-grid,
  .album-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .videos-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .epk-grid { grid-template-columns: 1fr; }

  .nav-links, .nav-social { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  }

  .hamburger { display: block; }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-title { font-size: clamp(2rem, 10vw, 4rem); }

  .mini-player {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .mini-player-volume { display: none; }
  .mini-player-progress { display: none; }

  .tour-item { flex-wrap: wrap; gap: 1rem; }
  .tour-status { width: 100%; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.4rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }
  .epk-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid { grid-template-columns: 1fr; }
  .buy-btn span-price { display: none; }
  .track { gap: 0.5rem; padding: 0.6rem; }
}

/* ==============================
   LOADING SCREEN
   ============================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-eye {
  width: 100px;
  height: auto;
  animation: loader-pulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 204, 0, 0.6));
  margin-bottom: 1.5rem;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0, 204, 0, 0.4)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 50px rgba(204, 0, 0, 0.8)); }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 6px;
  margin-bottom: 1.5rem;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  border-radius: 2px;
  animation: loader-fill 2s ease-in-out forwards;
}

@keyframes loader-fill {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

.loader-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--gray-light);
  animation: loader-blink 1s step-end infinite;
}

@keyframes loader-blink {
  50% { opacity: 0; }
}

/* ==============================
   SCROLL PROGRESS BAR
   ============================== */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(204, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ==============================
   FILM GRAIN OVERLAY
   ============================== */
#grain {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grain-shift 0.4s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-5%, -5%); }
  50% { transform: translate(5%, 3%); }
  75% { transform: translate(-3%, 5%); }
  100% { transform: translate(3%, -3%); }
}

/* ==============================
   CUSTOM CURSOR
   ============================== */
#cursorDot {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0, 204, 0, 0.6);
}

#cursorDot.hovering {
  width: 35px;
  height: 35px;
  background: rgba(204, 0, 0, 0.4);
  border: 2px solid var(--green);
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  animation: trail-fade 0.6s ease-out forwards;
}

@keyframes trail-fade {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

@media (hover: none) {
  #cursorDot { display: none; }
  * { cursor: auto !important; }
}

/* ==============================
   GLITCH TEXT EFFECT
   ============================== */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch::before {
  color: var(--red);
  z-index: -1;
}

.glitch::after {
  color: var(--green);
  z-index: -1;
}

.glitch.glitch-active::before {
  opacity: 0.8;
  animation: glitch-1 0.3s linear;
}

.glitch.glitch-active::after {
  opacity: 0.8;
  animation: glitch-2 0.3s linear;
}

@keyframes glitch-1 {
  0% { clip-path: inset(20% 0 60% 0); transform: translate(-5px, 2px); }
  20% { clip-path: inset(60% 0 10% 0); transform: translate(5px, -2px); }
  40% { clip-path: inset(40% 0 30% 0); transform: translate(-3px, 1px); }
  60% { clip-path: inset(10% 0 70% 0); transform: translate(3px, -1px); }
  80% { clip-path: inset(50% 0 20% 0); transform: translate(-2px, 3px); }
  100% { clip-path: inset(0); transform: translate(0); }
}

@keyframes glitch-2 {
  0% { clip-path: inset(60% 0 10% 0); transform: translate(5px, -2px); }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(-5px, 2px); }
  40% { clip-path: inset(70% 0 5% 0); transform: translate(3px, -3px); }
  60% { clip-path: inset(5% 0 80% 0); transform: translate(-3px, 3px); }
  80% { clip-path: inset(30% 0 40% 0); transform: translate(2px, -1px); }
  100% { clip-path: inset(0); transform: translate(0); }
}

/* ==============================
   3D TILT CARDS
   ============================== */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ==============================
   MAGNETIC BUTTONS
   ============================== */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==============================
   PARALLAX
   ============================== */
.parallax {
  will-change: transform;
}

/* ==============================
   TYPING CURSOR
   ============================== */
.typing-cursor {
  font-family: var(--font-display);
  color: var(--green);
  animation: cursor-blink 0.8s step-end infinite;
  font-weight: 400;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

/* ==============================
   AUDIO VISUALIZER
   ============================== */
.visualizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 35px;
  padding: 0 0.5rem;
  min-width: 120px;
}

.viz-bar {
  width: 3px;
  min-height: 3px;
  background: linear-gradient(to top, var(--red), var(--yellow));
  border-radius: 2px;
  transition: height 0.08s ease;
}

.viz-bar.active {
  background: linear-gradient(to top, var(--red), var(--orange), var(--yellow), var(--green));
}

/* ==============================
   ALBUM SHINE EFFECT
   ============================== */
.album-interactive {
  cursor: pointer;
}

.album-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
}

.album-interactive:hover .album-shine {
  opacity: 1;
}

/* ==============================
   MERCH SHINE
   ============================== */
.merch-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 150px at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.1), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.merch-img-wrap:hover .merch-shine {
  opacity: 1;
}

/* ==============================
   FAN SHOUTOUT WALL
   ============================== */
.fanwall-input-wrap {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.fanwall-form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
}

.fanwall-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.fanwall-form input:focus {
  border-color: var(--green);
}

.fanwall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.fan-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.2rem;
  animation: fan-appear 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

.fan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  opacity: 0.6;
}

@keyframes fan-appear {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.fan-card-name {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.fan-card-msg {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.fan-card-time {
  font-size: 0.65rem;
  color: var(--gray-light);
  margin-top: 0.5rem;
}

.fan-card-delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--gray-light);
  cursor: pointer;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
}

.fan-card:hover .fan-card-delete {
  opacity: 1;
}

.fan-card-delete:hover {
  color: var(--red);
}

/* ==============================
   EASTER EGG
   ============================== */
#easterEgg {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#easterEgg.active {
  opacity: 1;
  visibility: visible;
}

.egg-inner {
  text-align: center;
  animation: egg-explode 0.6s ease-out;
}

.egg-eye {
  width: 200px;
  height: auto;
  animation: egg-spin 2s ease-in-out;
  filter: drop-shadow(0 0 60px rgba(204, 0, 0, 0.8)) drop-shadow(0 0 120px rgba(255, 215, 0, 0.5));
}

@keyframes egg-explode {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes egg-spin {
  0% { transform: rotate(0deg) scale(0); }
  50% { transform: rotate(360deg) scale(1.5); }
  100% { transform: rotate(720deg) scale(1); }
}

.egg-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 6px;
  color: var(--red);
  margin-top: 2rem;
  text-shadow: 0 0 30px rgba(204, 0, 0, 0.8);
  animation: egg-text-glow 0.5s ease-in-out infinite alternate;
}

@keyframes egg-text-glow {
  0% { text-shadow: 0 0 20px rgba(204, 0, 0, 0.5); }
  100% { text-shadow: 0 0 60px rgba(255, 215, 0, 0.8); }
}

/* ==============================
   ENHANCED RESPONSIVE
   ============================== */
@media (max-width: 768px) {
  .visualizer { display: none; }

  .fanwall-form {
    flex-direction: column;
  }

  .fanwall-grid {
    grid-template-columns: 1fr;
  }

  .egg-eye { width: 120px; }
  .egg-text { font-size: 0.9rem; letter-spacing: 3px; }
}