/* Components Styles */

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-normal);
  background: transparent;
}
.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  object-fit: cover;
  box-shadow: var(--shadow-gold);
}
.nav-title {
  font-family: var(--font-signature);
  font-size: 1.8rem;
  color: var(--text-bright);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  padding: 8px 10px;
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.menu-toggle:hover {
  background: rgba(245, 176, 65, 0.15);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Mobile Nav Dropdown */
.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10, 11, 18, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link:focus {
  background: rgba(245, 176, 65, 0.12);
  color: var(--accent-gold);
  border-color: rgba(245, 176, 65, 0.3);
}
.mobile-nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   HERO SECTION (Atmospheric Video Header with Rosette Alignment)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: block;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 9, 0.58);
  z-index: 2;
}

/* 1. Dead-Center Rosette Avatar: Anchored at exact (50%, 50%) */
.hero-avatar-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 256px;
  height: 256px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-avatar-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 6px;
  background: rgba(6, 7, 9, 0.45);
  border: 2px solid rgba(245, 176, 65, 0.65);
  box-shadow: 0 0 40px rgba(245, 176, 65, 0.4), 0 0 80px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.hero-avatar-link:hover {
  transform: scale(1.03);
  border-color: #ffd077;
  box-shadow: 0 0 55px rgba(245, 176, 65, 0.65), 0 0 100px rgba(0, 0, 0, 0.95);
}

.hero-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

/* 2. Top Block: Title & Tagline sitting above avatar */
.hero-top-block {
  position: absolute;
  bottom: calc(50% + 144px);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 850px;
  text-align: center;
  z-index: 5;
  pointer-events: auto;
}
.hero-title {
  font-family: 'Cookie', cursive;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(245, 176, 65, 0.45), 0 3px 12px rgba(0, 0, 0, 0.95);
}
.hero-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(240, 242, 248, 0.9);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

/* 3. Bottom Block: Action Buttons sitting below avatar */
.hero-bottom-block {
  position: absolute;
  top: calc(50% + 144px);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 5;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 4. Bottom Footer Bar: Socials & Scroll */
.hero-footer-bar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-socials {
  display: flex;
  gap: 14px;
  list-style: none;
  align-items: center;
}
.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 11, 16, 0.65);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}
.hero-social-link:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.scroll-indicator {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  animation: bounce 2s infinite;
}
.scroll-indicator:hover { color: var(--accent-gold); }

.video-controls-wrap {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-ctrl-btn {
  background: rgba(10, 11, 16, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}
.video-ctrl-btn:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}


/* Responsive Adjustments for Mobile / Small Displays */
@media (max-width: 768px), (max-height: 720px) {
  .hero-avatar-wrap {
    width: clamp(170px, 30vw, 210px);
    height: clamp(170px, 30vw, 210px);
  }
  .hero-top-block {
    bottom: calc(50% + clamp(95px, 16vw, 118px));
  }
  .hero-action-block {
    top: calc(50% + clamp(95px, 16vw, 118px));
    gap: 12px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 0.85rem;
  }
  .hero-footer-bar {
    bottom: 12px;
    gap: 6px;
  }
  .hero-social-link {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ==========================================================================
   SPACECHAKRA SHOWCASE PORTAL
   ========================================================================== */
.spacechakra-banner {
  background: linear-gradient(135deg, #10121d 0%, #0d1525 100%);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.spacechakra-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.spacechakra-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.spacechakra-title-group h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-bright);
}
.spacechakra-title-group p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 6px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: var(--shadow-cyan);
}
.game-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 57.3%; /* ~1.75:1 aspect */
  overflow: hidden;
  background: #000;
}
.game-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}
.game-card:hover .game-thumb {
  transform: scale(1.06);
}
.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.game-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.game-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.game-genre {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 10px;
}
.game-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}
.game-actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   TIP JAR & COFFEE BANNER
   ========================================================================== */
.tip-banner {
  background: linear-gradient(135deg, rgba(245, 176, 65, 0.1) 0%, rgba(245, 176, 65, 0.03) 100%);
  border: 1px solid rgba(245, 176, 65, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 50px 0;
}
.tip-content {
  max-width: 700px;
}
.tip-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}
.tip-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}
.tip-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.tip-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tip-buttons .btn-primary {
  min-width: 220px;
  padding: 14px 28px;
  font-size: 1.05rem;
}
.tip-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.tip-note a,
.print-guide-tips a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
}
.tip-note a:hover,
.print-guide-tips a:hover {
  text-decoration: underline;
}
.print-guide-tips {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   MUSIC PLAYER BAR (Floating & Sleek)
   ========================================================================== */
.music-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 11, 18, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 24px;
  transition: var(--transition-normal);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.7);
}
.player-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.player-track-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 240px;
}
.player-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}
.waveform-bar {
  width: 3px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: height 0.1s ease;
}
.player-waveform.playing .waveform-bar:nth-child(1) { animation: wave 0.8s infinite ease-in-out; }
.player-waveform.playing .waveform-bar:nth-child(2) { animation: wave 1.1s infinite ease-in-out; }
.player-waveform.playing .waveform-bar:nth-child(3) { animation: wave 0.6s infinite ease-in-out; }
.player-waveform.playing .waveform-bar:nth-child(4) { animation: wave 0.9s infinite ease-in-out; }

@keyframes wave {
  0%, 100% { height: 6px; }
  50% { height: 22px; }
}

