@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600&display=swap');

:root {
  --bg-light: #0f172a;
  --bg-subtle: #1e293b;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  
  --border-color: #334155;
  --border-active: #64748b;
  
  --primary: #f8fafc;
  --primary-hover: #ffffff;
  --accent: #10b981; /* Emerald Green */
  --accent-glow: rgba(16, 185, 129, 0.2);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-serif: 'Lora', 'Georgia', 'Merriweather', serif;
  --font-display: 'Playfair Display', 'Lora', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 140px;
}

header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
}

h1.logo-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.select-all-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.select-all-btn:hover {
  background: #f0f0f0;
  color: var(--text-main);
}

/* Today Hero Section */
.today-hero-section {
  margin-bottom: 64px;
}

.hero-spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  transition: var(--transition);
}

.hero-spotlight-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-img-col {
  height: 100%;
  min-height: 380px;
}

.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.genre-tag {
  display: inline-block;
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-bottom: 16px;
}

.hero-artist-name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-fact-box {
  background: var(--bg-subtle);
  border-left: 3px solid var(--text-main);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Sponsor Card Styling */
.sponsor-section {
  margin-bottom: 64px;
}

.sponsor-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.sponsor-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.spotify-note-icon {
  font-size: 24px;
}

.sponsor-header h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.sponsor-text {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.spotify-support-btn {
  background: #1a8917;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(26, 137, 23, 0.2);
}

.spotify-support-btn:hover {
  background: #156d12;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 137, 23, 0.3);
}

/* Search Box & Controls */
.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

/* Genre Cards Grid */
.genre-section {
  margin-bottom: 64px;
}

.genre-default-notice {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e2e8f0;
}

.genre-default-notice .notice-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.genre-default-notice strong {
  color: #34d399;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.genre-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.genre-card:hover {
  background: var(--bg-subtle);
  border-color: #cccccc;
}

.genre-card.selected {
  border-color: var(--text-main);
  background: #f4f4f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.genre-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.genre-icon {
  font-size: 26px;
}

.checkbox-pill {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 12px;
}

.genre-card.selected .checkbox-pill {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #fff;
}

.genre-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.genre-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Dropdown & Badge Styles */
.genre-select-dropdown {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23242424' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  transition: var(--transition);
}

.genre-select-dropdown:focus {
  outline: none;
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.selected-badge-pill {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.selected-badge-pill:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #dc2626;
}

/* Magazine Feed Grid */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.magazine-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.magazine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: #cccccc;
}

.card-hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 8px;
}

.card-subtitle {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-trivia-snippet {
  background: var(--bg-subtle);
  border-left: 3px solid var(--text-main);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-link {
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.read-link:hover {
  color: var(--accent);
}

/* Post Detail View (Medium Editorial Style) */
.quiz-wrapper {
  margin-bottom: 40px;
}

.quiz-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.quiz-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

.quiz-step-indicator {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.quiz-question-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.4;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.quiz-option-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.quiz-option-btn:hover:not(:disabled) {
  background: var(--bg-subtle);
  border-color: var(--text-main);
}

.quiz-option-btn.correct {
  background: #dcfce7 !important;
  border-color: #16a34a !important;
  color: #14532d !important;
  font-weight: 700;
}

.quiz-option-btn.incorrect {
  background: #fee2e2 !important;
  border-color: #ef4444 !important;
  color: #7f1d1d !important;
}

.quiz-explanation {
  background: var(--bg-subtle);
  border-left: 3px solid var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 24px;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skip-quiz-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.post-nav {
  margin-bottom: 36px;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--text-main);
}

.post-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.post-hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.post-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.post-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 16px;
}

.post-subtitle-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-block {
  margin-bottom: 48px;
}

.section-block h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.history-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.85;
  color: #e2e8f0;
  white-space: pre-line;
}

.trivia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

.trivia-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 15px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.trivia-icon {
  font-size: 20px;
}

.releases-flex {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.release-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.release-cover {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.links-flex {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.platform-btn:hover {
  background: var(--text-main);
  color: #ffffff;
}

/* Floating Trigger Pill Button (Fixed at Bottom 80px) */
.floating-sub-trigger-wrapper {
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 190;
}

.floating-sub-trigger-btn {
  background: linear-gradient(135deg, #4338ca, #1e1b4b);
  border: 1.5px solid #6366f1;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  opacity: 0.7;
}

.floating-sub-trigger-btn.active {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #34d399;
  color: #000000;
  opacity: 1;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse-trigger 2s infinite;
}

@keyframes pulse-trigger {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.floating-sub-trigger-btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* Sticky Floating Subscribe Bar (Distinct Pop-Out Dark Violet Indigo Card) */
.subscribe-bar {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 960px;
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  border: 1.5px solid #6366f1;
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.35), 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Subscription Mode Option Cards */
.sub-options-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  width: 100%;
}

.sub-mode-option {
  background: rgba(15, 23, 42, 0.6);
  border: 1.5px solid #334155;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  user-select: none;
}

.sub-mode-option:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: #6366f1;
}

.sub-mode-option.active {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 0 1px #10b981;
}

.sub-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.close-bar-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-bar-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.sub-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
  white-space: nowrap;
}

.count-badge {
  background: #10b981;
  color: #000000;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
}

.sub-form {
  display: flex;
  flex: 1;
  gap: 12px;
  min-width: 320px;
}

.sub-form input {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #4338ca;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  flex: 1;
}

.sub-form input::placeholder {
  color: #a5b4fc;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #4338ca;
  border-radius: var(--radius-md);
  padding: 4px 10px;
}

.captcha-question {
  font-size: 13px;
  font-weight: 700;
  color: #818cf8;
  white-space: nowrap;
}

.sub-form input:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3);
}

.submit-btn {
  background: #10b981;
  color: #000000;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.submit-btn:hover {
  background: #34d399;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Footer Attribution Styling */
.app-footer {
  text-align: center;
  padding: 40px 0 60px;
  border-top: 1px solid var(--border-color);
  margin-top: 64px;
  color: var(--text-muted);
  font-size: 14px;
}

.attribution-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.attribution-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Toast Alerts */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #1e293b;
  border: 1px solid #10b981;
  color: #f8fafc;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 300;
  transform: translateY(-20px);
  opacity: 0;
  font-weight: 600;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .container {
    padding: 24px 16px 140px;
  }

  h1.logo-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.05rem;
  }

  .hero-spotlight-card {
    grid-template-columns: 1fr;
  }

  .hero-img-col {
    min-height: 240px;
    height: 240px;
  }

  .hero-content-col {
    padding: 24px;
  }

  .hero-artist-name {
    font-size: 2rem;
  }

  /* Fixed Bottom Sticky CTA Bar on Mobile */
  .floating-sub-trigger-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    z-index: 190;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
  }

  .floating-sub-trigger-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 800;
  }

  .subscribe-bar {
    width: calc(100% - 24px);
    bottom: 16px;
    padding: 16px 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .sub-form {
    flex-direction: column;
    gap: 10px;
  }

  .sub-form input {
    height: 46px;
    font-size: 15px;
  }

  .submit-btn {
    height: 48px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .genre-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .genre-card {
    padding: 14px;
  }

  .post-detail {
    padding: 20px;
  }

  .post-headline {
    font-size: 2rem;
  }
}
