/* =============== CSS VARIABLES & RESET =============== */
:root {
  --color-black: #000000;
  --color-dark-1: #030303;
  --color-dark-2: #050505;
  --color-dark-3: #0a0a0a;
  --color-white: #ffffff;
  --color-gray-1: #808080;
  --color-gray-2: #555555;
  --color-gray-3: #222222;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-hiphop: 'Anton', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass-bg: rgba(5, 5, 5, 0.7);
  --glass-border: rgba(255, 255, 255, 0.03);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-secondary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* =============== INTRO ANIMATION =============== */
.intro-screen {
  position: fixed;
  inset: 0;
  background-color: var(--color-black);
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.intro-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.intro-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: introAnim 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes introAnim {
  0%   { opacity: 0; transform: scale(0.9); filter: drop-shadow(0 0 0px rgba(255,255,255,0)); }
  30%  { opacity: 1; transform: scale(1);   filter: drop-shadow(0 0 20px rgba(255,255,255,0.4)); }
  80%  { opacity: 1; transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); }
  100% { opacity: 0; transform: scale(1.1);  filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)); }
}

/* =============== MAIN CONTENT & HEADER =============== */
.main-content { opacity: 0; }

body:not(.loading) .main-content {
  animation: pageEntrance 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* =============== HERO SECTION =============== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: bgPulse 20s infinite alternate linear;
}

@keyframes bgPulse {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, var(--color-black) 100%);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.hero-content { max-width: 800px; }

.hero-overline {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray-2);
  margin-bottom: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
  line-height: 1.1;
}

.ceg-huge {
  font-family: var(--font-hiphop);
  font-size: 11rem;
  letter-spacing: 8px;
  line-height: 0.9;
  text-transform: uppercase;
}

.tour-sub {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  letter-spacing: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #666666;
  margin-top: 15px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.btn-block { width: 100%; }

.btn-white {
  background-color: var(--color-white);
  color: var(--color-black);
  border: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.hero-card-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-glass-card {
  background: rgba(15, 15, 15, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-subtitle {
  font-size: 0.7rem;
  color: var(--color-gray-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.card-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-white);
}

.card-info {
  font-size: 0.9rem;
  color: var(--color-gray-1);
  margin-bottom: 35px;
  line-height: 1.5;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.4);
  padding: 15px 10px;
  border-radius: 8px;
  min-width: 75px;
  border: 1px solid rgba(255,255,255,0.05);
}

.cd-box span {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.cd-box small {
  font-size: 0.6rem;
  color: var(--color-gray-2);
  letter-spacing: 1px;
}

/* =============== EVENTS SECTION =============== */
.events-section {
  padding: 120px 0;
  background-color: var(--color-black);
  position: relative;
}

.events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(circle at 50% 0%, rgba(30,30,30,0.5) 0%, var(--color-black) 70%);
  pointer-events: none;
}

.events-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.events-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--color-gray-2);
  font-size: 1rem;
  margin-bottom: 40px;
}

.search-box {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 18px 25px 18px 50px;
  background: var(--color-dark-2);
  border: 1px solid var(--color-dark-3);
  border-radius: 30px;
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-secondary);
  transition: var(--transition-smooth);
}

.search-box input:focus {
  outline: none;
  border-color: var(--color-gray-3);
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
  background: var(--color-dark-1);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-2);
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: var(--color-gray-2);
  font-size: 1.1rem;
  background: var(--color-dark-1);
  border-radius: 12px;
  margin-top: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(230, 126, 34, 0.15);
  background: transparent;
  width: 100%;
  transition: all 0.3s ease;
}

.event-card:hover {
  background: rgba(230, 126, 34, 0.04);
  border-bottom: 1px dashed #e67e22;
  transform: translateX(6px);
}