.player-track-meta h4 {
  font-size: 0.95rem;
  color: var(--text-bright);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.player-track-meta p {
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.player-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-btn:hover { color: var(--accent-gold); transform: scale(1.1); }
.player-btn-play {
  width: 44px;
  height: 44px;
  background: var(--accent-gold);
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(245, 176, 65, 0.4);
}
.player-btn-play:hover {
  background: var(--accent-gold-hover);
  color: #000;
  transform: scale(1.08);
}

.player-timeline-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  max-width: 500px;
}
.player-time { font-size: 0.8rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.player-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 5px;
  background: #252838;
  outline: none;
  cursor: pointer;
}
.player-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 6px var(--accent-gold);
}

.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.player-vol-slider {
  width: 80px;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: #252838;
  outline: none;
}
.player-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-primary);
  cursor: pointer;
}

/* Playlist Modal */
.playlist-drawer {
  position: fixed;
  bottom: 74px;
  right: 24px;
  width: 380px;
  max-height: 450px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 998;
  overflow: hidden;
}
.playlist-drawer.open { display: flex; }
.playlist-header {
  padding: 16px;
  background: #171926;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.playlist-header h4 { font-size: 1rem; color: var(--text-bright); font-weight: 700; }
.playlist-search {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: #131520;
}
.playlist-search input {
  width: 100%;
  background: #090a10;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
}
.playlist-list {
  list-style: none;
  overflow-y: auto;
  flex-grow: 1;
}
.playlist-item {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.playlist-item:hover, .playlist-item.active {
  background: rgba(245, 176, 65, 0.1);
  color: var(--accent-gold);
}

/* ==========================================================================
   POETRY & WORDS SECTION
   ========================================================================== */
.poetry-card {
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(180deg, #11131c 0%, #0d0e16 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.poetry-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: var(--font-poetry);
  font-size: 6rem;
  color: rgba(245, 176, 65, 0.12);
  line-height: 1;
  pointer-events: none;
}
.poem-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
.poem-body {
  font-family: var(--font-poetry);
  font-size: 1.15rem;
  color: #e5e7eb;
  line-height: 2.2;
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   ABOUT & FOOTER
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-bright);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: #040507;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 100px 0; /* extra padding for audio bar */
  text-align: center;
}
.footer-logo {
  font-family: var(--font-signature);
  font-size: 2.5rem;
  color: var(--accent-gold);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin-bottom: 24px;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   INTRO & ARTIST STATEMENT BANNER
   ========================================================================== */
.intro-section {
  padding: 50px 0 20px 0;
  position: relative;
  background: linear-gradient(180deg, #060709 0%, #0c0e16 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 42px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
}
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.intro-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 14px;
  line-height: 1.25;
}
.intro-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 960px;
  margin-bottom: 24px;
}
.intro-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   POETRY TABS & SWITCHER
   ========================================================================== */
.poetry-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
}
.poetry-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}
.poetry-tab-btn:hover {
  color: var(--text-bright);
  border-color: var(--border-light);
}
.poetry-tab-btn.active {
  background: rgba(245, 176, 65, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ==========================================================================
   CONTACT SECTION & HIRE ME
   ========================================================================== */
.contact-section {
  padding: 80px 0 110px 0;
  background: linear-gradient(180deg, #050608 0%, #030406 100%);
  position: relative;
}
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.contact-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.contact-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}
.nav-actions .btn { white-space: nowrap; }
.commission-form-prompt {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}
.commission-form-prompt [hidden] { display: none; }
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #0b0c10;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(245, 176, 65, 0.35);
  transition: var(--transition-normal);
}
.contact-email-btn:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 176, 65, 0.5);
}
.contact-social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.contact-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}
.contact-social-chip:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(245, 176, 65, 0.08);
}

/* ==========================================================================
   RESPONSIVE DESIGN RULES
   ========================================================================== */
@media (max-width: 1240px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 3.6rem; }
  .about-grid { grid-template-columns: 1fr; }
  .spacechakra-banner { padding: 32px 24px; }
  .intro-card { padding: 28px 20px; }
}

@media (max-width: 768px) {
  .nav-brand { min-width: 0; }
  .nav-title { font-size: 1.55rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu-toggle { flex: none; margin-left: 10px; }
  .hero-title { font-size: 2.8rem; }
  .hero-avatar-wrap { width: 170px; height: 170px; }
  .hero-top-block { bottom: calc(50% + 95px); }
  .hero-bottom-block { top: calc(50% + 95px); }
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-buttons .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.88rem;
  }
  .hero-footer-bar { bottom: 78px; }
  .hero-social-link { width: 36px; height: 36px; font-size: 0.95rem; }
  
  .section-title { font-size: 2.1rem; }
  .poetry-card { padding: 36px 20px; }
  .tip-banner { padding: 24px; }
  .tip-actions,
  .tip-buttons { width: 100%; }
  .tip-buttons .btn { flex: 1 1 160px; justify-content: center; text-align: center; }
  .contact-card { padding: 32px 20px; }

  /* Audio player mobile layout */
  .music-player-bar { padding: 8px 12px; }
  .player-container { gap: 10px; }
  .player-track-info { min-width: 0; max-width: 150px; gap: 8px; }
  .player-track-meta h4 { max-width: 110px; font-size: 0.8rem; }
  .player-timeline-wrap { display: none; }
  .player-volume-wrap { display: none; }
  .playlist-drawer {
    right: 8px;
    left: 8px;
    width: auto;
    bottom: 66px;
  }

  /* Video controls on mobile */
  .video-controls-wrap {
    bottom: 78px;
    right: 12px;
  }
  .video-ctrl-btn {
    width: 36px;
    height: 36px;
  }
}

