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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  color: #fff;
  overflow-x: hidden;
}

/* ========================================
   BACKGROUND VIDEO
   ======================================== */

.video-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* ========================================
   ENTER OVERLAY
   ======================================== */

#enterOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: opacity 1.2s ease;
}

#enterOverlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
}

.overlay-darken {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.intro-logo {
  position: relative;
  z-index: 2;
  width: 260px;
  margin-bottom: 18px;
}

.enter-button {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  background: #ff8a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 120, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enter-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 120, 0, 0.7);
}

/* ========================================
   PAGE CONTENT
   ======================================== */

.page-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 50px 7vw 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.brand h1 {
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.brand p {
  margin-top: 8px;
  max-width: 520px;
  opacity: 0.85;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 999px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: #ff8a00;
  border-color: transparent;
  box-shadow: 0 2px 16px rgba(255, 138, 0, 0.3);
}

.btn.primary:hover {
  background: #ff9b2a;
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.4);
}

/* ========================================
   CROWN RADIO — FIXED BOTTOM-RIGHT
   ======================================== */

.radio-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
  font-family: 'Montserrat', sans-serif;
}

.radio-panel {
  width: 320px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 138, 0, 0.06);
}

/* Panel header */
.radio-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.radio-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-brand-dot {
  width: 7px;
  height: 7px;
  background: #ff8a00;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 138, 0, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.radio-brand-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

/* Now playing */
.radio-now-playing {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.radio-art {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.radio-art-inner {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff8a00, #e65c00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}

.radio-art-ring {
  position: absolute;
  inset: -3px;
  border-radius: 15px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  pointer-events: none;
}

.radio-track-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.radio-track-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Progress */
.radio-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.radio-time {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  min-width: 30px;
  font-variant-numeric: tabular-nums;
}

.radio-seek-wrap {
  flex: 1;
}

/* Range inputs */
.radio-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.radio-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: #ff8a00;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 6px rgba(255, 138, 0, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.radio-range::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.radio-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #ff8a00;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 6px rgba(255, 138, 0, 0.4);
  cursor: pointer;
}

/* Controls */
.radio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.radio-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.radio-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.radio-btn-play {
  width: 44px;
  height: 44px;
  background: #ff8a00;
  color: #fff;
  box-shadow: 0 2px 14px rgba(255, 138, 0, 0.3);
}

.radio-btn-play:hover {
  background: #ff9b2a;
  color: #fff;
  box-shadow: 0 2px 20px rgba(255, 138, 0, 0.45);
}

/* Volume */
.radio-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.radio-range-vol {
  height: 2px;
}

/* Playlist */
.radio-playlist-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

.radio-playlist {
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.radio-playlist::-webkit-scrollbar {
  width: 3px;
}

.radio-playlist::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.radio-playlist-item {
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s ease;
  letter-spacing: 0.02em;
}

.radio-playlist-item:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.radio-playlist-item.active {
  color: #ff8a00;
  font-weight: 600;
  background: rgba(255, 138, 0, 0.06);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 600px) {
  .brand h1 {
    font-size: 1.6rem;
  }

  .page-content {
    padding: 30px 5vw 100px;
  }

  .radio-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .radio-panel {
    width: 100%;
  }
}