.ec-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.ec-date {
  color: #e67e22;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ec-status {
  background: rgba(230, 126, 34, 0.15);
  color: #e67e22;
  font-size: 0.65rem;
  padding: 3px 6px;
  border-radius: 2px;
  display: inline-block;
  width: max-content;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ec-center {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.ec-venue-name {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ec-age-info {
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.ec-age-info.age-18 { color: #d35400; }
.ec-age-info.age-18 .age-underline {
  border-bottom: 1px dashed #d35400;
  padding-bottom: 2px;
  margin-left: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.ec-age-info.age-none { color: var(--color-gray-2); }
.ec-age-info.age-none .age-underline {
  border-bottom: 1px dashed var(--color-gray-2);
  padding-bottom: 2px;
  margin-left: 8px;
  text-transform: uppercase;
}

.ec-note {
  font-size: 0.72rem;
  color: #e0a458;
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.85;
}

.ec-right {
  display: flex;
  justify-content: flex-end;
}

.ec-ticket-link {
  color: #e67e22;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 10px 20px;
  border: 1px solid rgba(230, 126, 34, 0.3);
  background: rgba(230, 126, 34, 0.05);
}

.ec-ticket-link:hover {
  background: #e67e22;
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
}

.ec-ticket-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* =============== ARTIST SECTION =============== */
.artist-section {
  padding: 120px 0 80px;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.artist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.artist-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.artist-photo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.07);
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.artist-photo-frame:hover .artist-photo {
  transform: scale(1.04);
}

.artist-photo-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--color-black), transparent);
  pointer-events: none;
}

.artist-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.artist-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--color-gray-2);
  text-transform: uppercase;
}

.artist-name {
  font-family: var(--font-hiphop);
  font-size: 7rem;
  line-height: 0.9;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.artist-bio {
  font-size: 1rem;
  color: var(--color-gray-1);
  line-height: 1.8;
  max-width: 520px;
}

/* Streaming Cards */
.streaming-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.streaming-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.streaming-card:hover { transform: translateY(-2px); }

.apple-card {
  background: linear-gradient(135deg, #1c1c1e 0%, #2c1a2e 100%);
  border: 1px solid rgba(252, 60, 96, 0.2);
  color: #fc3c60;
  box-shadow: 0 4px 20px rgba(252, 60, 96, 0.1);
}

.apple-card:hover {
  box-shadow: 0 8px 32px rgba(252, 60, 96, 0.25);
  border-color: rgba(252, 60, 96, 0.5);
}

.spotify-card {
  background: linear-gradient(135deg, #111 0%, #0d2b1a 100%);
  border: 1px solid rgba(30, 215, 96, 0.2);
  color: #1ed760;
  box-shadow: 0 4px 20px rgba(30, 215, 96, 0.08);
}

.spotify-card:hover {
  box-shadow: 0 8px 32px rgba(30, 215, 96, 0.22);
  border-color: rgba(30, 215, 96, 0.5);
}

.sc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.sc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.sc-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  opacity: 0.6;
  font-weight: 600;
  text-transform: uppercase;
}

.sc-platform {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

.sc-arrow {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.streaming-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-btn:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.social-btn:hover img { opacity: 1; }

/* Artist Stats */
.artist-stats {
  display: flex;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 30px 0 0;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  margin: 0 30px 0 0;
}

/* =============== DISCOGRAPHY SECTION =============== */
.disco-section {
  padding: 100px 0 120px;
  background: var(--color-black);
  position: relative;
}

.disco-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.disco-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.disco-header {
  text-align: center;
  margin-bottom: 70px;
}

.disco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}

.disco-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disco-card:hover { transform: translateY(-6px); }

.disco-card-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-dark-3);
}

.disco-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(15%);
}

.disco-card:hover .disco-card-cover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.disco-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.badge-album { background: rgba(255,255,255,0.15); color: #fff; }
.badge-ep    { background: rgba(230,126,34,0.3);   color: #e67e22; }
.badge-single{ background: rgba(100,180,255,0.2);  color: #88c8ff; }

.disco-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}

.disco-title {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.disco-meta {
  font-size: 0.75rem;
  color: var(--color-gray-2);
  letter-spacing: 1px;
}

/* =============== FOOTER =============== */
.site-footer {
  padding: 60px 0;
  background-color: var(--color-black);
  border-top: 1px solid var(--color-dark-3);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-gray-3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-center { text-align: center; }
.footer-design  { margin-top: 10px; }

.design-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-2);
  transition: color 0.3s ease;
  font-size: 0.65rem;
  letter-spacing: 3px;
  opacity: 0.7;
}

.design-link:hover {
  color: var(--color-white);
  opacity: 1;
}

.design-img {
  height: 14px;
  width: auto;
  filter: grayscale(100%);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .ceg-huge { font-size: 6rem; }
  .tour-sub  { font-size: 1rem; letter-spacing: 6px; }
  .hero-actions { flex-direction: column; }
  .events-grid  { padding: 0 10px; }
  .hero-glass-card { max-width: 500px; }

  .event-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 25px 0;
    text-align: center;
    transform: none !important;
  }

  .ec-left  { align-items: center; width: 100%; }
  .ec-center {
    padding: 15px 0;
    border-top: 1px dashed rgba(255,255,255,0.1);
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    margin: 10px 0;
    text-align: center;
  }
  .ec-venue-name { white-space: normal; }
  .ec-age-info   { justify-content: center; }
  .ec-right      { justify-content: center; width: 100%; }
  .ec-ticket-link{ width: 100%; justify-content: center; }

  .footer-container { flex-direction: column; gap: 20px; text-align: center; }

  .artist-container {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 600px;
  }
  .artist-name { font-size: 5rem; }
  .artist-photo-wrapper { max-width: 420px; margin: 0 auto; width: 100%; }
}

@media (max-width: 480px) {
  .ceg-huge { font-size: 4.5rem; }
  .tour-sub  { font-size: 0.8rem; letter-spacing: 4px; margin-top: 0; }
  .hero-glass-card { padding: 25px; }
  .countdown { gap: 10px; }
  .cd-box    { min-width: 0; flex: 1; padding: 10px 5px; }
  .cd-box span { font-size: 1.4rem; }
  .cd-box small { font-size: 0.5rem; }

  .artist-name { font-size: 3.5rem; }
  .stat-item   { padding: 0 16px 0 0; }
  .stat-divider{ margin: 0 16px 0 0; }
  .stat-number { font-size: 1.5rem; }

  .disco-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
