/* ==========================================================================
   ANGYALSZÁMOK - ETHEREAL AURA & CELESTIAL STARLIGHT DESIGN SYSTEM
   Optimized for Spiritual, Tarot, Manifestation & Numerology Audience
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Ethereal Velvet Base */
  --bg-deep: #090a18;
  --bg-card: rgba(20, 18, 44, 0.72);
  --bg-card-hover: rgba(30, 27, 66, 0.88);
  --bg-card-top: rgba(35, 30, 75, 0.6);
  
  /* Delicate Borders & Iridescent Glows */
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-starlight: rgba(246, 215, 155, 0.28);
  --border-rose: rgba(255, 182, 193, 0.35);
  
  /* Palette: Warm Gold, Rose Quartz & Mystic Amethyst */
  --gold-glow: #f6d79b;
  --gold-warm: #ecc272;
  --gold-soft: #fce7b2;
  --gold-dark: #b88628;
  --gold-gradient: linear-gradient(135deg, #fff2cc 0%, #f6d79b 45%, #e2b45d 100%);
  
  --rose-quartz: #ffb6c1;
  --rose-glow: #ff85a2;
  --rose-gradient: linear-gradient(135deg, #ffe4e9 0%, #ffb6c1 50%, #f77294 100%);

  --lavender-glow: #c8a2c8;
  --amethyst-glow: #b993ff;
  --amethyst-gradient: linear-gradient(135deg, #eadcff 0%, #b993ff 50%, #8c52ff 100%);

  --celestial-cyan: #7ce8ff;
  --celestial-opal: linear-gradient(135deg, #d4f8ff 0%, #7ce8ff 50%, #2bd0d0 100%);

  --emerald-aura: #80ffd2;
  --emerald-gradient: linear-gradient(135deg, #d6ffea 0%, #80ffd2 50%, #00d287 100%);

  /* Text colors */
  --text-main: #fcfcff;
  --text-soft: #d3d7ec;
  --text-muted: #a3a9c7;
  --text-dim: #717799;

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  
  /* Shadows & Aura Glows */
  --shadow-aura-gold: 0 12px 35px -5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(246, 215, 155, 0.2);
  --shadow-aura-rose: 0 14px 40px -5px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 182, 193, 0.25);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  
  /* Dreamy Living Aura Mesh Background */
  background-image: 
    radial-gradient(circle at 18% 18%, rgba(255, 160, 190, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(246, 215, 155, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 55%, rgba(185, 147, 255, 0.13) 0%, transparent 48%),
    radial-gradient(circle at 25% 85%, rgba(124, 232, 255, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 80% 88%, rgba(255, 182, 193, 0.12) 0%, transparent 42%);
  background-attachment: fixed;
  background-size: 100% 100%;
}

/* Living Aura Ambient Animation */
@keyframes auraPulse {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  50% { transform: scale(1.08) translateY(-15px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 0.8; }
}

/* Background Cosmic Starlight Canvas */
.star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.main-content {
  flex: 1;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  font-weight: 700;
  word-break: break-word;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(246, 215, 155, 0.35));
}

.rose-text {
  background: var(--rose-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 182, 193, 0.35));
}

.purple-text {
  background: var(--amethyst-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(185, 147, 255, 0.35));
}

/* Header & Navigation */
.celestial-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 26, 0.82);
  border-bottom: 1px solid rgba(246, 215, 155, 0.15);
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.brand-logo span.sparkle {
  color: var(--gold-glow);
  filter: drop-shadow(0 0 10px rgba(246, 215, 155, 0.8));
  font-size: 1.45rem;
  animation: auraPulse 3s ease-in-out infinite;
}

.desktop-nav {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(246, 215, 155, 0.15);
}

.nav-links a.nav-highlight {
  border: 1px solid rgba(246, 215, 155, 0.4);
  color: var(--gold-glow);
  background: rgba(246, 215, 155, 0.08);
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.15);
}

.nav-links a.nav-highlight:hover {
  background: rgba(246, 215, 155, 0.2);
  box-shadow: 0 0 20px rgba(246, 215, 155, 0.35);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 215, 155, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(246, 215, 155, 0.1);
}

.menu-icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gold-glow);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-menu-btn.open .menu-icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.open .menu-icon-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open .menu-icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(8, 9, 22, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(246, 215, 155, 0.18);
  padding: 1.5rem 1.25rem calc(3rem + 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-drawer-inner {
  max-width: 500px;
  margin: 0 auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-tag {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
  background: rgba(246, 215, 155, 0.2);
  border-color: var(--gold-glow);
  color: var(--gold-glow);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.mobile-drawer-links a span.drawer-arrow {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dim);
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-drawer-links a:hover span.drawer-arrow,
.mobile-drawer-links a.active span.drawer-arrow {
  color: var(--gold-glow);
  transform: translateX(3px);
}

.mobile-drawer-links a.active,
.mobile-drawer-links a:hover {
  background: rgba(246, 215, 155, 0.14);
  border-color: rgba(246, 215, 155, 0.45);
  color: var(--gold-glow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(246, 215, 155, 0.15);
}

.mobile-drawer-links a.highlight-drawer-link {
  border-color: rgba(246, 215, 155, 0.35);
  background: linear-gradient(135deg, rgba(246, 215, 155, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--gold-glow);
}

body.mobile-nav-open {
  overflow: hidden !important;
}

body.mobile-nav-open .cosmic-fab-btn,
body.mobile-nav-open .mobile-bottom-nav {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(25px) !important;
  transition: all 0.25s ease !important;
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: rgba(12, 11, 28, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(246, 215, 155, 0.2);
  justify-content: space-around;
  align-items: center;
  padding: 0.55rem 0.25rem calc(0.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  gap: 0.2rem;
  transition: var(--transition-smooth);
  flex: 1;
  text-align: center;
}

.bottom-icon {
  font-size: 1.3rem;
  line-height: 1;
  transition: var(--transition-smooth);
}

.bottom-nav-item.active,
.bottom-nav-item:active {
  color: var(--gold-glow);
}

.bottom-nav-item.active .bottom-icon {
  transform: scale(1.18);
  filter: drop-shadow(0 0 8px rgba(246, 215, 155, 0.7));
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 182, 193, 0.12);
  border: 1px solid rgba(246, 215, 155, 0.35);
  color: var(--gold-glow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  box-shadow: 0 0 22px rgba(255, 182, 193, 0.18);
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Search Bar Box */
.search-box-wrapper {
  max-width: 620px;
  margin: 0 auto 2rem;
  position: relative;
  width: 100%;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(22, 19, 48, 0.88);
  border: 1px solid rgba(246, 215, 155, 0.4);
  border-radius: var(--radius-xl);
  padding: 0.45rem 0.5rem 0.45rem 1.35rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(246, 215, 155, 0.2);
  transition: var(--transition-smooth);
  width: 100%;
}

.search-box:focus-within {
  border-color: var(--gold-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 182, 193, 0.35);
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.02rem;
  color: #fff;
  font-family: var(--font-sans);
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.search-box button {
  background: var(--gold-gradient);
  color: #0d0c24;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(246, 215, 155, 0.35);
}

.search-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 215, 155, 0.55);
}

/* Filter Pills */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
  width: 100%;
}

.filter-pill {
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.filter-pill span.count {
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  color: #fff;
}

.filter-pill:hover,
.filter-pill.active {
  color: #fff;
  background: rgba(246, 215, 155, 0.15);
  border-color: rgba(246, 215, 155, 0.5);
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.2);
}

.filter-pill.active span.count {
  background: rgba(246, 215, 155, 0.35);
  color: var(--gold-glow);
}

/* Daily Banner Highlight */
.daily-banner {
  background: linear-gradient(135deg, rgba(38, 26, 68, 0.88) 0%, rgba(22, 20, 56, 0.85) 100%);
  border: 1px solid rgba(246, 215, 155, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 182, 193, 0.15);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.daily-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), var(--rose-glow), transparent);
}

.daily-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(246, 215, 155, 0.2) 0%, rgba(255, 182, 193, 0.1) 40%, transparent 70%);
  pointer-events: none;
}

.daily-banner-info {
  flex: 1;
  text-align: left;
}

.daily-tag {
  color: var(--gold-glow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.daily-banner h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  margin-bottom: 0.4rem;
  color: #fff;
}

.daily-banner p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.daily-number-pill {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-glow);
  letter-spacing: 0.08em;
  padding: 0.5rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(246, 215, 155, 0.12);
  border: 1px solid rgba(246, 215, 155, 0.4);
  text-shadow: 0 0 15px rgba(246, 215, 155, 0.5);
  box-shadow: 0 0 20px rgba(246, 215, 155, 0.2);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.daily-number-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(246, 215, 155, 0.4);
}

/* Grid of Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.65rem;
  margin-bottom: 4.5rem;
  width: 100%;
}

/* Angel Number Card */
.angel-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Delicate Iridescent Top Border */
.angel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 215, 155, 0.4), rgba(255, 182, 193, 0.4), transparent);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.angel-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(246, 215, 155, 0.45);
  box-shadow: 0 18px 45px -10px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 182, 193, 0.22), 0 0 15px rgba(246, 215, 155, 0.2);
}

.angel-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--gold-glow), var(--rose-glow), transparent);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  gap: 0.5rem;
}

.number-badge {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 12px rgba(246, 215, 155, 0.4));
}

.angel-card:hover .number-badge {
  filter: drop-shadow(0 0 20px rgba(246, 215, 155, 0.7));
  transform: scale(1.03);
}

.category-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #fff;
  line-height: 1.35;
}

.card-meaning {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.frequency-tag {
  font-size: 0.78rem;
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.card-arrow {
  color: var(--text-dim);
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.angel-card:hover .card-arrow {
  color: var(--gold-glow);
  transform: translateX(5px);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

/* Detailed Show View */
.show-header {
  text-align: center;
  padding: 3rem 0 2rem;
  width: 100%;
}

.giant-number-display {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(246, 215, 155, 0.55));
  margin-bottom: 0.85rem;
  display: inline-block;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 25px rgba(246, 215, 155, 0.4)) drop-shadow(0 0 50px rgba(255, 182, 193, 0.2)); }
  100% { filter: drop-shadow(0 0 45px rgba(246, 215, 155, 0.75)) drop-shadow(0 0 80px rgba(255, 182, 193, 0.4)); }
}

.show-title {
  font-size: clamp(1.45rem, 4.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #fff;
  padding: 0 0.5rem;
}

.show-vibration {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  padding: 0 0.5rem;
  line-height: 1.7;
}

.meta-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.meta-pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
}

.meta-pill.highlight {
  background: rgba(246, 215, 155, 0.12);
  border-color: rgba(246, 215, 155, 0.4);
  color: var(--gold-glow);
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.2);
}

/* Thematic Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 215, 155, 0.3), rgba(255, 182, 193, 0.3), transparent);
}

.detail-card:hover {
  border-color: rgba(246, 215, 155, 0.35);
  background: rgba(28, 25, 60, 0.85);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 182, 193, 0.18);
}

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.icon-box.gold { background: rgba(246, 215, 155, 0.15); color: var(--gold-glow); border-color: rgba(246, 215, 155, 0.4); }
.icon-box.rose { background: rgba(255, 182, 193, 0.15); color: var(--rose-glow); border-color: rgba(255, 182, 193, 0.4); }
.icon-box.emerald { background: rgba(128, 255, 210, 0.15); color: var(--emerald-aura); border-color: rgba(128, 255, 210, 0.4); }
.icon-box.purple { background: rgba(185, 147, 255, 0.15); color: var(--amethyst-glow); border-color: rgba(185, 147, 255, 0.4); }

.detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.detail-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* Affirmation Card */
.affirmation-box {
  background: linear-gradient(135deg, rgba(46, 30, 72, 0.95) 0%, rgba(26, 22, 58, 0.96) 100%);
  border: 1px solid rgba(246, 215, 155, 0.45);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 182, 193, 0.22);
  position: relative;
  width: 100%;
}

.affirmation-box::before {
  content: '✦ ✧ ✦';
  display: block;
  font-size: 1rem;
  color: var(--gold-glow);
  letter-spacing: 0.5em;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.affirmation-tag {
  color: var(--gold-glow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.affirmation-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.95rem);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1.35rem;
  padding: 0 0.5rem;
}

.copy-affirmation-btn {
  background: rgba(246, 215, 155, 0.15);
  color: var(--gold-glow);
  border: 1px solid rgba(246, 215, 155, 0.4);
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.15);
}

.copy-affirmation-btn:hover {
  background: rgba(246, 215, 155, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(246, 215, 155, 0.35);
}

/* Mystic Card Draw (Interactive Daily) */
.draw-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0 4.5rem;
  width: 100%;
}

.mystic-card-stage {
  perspective: 1200px;
  width: min(310px, 86vw);
  height: 460px;
  margin: 1.75rem auto 2.25rem;
}

.mystic-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border-radius: var(--radius-xl);
}

.mystic-card.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid rgba(246, 215, 155, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 182, 193, 0.3);
  overflow-y: auto;
}

.card-back {
  background: linear-gradient(135deg, #18153d 0%, #24194a 50%, #100e2b 100%);
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.sacred-geometry {
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(246, 215, 155, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateGeometry 25s linear infinite;
  box-shadow: 0 0 25px rgba(246, 215, 155, 0.2);
}

.sacred-geometry::before {
  content: '';
  position: absolute;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 182, 193, 0.6);
  transform: rotate(45deg);
}

.sacred-geometry::after {
  content: '✦';
  font-size: 2.4rem;
  color: var(--gold-glow);
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

@keyframes rotateGeometry {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.card-front {
  background: linear-gradient(145deg, #1c1742 0%, #2b1f58 100%);
  transform: rotateY(180deg);
  text-align: center;
}

.card-front-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-glow);
  text-shadow: 0 0 25px rgba(246, 215, 155, 0.6);
  line-height: 1.1;
}

.card-front-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0.5rem 0;
}

.card-front-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

/* Calculator View */
.calculator-card {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(246, 215, 155, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-aura-gold);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  width: 100%;
}

.calc-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.75rem;
  text-align: left;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.55rem;
}

.date-input-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.form-group input[type="date"] {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  background: rgba(14, 12, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 16px; /* Prevents auto-zoom in iOS Safari */
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-smooth);
  color-scheme: dark;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 48px;
}

/* Fix iOS Safari date text rendering */
.form-group input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.4em;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Fix calendar indicator */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.8;
  filter: invert(0.9);
  padding: 0;
  margin: 0;
}

.form-group input[type="date"]:focus {
  border-color: var(--gold-glow);
  box-shadow: 0 0 18px rgba(246, 215, 155, 0.3);
}

.calc-submit-btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.primary-btn {
  background: var(--gold-gradient);
  color: #0d0c24;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.88rem 1.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(246, 215, 155, 0.35);
  min-height: 48px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(246, 215, 155, 0.5);
}

.calc-result-box {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 215, 155, 0.4);
  text-align: left;
  box-shadow: 0 0 25px rgba(255, 182, 193, 0.15);
}

.calc-result-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-glow);
  line-height: 1;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 15px rgba(246, 215, 155, 0.5);
}

/* Info Section (Guide) */
.guide-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.25rem;
  width: 100%;
}

.guide-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-smooth);
}

.guide-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 215, 155, 0.3);
  transform: translateY(-3px);
}

.guide-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guide-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Footer */
.celestial-footer {
  margin-top: auto;
  border-top: 1px solid rgba(246, 215, 155, 0.15);
  background: rgba(7, 7, 20, 0.94);
  padding: 3rem 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  width: 100%;
}

.footer-quote {
  font-family: var(--font-serif);
  color: var(--gold-glow);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  padding: 0 0.5rem;
  text-shadow: 0 0 10px rgba(246, 215, 155, 0.3);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .daily-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.6rem;
  }
  .daily-banner-info {
    text-align: center;
  }
  .daily-tag {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  .main-content {
    padding-bottom: 85px;
  }
  .celestial-footer {
    padding-bottom: calc(165px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  .hero-section {
    padding: 2.75rem 0 1.5rem;
  }
  .search-box-wrapper {
    margin-bottom: 1.5rem;
  }
  .search-box {
    padding: 0.35rem 0.4rem 0.35rem 1.1rem;
  }
  .search-box input {
    font-size: 0.95rem;
  }
  .search-box button {
    padding: 0.7rem 1.1rem;
    font-size: 0.88rem;
  }
  
  /* Horizontal scrollable category chips */
  .filter-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.25rem 0 0.75rem 0;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-container::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    flex-shrink: 0;
    font-size: 0.84rem;
    padding: 0.48rem 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .angel-card {
    padding: 1.5rem 1.25rem;
  }
  .number-badge {
    font-size: 2rem;
  }
  .card-title {
    font-size: 1.1rem;
  }

  /* Show View Mobile */
  .show-header {
    padding: 2rem 0 1.25rem;
  }
  .detail-card {
    padding: 1.45rem 1.25rem;
  }
  .detail-card h3 {
    font-size: 1.15rem;
  }
  .affirmation-box {
    padding: 1.85rem 1.25rem;
  }
  .copy-affirmation-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  /* Daily Card Draw Mobile */
  .mystic-card-stage {
    width: min(290px, 85vw);
    height: 430px;
    margin: 1.25rem auto 1.75rem;
  }
  .card-face {
    padding: 1.5rem 1.2rem;
  }
  .card-front-number {
    font-size: 2.6rem;
  }
  .card-front-title {
    font-size: 1.05rem;
  }
  .sacred-geometry {
    width: 125px;
    height: 125px;
  }
  .sacred-geometry::before {
    width: 85px;
    height: 85px;
  }

  /* Calculator Mobile */
  .calculator-card {
    padding: 1.5rem 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
  }
  .form-group input[type="date"] {
    padding: 0.75rem 0.85rem;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .calc-submit-btn {
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    width: 100% !important;
    box-sizing: border-box;
  }
  .calc-result-box {
    padding: 1.35rem 1rem;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .calc-result-num {
    font-size: 2.4rem;
  }
}

/* ==========================================================================
   Celestial Breadcrumb Navigation
   ========================================================================== */
.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 1.5rem;
  width: 100%;
}

.celestial-breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.15rem;
  background: rgba(15, 18, 37, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 15px rgba(246, 215, 155, 0.08);
  font-size: 0.85rem;
  max-width: 95vw;
  overflow-x: auto;
}

.celestial-breadcrumb ol,
.celestial-breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.celestial-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.celestial-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.celestial-breadcrumb a:hover {
  color: var(--gold-glow);
  text-shadow: 0 0 10px rgba(246, 215, 155, 0.5);
  transform: translateY(-1px);
}

.celestial-breadcrumb .sep {
  color: rgba(246, 215, 155, 0.4);
  font-size: 0.88rem;
  user-select: none;
}

.celestial-breadcrumb .current {
  color: var(--gold-glow);
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   SEO Enhancements: FAQ Accordions & Social Share Bar
   ========================================================================== */
.faq-section,
.category-faq-section {
  margin-top: 4.5rem;
  margin-bottom: 3.5rem;
  text-align: left;
  scroll-margin-top: 100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.faq-header p {
  color: var(--text-soft);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
}

.faq-list,
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: rgba(15, 18, 37, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(246, 215, 155, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(246, 215, 155, 0.12);
  background: linear-gradient(180deg, rgba(28, 24, 56, 0.9) 0%, rgba(15, 12, 33, 0.95) 100%);
}

.faq-summary,
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.65rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.08rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  list-style: none;
  list-style-type: none;
  gap: 1rem;
  transition: all 0.2s ease;
}

.faq-summary::-webkit-details-marker,
.faq-question::-webkit-details-marker {
  display: none !important;
}

.faq-summary::marker,
.faq-question::marker {
  display: none !important;
}

.faq-summary::after,
.faq-question::after {
  content: '✦';
  font-size: 1.05rem;
  color: var(--gold-glow);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-summary::after,
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: #f472b6;
}

.faq-summary:hover,
.faq-question:hover {
  color: var(--gold-glow);
}

.faq-item[open] .faq-summary span,
.faq-item[open] .faq-question span {
  color: var(--gold-glow);
}

.faq-content,
.faq-answer {
  padding: 0 1.65rem 1.5rem 1.65rem;
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.15rem;
}

.faq-content strong,
.faq-answer strong {
  color: #fff;
}


/* Social Sharing Bar */
.social-share-box {
  margin: 3rem auto 1.5rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(246, 215, 155, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 820px;
}

.social-share-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-glow);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.social-share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.share-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.share-btn.pinterest:hover {
  background: #e60023;
  border-color: #e60023;
}

.share-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.share-btn.twitter:hover {
  background: #000;
  border-color: #555;
}

.share-btn.copy-link:hover {
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-deep));
  color: #110e24;
  border-color: var(--gold-glow);
}

/* ==========================================================================
   Google #1 Ranking Enhancements: E-E-A-T, Featured Snippet Box & Table of Contents
   ========================================================================== */
.eeat-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

.featured-snippet-box {
  background: linear-gradient(135deg, rgba(38, 26, 68, 0.75) 0%, rgba(22, 20, 56, 0.85) 100%);
  border: 1px solid rgba(246, 215, 155, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2.5rem auto 2rem;
  max-width: 860px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(246, 215, 155, 0.12);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.featured-snippet-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-glow), var(--rose-glow));
}

.featured-snippet-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-glow);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.featured-snippet-text {
  color: #f0edf6;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.featured-snippet-text em {
  color: var(--gold-soft);
  font-style: italic;
}

.featured-snippet-text strong {
  color: #fff;
}

/* In-page Table of Contents for Site Links */
.toc-nav {
  margin: 1.5rem auto 3rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  max-width: 860px;
  text-align: left;
}

.toc-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-glow);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.toc-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9999px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.toc-links a:hover {
  background: rgba(246, 215, 155, 0.15);
  border-color: rgba(246, 215, 155, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

/* Topic Clusters Bar on Homepage for SEO Authority */
.cluster-bar {
  margin: 1.5rem auto 3rem;
  padding: 1.4rem 1.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  text-align: left;
}

.cluster-bar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-glow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.cluster-col-title {
  font-size: 0.84rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cluster-col-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cluster-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cluster-tag:hover {
  background: rgba(246, 215, 155, 0.15);
  border-color: rgba(246, 215, 155, 0.35);
  color: var(--gold-glow);
  transform: translateY(-1px);
}

/* ==========================================================================
   24 Tüköróra & Fordított Órák Stílusok
   ========================================================================== */
.quick-jump-container {
  margin: 2.25rem auto 1.5rem;
  max-width: 1100px;
  background: rgba(15, 18, 37, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(246, 215, 155, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.quick-jump-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-jump-label {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-jump-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.quick-jump-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.jump-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  transition: all 0.25s ease;
}

.jump-pill:hover {
  background: rgba(246, 215, 155, 0.2);
  border-color: var(--gold-glow);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 215, 155, 0.3);
}

.jump-pill.highlight-pill {
  background: rgba(147, 112, 219, 0.18);
  border-color: rgba(147, 112, 219, 0.4);
  color: #e9d5ff;
  font-family: var(--font-body);
  font-size: 0.84rem;
}

.jump-pill.highlight-pill:hover {
  background: rgba(147, 112, 219, 0.3);
  border-color: #d8b4fe;
  box-shadow: 0 4px 15px rgba(147, 112, 219, 0.35);
}

.mirror-hours-section {
  padding: 3rem 0;
}

.mirror-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.85rem;
  margin-top: 2.5rem;
}

.mirror-card {
  background: rgba(15, 18, 37, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 110px;
  min-height: 480px;
}

.mirror-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  transition: all 0.3s ease;
}

.mirror-card.theme-gold::before { background: var(--gold-gradient); }
.mirror-card.theme-cyan::before { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.mirror-card.theme-purple::before { background: linear-gradient(90deg, #c084fc, #9333ea); }
.mirror-card.theme-rose::before { background: linear-gradient(90deg, #fb7185, #e11d48); }
.mirror-card.theme-emerald::before { background: linear-gradient(90deg, #34d399, #059669); }

.mirror-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 215, 155, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(246, 215, 155, 0.12);
}

.mirror-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.time-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-badge {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(246, 215, 155, 0.5));
}

.time-sparkle {
  color: var(--gold-glow);
  font-size: 1.15rem;
}

.angel-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.mirror-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.mirror-vibration {
  font-size: 0.86rem;
  color: var(--gold-glow);
  margin-bottom: 1.1rem;
  font-style: italic;
}

.mirror-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mirror-meaning {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.mirror-aspects {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.aspect-box {
  background: rgba(8, 10, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.aspect-box.love-aspect {
  border-left-color: #f472b6;
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.08), rgba(8, 10, 22, 0.65));
}

.aspect-box.career-aspect {
  border-left-color: #38bdf8;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.08), rgba(8, 10, 22, 0.65));
}

.aspect-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.love-aspect .aspect-title { color: #f472b6; }
.career-aspect .aspect-title { color: #38bdf8; }

.mirror-card-footer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-celestial-sm {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.15rem;
  background: rgba(246, 215, 155, 0.09);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: var(--radius-sm);
  color: var(--gold-glow);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-celestial-sm:hover {
  background: rgba(246, 215, 155, 0.22);
  border-color: var(--gold-glow);
  color: #fff;
  box-shadow: 0 4px 16px rgba(246, 215, 155, 0.25);
  transform: translateY(-1px);
}

/* Fordított Tükörórák Táblázat */
.inverted-hours-section {
  padding: 3.5rem 0;
  scroll-margin-top: 100px;
}

.inverted-table-wrap {
  margin-top: 2.25rem;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.celestial-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.celestial-table th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-glow);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.celestial-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  vertical-align: middle;
}

.celestial-table tr:hover td {
  background: rgba(255, 255, 255, 0.035);
}

.table-time-pill {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  background: rgba(147, 112, 219, 0.2);
  border: 1px solid rgba(147, 112, 219, 0.45);
  border-radius: 8px;
  color: #f3e8ff;
  letter-spacing: 0.04em;
}

.table-link {
  color: var(--gold-glow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.table-link:hover {
  text-decoration: underline;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.table-cosmic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.advice-text {
  font-style: italic;
  color: #cbd5e1;
}

/* Responsive Table: Mobile Card Mode */
@media (max-width: 768px) {
  .inverted-table-wrap {
    overflow-x: visible !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .celestial-table {
    display: block !important;
    width: 100% !important;
  }
  
  .celestial-table thead {
    display: none !important;
  }
  
  .celestial-table tbody {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 0 !important;
  }

  .celestial-table tbody tr {
    display: block !important;
    background: rgba(15, 18, 37, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--radius-md) !important;
    padding: 1.25rem 1.4rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.25s ease !important;
  }

  .celestial-table tbody tr:hover {
    border-color: rgba(246, 215, 155, 0.35) !important;
    transform: translateY(-2px) !important;
  }
  
  .celestial-table td {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    position: relative !important;
    padding: 0.75rem 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    text-align: left !important;
  }
  
  .celestial-table td:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-top: 0.45rem !important;
  }
  
  .celestial-table td::before {
    content: attr(data-label) !important;
    font-family: var(--font-heading) !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.07em !important;
    color: var(--gold-glow) !important;
  }

  .quick-jump-container {
    padding: 1.15rem;
  }

  .quick-jump-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-jump-chips .jump-pill {
    font-size: 0.82rem;
    padding: 0.35rem 0.7rem;
  }

  .mirror-hours-page {
    padding-bottom: 5.5rem;
  }
}



/* ==========================================================================
   Oldaltérkép (HTML Sitemap) Stílusok
   ========================================================================== */
.sitemap-page {
  padding-bottom: 4rem;
}

.sitemap-section {
  margin-top: 2.5rem;
}

.sitemap-box {
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.sitemap-box-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.main-hubs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}

.main-hubs-list li a {
  display: block;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.main-hubs-list li a:hover {
  background: rgba(246, 215, 155, 0.08);
  border-color: rgba(246, 215, 155, 0.3);
  transform: translateY(-2px);
}

.main-hubs-list strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-glow);
  margin-bottom: 0.35rem;
}

.main-hubs-list span {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.sitemap-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.sitemap-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.sitemap-cat-title a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.sitemap-cat-title a:hover {
  color: var(--gold-glow);
}

.cat-count-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  background: rgba(246, 215, 155, 0.12);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: 12px;
  color: var(--gold-glow);
  font-weight: 700;
}

.sitemap-cat-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sitemap-cat-main-link {
  display: inline-block;
  color: var(--gold-glow);
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.sitemap-cat-main-link:hover {
  background: rgba(246, 215, 155, 0.15);
  border-color: var(--gold-glow);
}

.sitemap-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.sitemap-num-tag {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.sitemap-num-tag strong {
  color: #fff;
  font-family: var(--font-serif);
}

.sitemap-num-tag:hover {
  background: rgba(246, 215, 155, 0.15);
  border-color: rgba(246, 215, 155, 0.35);
  color: var(--gold-glow);
  transform: translateY(-1px);
}

/* ==========================================================================
   Rich Footer 4 Oszlopos Stílus
   ========================================================================== */
.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand .sparkle {
  color: var(--gold-glow);
}

.footer-col-desc {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-list li a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.2s ease;
}

.footer-links-list li a:hover {
  color: var(--gold-glow);
  padding-left: 4px;
}

.footer-numbers-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-numbers-pill-cloud a {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-numbers-pill-cloud a:hover {
  background: rgba(246, 215, 155, 0.2);
  border-color: var(--gold-glow);
  color: var(--gold-glow);
  transform: translateY(-2px);
}

.footer-trust-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-bottom-bar {
  padding-top: 2.25rem;
  text-align: center;
}

.footer-quote-wrap {
  max-width: 680px;
  margin: 0 auto 1.35rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(246, 215, 155, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-quote-sparkle {
  color: var(--gold-glow);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.footer-quote-wrap .footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--gold-glow);
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 0 12px rgba(246, 215, 155, 0.25);
}

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.15rem;
}

.trust-chip {
  font-size: 0.76rem;
  color: var(--text-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.02em;
}

.footer-bottom-bar .footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 600px) {
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }
  .footer-col:not(:last-child) {
    border-bottom: 1px solid rgba(246, 215, 155, 0.1);
    padding-bottom: 1.75rem;
  }
  .mirror-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    padding-top: 2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .footer-bottom-bar .footer-copyright {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-quote-wrap {
    padding: 1rem 1.15rem;
  }
  .footer-quote-wrap .footer-quote {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Category & Portal Celestial CTA Cards
   ========================================================================== */
.category-cta-section {
  padding: 3.5rem 0 2.5rem;
  margin-top: 1rem;
  width: 100%;
}

.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(28, 24, 56, 0.78) 0%, rgba(16, 14, 34, 0.88) 100%);
  border: 1px solid rgba(246, 215, 155, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(246, 215, 155, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), var(--rose-glow), transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(246, 215, 155, 0.12) 0%, rgba(255, 182, 193, 0.05) 50%, transparent 70%);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 215, 155, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(246, 215, 155, 0.2);
}

.cta-card:hover::after {
  transform: scale(1.25);
}

.cta-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-glow);
  background: rgba(246, 215, 155, 0.1);
  border: 1px solid rgba(246, 215, 155, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.cta-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(246, 215, 155, 0.2), rgba(30, 20, 50, 0.6));
  border: 1px solid rgba(246, 215, 155, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 0 15px rgba(246, 215, 155, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-card:hover .cta-icon-wrapper {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 10px 28px rgba(246, 215, 155, 0.28), inset 0 0 20px rgba(246, 215, 155, 0.28);
}

.cta-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.cta-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.85rem;
  max-width: 420px;
  flex-grow: 1;
}

.btn-celestial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  background: linear-gradient(135deg, rgba(246, 215, 155, 0.15) 0%, rgba(246, 215, 155, 0.08) 100%);
  border: 1px solid rgba(246, 215, 155, 0.35);
  border-radius: 999px;
  color: var(--gold-glow);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25), 0 0 15px rgba(246, 215, 155, 0.1);
  transition: all 0.3s ease;
  width: auto;
  cursor: pointer;
}

.btn-celestial .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn-celestial:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-light);
  color: #0d0c24;
  box-shadow: 0 8px 25px rgba(246, 215, 155, 0.45);
  transform: translateY(-2px);
}

.btn-celestial:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cta-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cta-card {
    padding: 2rem 1.5rem 1.75rem;
  }
  .btn-celestial {
    width: 100%;
  }
}

/* ==========================================================================
   Century Filter Pills (100-asok, 200-asok...)
   ========================================================================== */
.century-filter-wrapper {
  margin-bottom: 2.75rem;
  width: 100%;
}

.century-filter-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-glow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.century-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 980px;
  margin: 0 auto;
}

.century-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  background: rgba(18, 15, 38, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(246, 215, 155, 0.2);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.century-pill:hover {
  background: rgba(246, 215, 155, 0.18);
  border-color: rgba(246, 215, 155, 0.45);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(246, 215, 155, 0.15);
}

.century-pill.active {
  background: var(--gold-gradient);
  border-color: var(--gold-light);
  color: #0d0c24;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(246, 215, 155, 0.35);
}

/* ==========================================================================
   Celestial Glassmorphism Pagination
   ========================================================================== */
.celestial-pagination-container {
  display: flex;
  justify-content: center;
  margin: 3.5rem auto 1.5rem;
  width: 100%;
}

.celestial-pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: rgba(15, 18, 37, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(246, 215, 155, 0.08);
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.celestial-page-item {
  display: inline-block;
}

.celestial-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.6rem;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.celestial-page-link:hover {
  background: rgba(246, 215, 155, 0.22);
  color: #fff;
  transform: translateY(-1px);
}

.celestial-page-item.active .celestial-page-link {
  background: var(--gold-gradient);
  color: #0d0c24;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.4);
}

.celestial-page-item.disabled .celestial-page-link {
  opacity: 0.35;
  pointer-events: none;
}

.celestial-page-arrow {
  border-radius: 999px !important;
  padding: 0 0.95rem !important;
  font-size: 0.82rem;
}

/* ==========================================================================
   Live Search Autocomplete Dropdown
   ========================================================================== */
.search-box-wrapper {
  position: relative;
}

.live-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(13, 14, 28, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(246, 215, 155, 0.35);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.75), 0 0 25px rgba(246, 215, 155, 0.12);
  z-index: 1000;
  max-height: 420px;
  overflow-y: auto;
  display: none;
  text-align: left;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-search-dropdown.open {
  display: block;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-dropdown-header {
  padding: 0.65rem 1.15rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-glow);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item.selected {
  background: rgba(246, 215, 155, 0.12);
  transform: translateX(3px);
}

.search-item-num {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-glow);
  min-width: 58px;
  text-align: center;
  padding: 0.25rem 0.5rem;
  background: rgba(246, 215, 155, 0.08);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: 8px;
}

.search-item-body {
  flex: 1;
  min-width: 0;
}

.search-item-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item-meta {
  display: flex;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  align-items: center;
}

.search-item-cat {
  color: var(--gold-light);
}

.search-item-freq {
  opacity: 0.8;
}

.search-dropdown-footer {
  padding: 0.75rem 1.15rem;
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-dropdown-footer a {
  color: var(--gold-glow);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.search-dropdown-footer a:hover {
  text-decoration: underline;
}

.search-empty {
  padding: 1.75rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Solfeggio Sound Bowl Generator Button & Wave Animation
   ========================================================================== */
.sound-bowl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.05rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(246, 215, 155, 0.08));
  border: 1px solid rgba(246, 215, 155, 0.45);
  border-radius: 999px;
  color: var(--gold-glow);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 10px rgba(246, 215, 155, 0.15);
}

.sound-bowl-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(246, 215, 155, 0.15));
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}

.sound-bowl-btn.playing {
  background: linear-gradient(135deg, rgba(246, 215, 155, 0.9), rgba(212, 175, 55, 0.9));
  color: #0d0c24;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(246, 215, 155, 0.6);
  animation: soundPulse 2s infinite ease-in-out;
}

@keyframes soundPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(246, 215, 155, 0.5);
  }
  50% {
    box-shadow: 0 0 35px rgba(246, 215, 155, 0.85);
  }
}

.sound-waves {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-wave-bar {
  width: 2.5px;
  height: 4px;
  background: currentColor;
  border-radius: 99px;
  animation: waveAnim 1s infinite ease-in-out;
}

.sound-bowl-btn:not(.playing) .sound-wave-bar {
  animation: none;
  height: 3px;
}

.sound-wave-bar:nth-child(2) { animation-delay: 0.2s; }
.sound-wave-bar:nth-child(3) { animation-delay: 0.4s; }
.sound-wave-bar:nth-child(4) { animation-delay: 0.1s; }

@keyframes waveAnim {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

/* ==========================================================================
   Reading Progress Bar
   ========================================================================== */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, #d4af37, #f7d070, #ff80b0, #9d72ff);
  z-index: 10001;
  box-shadow: 0 0 12px rgba(246, 215, 155, 0.8);
  transition: width 0.1s ease-out;
  pointer-events: none;
}

/* ==========================================================================
   Celestial Toast Notification
   ========================================================================== */
.celestial-toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.celestial-toast {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.45rem;
  background: rgba(15, 18, 38, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(246, 215, 155, 0.4);
  border-radius: 999px;
  color: var(--gold-glow);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(246, 215, 155, 0.18);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

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

/* ==========================================================================
   Favorites ("Látott Számaim") System
   ========================================================================== */
.fav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fav-btn:hover {
  color: var(--gold-glow);
  transform: scale(1.15);
}

.fav-btn.active {
  color: var(--gold-glow);
  text-shadow: 0 0 12px rgba(246, 215, 155, 0.6);
  transform: scale(1.1);
}

.fav-btn-lg {
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(246, 215, 155, 0.08);
  border: 1px solid rgba(246, 215, 155, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.fav-btn-lg:hover {
  background: rgba(246, 215, 155, 0.2);
  border-color: var(--gold-glow);
  box-shadow: 0 0 20px rgba(246, 215, 155, 0.4);
}

.fav-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(246, 215, 155, 0.08);
  border: 1px solid rgba(246, 215, 155, 0.25);
  color: var(--gold-glow);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.fav-nav-link:hover {
  background: rgba(246, 215, 155, 0.18);
  border-color: var(--gold-glow);
}

.fav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold-glow);
  color: #0d0c24;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Saved Numbers Slide-out Drawer */
.saved-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.saved-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.saved-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: rgba(14, 16, 34, 0.98);
  border-left: 1px solid rgba(246, 215, 155, 0.3);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.8);
  z-index: 10011;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.saved-drawer-backdrop.open .saved-drawer {
  transform: translateX(0);
}

.saved-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saved-drawer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.saved-drawer-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.saved-drawer-close:hover {
  color: #fff;
}

.saved-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.saved-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.saved-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 215, 155, 0.18);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.saved-item-card:hover {
  background: rgba(246, 215, 155, 0.1);
  border-color: var(--gold-glow);
  transform: translateX(-2px);
}

.saved-item-num {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-glow);
}

.saved-item-info {
  flex: 1;
  margin: 0 1rem;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saved-item-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.saved-item-remove:hover {
  color: #ff6b6b;
}

.saved-drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saved-clear-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
}

.saved-clear-btn:hover {
  color: #ff6b6b;
}

@media (max-width: 768px) {
  .celestial-toast-container {
    bottom: 5.5rem;
    right: 1rem;
    left: 1rem;
    align-items: center;
  }
}

/* ==========================================================================
   1. Sticky Celestial Action Bar (Detail Pages)
   ========================================================================== */
.sticky-action-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 11, 25, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(246, 215, 155, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 10005;
  display: flex;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-action-bar.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-action-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-action-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.sticky-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold-glow);
  padding: 0.25rem 0.75rem;
  background: rgba(246, 215, 155, 0.12);
  border: 1px solid rgba(246, 215, 155, 0.35);
  border-radius: 999px;
  flex-shrink: 0;
}

.sticky-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-action-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.sticky-btn-sound {
  background: rgba(246, 215, 155, 0.12);
  border: 1px solid rgba(246, 215, 155, 0.35);
  color: var(--gold-glow);
}

.sticky-btn-sound:hover, .sticky-btn-sound.playing {
  background: var(--gold-glow);
  color: #0d0c24;
}

.sticky-btn-fav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold-glow);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
}

.sticky-btn-fav:hover, .sticky-btn-fav.active {
  background: rgba(246, 215, 155, 0.2);
  border-color: var(--gold-glow);
}

@media (max-width: 640px) {
  .sticky-action-bar {
    height: 52px;
  }
  .sticky-action-container {
    padding: 0 0.85rem;
    gap: 0.45rem;
  }
  .sticky-title {
    display: none;
  }
  .sticky-number-badge {
    font-size: 0.95rem;
    padding: 0.15rem 0.6rem;
  }
  .sticky-action-right {
    gap: 0.4rem;
  }
  .sticky-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.76rem;
  }
  .sticky-share-text {
    display: none;
  }
  .sticky-btn-fav {
    width: 33px;
    height: 33px;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   2. Color-coded Thematic Meaning Cards
   ========================================================================== */
.meaning-card.love {
  border-color: rgba(255, 143, 171, 0.35);
  background: linear-gradient(135deg, rgba(255, 117, 143, 0.06), rgba(15, 16, 36, 0.85));
}
.meaning-card.love:hover {
  border-color: rgba(255, 143, 171, 0.65);
  box-shadow: 0 12px 40px rgba(255, 117, 143, 0.18);
}
.meaning-card.love .card-icon-wrap {
  background: rgba(255, 117, 143, 0.15);
  color: #ff8fab;
  border-color: rgba(255, 143, 171, 0.4);
}

.meaning-card.career {
  border-color: rgba(255, 209, 102, 0.35);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.06), rgba(15, 16, 36, 0.85));
}
.meaning-card.career:hover {
  border-color: rgba(255, 209, 102, 0.65);
  box-shadow: 0 12px 40px rgba(255, 209, 102, 0.18);
}
.meaning-card.career .card-icon-wrap {
  background: rgba(255, 209, 102, 0.15);
  color: #ffd166;
  border-color: rgba(255, 209, 102, 0.4);
}

.meaning-card.spirit {
  border-color: rgba(187, 134, 252, 0.35);
  background: linear-gradient(135deg, rgba(187, 134, 252, 0.06), rgba(15, 16, 36, 0.85));
}
.meaning-card.spirit:hover {
  border-color: rgba(187, 134, 252, 0.65);
  box-shadow: 0 12px 40px rgba(187, 134, 252, 0.18);
}
.meaning-card.spirit .card-icon-wrap {
  background: rgba(187, 134, 252, 0.15);
  color: #bb86fc;
  border-color: rgba(187, 134, 252, 0.4);
}

.meaning-card.action {
  border-color: rgba(100, 223, 223, 0.35);
  background: linear-gradient(135deg, rgba(100, 223, 223, 0.06), rgba(15, 16, 36, 0.85));
}
.meaning-card.action:hover {
  border-color: rgba(100, 223, 223, 0.65);
  box-shadow: 0 12px 40px rgba(100, 223, 223, 0.18);
}
.meaning-card.action .card-icon-wrap {
  background: rgba(100, 223, 223, 0.15);
  color: #64dfdf;
  border-color: rgba(100, 223, 223, 0.4);
}

/* ==========================================================================
   3. Solfeggio 2.0: Breath Guide & Meditation Module
   ========================================================================== */
.breath-guide-container {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(13, 14, 30, 0.85);
  border: 1px solid rgba(246, 215, 155, 0.28);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(246, 215, 155, 0.05);
  animation: fadeIn 0.4s ease;
}

.breath-guide-container.active {
  display: flex;
}

.breath-guide-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-glow);
  margin-bottom: 0.25rem;
}

.breath-guide-subtitle {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.breath-visual-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.breath-circle-outer {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(246, 215, 155, 0.35);
  border-radius: 50%;
  animation: rotateGuide 40s linear infinite;
}

@keyframes rotateGuide {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.breath-circle-pulse {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 215, 155, 0.35), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--gold-glow);
  box-shadow: 0 0 25px rgba(246, 215, 155, 0.4);
  transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.breath-circle-pulse.inhale {
  transform: scale(1.6);
  box-shadow: 0 0 45px rgba(246, 215, 155, 0.8);
}

.breath-circle-pulse.hold {
  transform: scale(1.6);
  box-shadow: 0 0 55px rgba(255, 235, 180, 1);
}

.breath-circle-pulse.exhale {
  transform: scale(1);
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.2);
}

.breath-phase-text {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.breath-timer-chips {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.breath-chip {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ==========================================================================
   4. Instagram Story / Image Generator Button & Affirmation Actions
   ========================================================================== */
.affirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  width: 100%;
}

.download-story-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246, 215, 155, 0.18), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(246, 215, 155, 0.45);
  color: var(--gold-glow);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.download-story-btn:hover {
  background: linear-gradient(135deg, rgba(246, 215, 155, 0.32), rgba(212, 175, 55, 0.2));
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 215, 155, 0.3);
}

@media (max-width: 600px) {
  .affirmation-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .affirmation-actions .copy-affirmation-btn,
  .affirmation-actions .download-story-btn {
    width: 100% !important;
    margin: 0 !important;
    padding: 0.78rem 1rem !important;
    font-size: 0.88rem !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   5. Cosmic Random Discovery FAB Button (Floating Action Button)
   ========================================================================== */
.cosmic-fab-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #241d4f, #0d0c24);
  border: 1.5px solid rgba(246, 215, 155, 0.6);
  color: var(--gold-glow);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(246, 215, 155, 0.25);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: cosmicFabFloat 3s infinite ease-in-out;
}

.cosmic-fab-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 35px rgba(246, 215, 155, 0.5);
  color: #fff;
}

@keyframes cosmicFabFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .cosmic-fab-btn {
    bottom: 5.25rem;
    right: 1rem;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.7), 0 0 18px rgba(246, 215, 155, 0.45);
  }
  .cosmic-fab-btn .fab-text {
    display: none;
  }
  .cosmic-fab-btn .fab-icon {
    font-size: 1.25rem;
    line-height: 1;
  }
}

/* ==========================================================================
   6. Shortcut Badges (Cmd+K)
   ========================================================================== */
.shortcut-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--gold-glow);
  font-family: monospace;
  margin-left: 0.3rem;
}

/* ==========================================================================
   7. In-Page Table of Contents (TOC) & Mobile Scroll
   ========================================================================== */
.toc-box {
  margin: 1.5rem auto 3rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  max-width: 860px;
  text-align: left;
}

.toc-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-glow);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.toc-link, .toc-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9999px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.toc-link:hover, .toc-links a:hover {
  background: rgba(246, 215, 155, 0.15);
  border-color: rgba(246, 215, 155, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .toc-box {
    padding: 0.85rem 1rem;
    margin: 1rem 0 2rem;
  }
  .toc-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.45rem;
    scrollbar-width: none;
  }
  .toc-links::-webkit-scrollbar {
    display: none;
  }
  .toc-link, .toc-links a {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    white-space: nowrap;
  }

  /* Century Chips Mobile Horizontal Scroll */
  .century-chips {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 0.25rem 0.5rem 0.75rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .century-chips::-webkit-scrollbar {
    display: none;
  }
  .century-pill {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }
}

/* ==========================================================================
   8. Solfeggio 2.0 Breath Guide Mobile Tweaks
   ========================================================================== */
@media (max-width: 640px) {
  .breath-guide-container {
    padding: 1.4rem 0.95rem;
    margin: 1.25rem auto;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .breath-guide-title {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .breath-guide-subtitle {
    font-size: 0.78rem;
    margin-bottom: 1.15rem;
    line-height: 1.4;
    padding: 0 0.25rem;
  }
  .breath-visual-wrap {
    width: 140px;
    height: 140px;
    margin-bottom: 1.15rem;
  }
  .breath-circle-pulse {
    width: 76px;
    height: 76px;
  }
  .breath-circle-pulse.inhale,
  .breath-circle-pulse.hold {
    transform: scale(1.45);
  }
  .breath-phase-text {
    font-size: 0.82rem;
  }
  .breath-timer-chips {
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .breath-chip {
    padding: 0.32rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   9. Mobile Polish & Prevent Overflow
   ========================================================================== */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  .giant-number-display {
    font-size: clamp(3rem, 13vw, 4.5rem);
    letter-spacing: -0.02em;
  }
  .show-title {
    font-size: 1.35rem;
    line-height: 1.35;
    padding: 0 0.25rem;
    word-break: break-word;
  }
  .show-vibration {
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 0 0.25rem;
  }
  .meta-pills-row {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }
  .meta-pill {
    padding: 0.32rem 0.75rem;
    font-size: 0.76rem;
  }
  .sound-bowl-btn {
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .detail-card {
    padding: 1.4rem 1.15rem;
  }
  .detail-card h2 {
    font-size: 1.12rem !important;
    line-height: 1.4;
  }
  .detail-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .faq-header h2 {
    font-size: 1.4rem !important;
    line-height: 1.35;
  }
  .faq-header p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .faq-summary {
    font-size: 0.95rem;
    padding: 0.95rem 1.1rem;
    line-height: 1.45;
  }
  .faq-content {
    padding: 0.95rem 1.1rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .share-btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 130px;
    justify-content: center;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   HOMEPAGE CATEGORY HUB & ICONIC NUMBERS SHOWCASE
   ========================================================================== */

.category-hub-section {
  margin: 3.5rem 0 4.5rem;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-glow);
  margin-bottom: 0.6rem;
  text-shadow: 0 0 12px rgba(246, 215, 155, 0.4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Hub Grid (6 Cards) */
.category-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.category-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: rgba(18, 22, 45, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg, 18px);
  padding: 1.8rem 1.6rem 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.32s ease,
              box-shadow 0.32s ease;
  overflow: hidden;
}

.category-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-accent, var(--gold-glow)), transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.category-hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 215, 155, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(246, 215, 155, 0.12);
}

.category-hub-card:hover::before {
  opacity: 1;
  height: 4px;
}

/* Color Accents */
.hub-card-gold { --card-accent: #f6d79b; }
.hub-card-purple { --card-accent: #c084fc; }
.hub-card-cyan { --card-accent: #38bdf8; }
.hub-card-rose { --card-accent: #fb7185; }
.hub-card-emerald { --card-accent: #34d399; }

.hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.hub-card-icon {
  font-size: 2.1rem;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.hub-card-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-glow);
  background: rgba(246, 215, 155, 0.08);
  border: 1px solid rgba(246, 215, 155, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hub-card-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
}

.hub-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.hub-card-desc {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.hub-card-examples {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hub-examples-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-glow);
  background: rgba(246, 215, 155, 0.12);
  border: 1px solid rgba(246, 215, 155, 0.28);
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hub-examples-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hub-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--gold-glow);
  font-size: 0.88rem;
  font-weight: 600;
}

.hub-arrow {
  font-size: 1.1rem;
  transition: transform 0.22s ease;
}

.category-hub-card:hover .hub-arrow {
  transform: translateX(5px);
}

/* Showcase Section (12 Iconic Numbers) */
.showcase-section {
  margin: 3.5rem 0 4.5rem;
}

.showcase-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}

/* Search Mode Results Header */
.search-results-banner {
  background: rgba(246, 215, 155, 0.06);
  border: 1px solid rgba(246, 215, 155, 0.25);
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.search-results-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clear-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.clear-search-btn:hover {
  background: rgba(246, 215, 155, 0.18);
  border-color: rgba(246, 215, 155, 0.4);
  color: var(--gold-glow);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .category-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .category-hub-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .category-hub-card {
    padding: 1.4rem 1.25rem 1.2rem;
  }
  .hub-card-title {
    font-size: 1.2rem;
  }
  .search-results-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .showcase-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ÉGI MAGAZIN & DISCOVER ENGINE STYLES
   ========================================================================== */

/* Reading Progress Bar */
.reading-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

.reading-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b993ff, #f6d79b, #38bdf8);
  box-shadow: 0 0 10px rgba(246, 215, 155, 0.8);
  transition: width 0.1s ease-out;
}

/* Magazin Hero */
.magazin-hero {
  margin-bottom: 2.2rem;
  text-align: center;
}

/* Breadcrumb Wrapper for Clean Centering */
.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.8rem;
}

/* Featured Top Story Card */
.featured-story-section {
  margin-bottom: 3.5rem;
}

.featured-story-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.2rem;
  background: rgba(18, 22, 45, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(246, 215, 155, 0.22);
  border-radius: var(--radius-lg, 22px);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: stretch;
}

.featured-story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(246, 215, 155, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(246, 215, 155, 0.15);
}

.featured-story-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0d1024;
}

.featured-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-story-card:hover .featured-story-media img {
  transform: scale(1.05);
}

.story-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(13, 15, 33, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(246, 215, 155, 0.4);
  color: var(--gold-glow);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.tag-rose { border-color: rgba(251, 113, 133, 0.5); color: #fda4af; }
.tag-cyan { border-color: rgba(56, 189, 248, 0.5); color: #7dd3fc; }
.tag-purple { border-color: rgba(192, 132, 252, 0.5); color: #d8b4fe; }

.featured-story-body {
  padding: 2.2rem 2.2rem 2.2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.featured-story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.9rem;
}

.featured-story-lead {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.featured-story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-author {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

.read-more-link {
  color: var(--gold-glow);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.featured-story-card:hover .read-more-link {
  transform: translateX(4px);
}

/* Magazin Grid (3 columns, Strictly Aligned) */
.magazin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.magazin-card {
  background: rgba(18, 22, 45, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.magazin-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 215, 155, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(246, 215, 155, 0.12);
}

.magazin-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

.magazin-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d1024;
}

.magazin-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.magazin-card:hover .magazin-card-image-wrap img {
  transform: scale(1.06);
}

.magazin-card-content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.magazin-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.42;
  margin-bottom: 0.75rem;
  min-height: 2.85em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.magazin-card-lead {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 4.8em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.magazin-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-author-small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ARTICLE READ VIEW (Single Post)
   ========================================================================== */

.article-read-container {
  max-width: 860px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2.8rem;
  text-align: center;
}

.article-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

/* Dedicated Inline Category Badge for Article Header */
.article-category-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(246, 215, 155, 0.1);
  border: 1px solid rgba(246, 215, 155, 0.4);
  color: var(--gold-glow);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(246, 215, 155, 0.15);
}

.badge-rose { border-color: rgba(251, 113, 133, 0.5); color: #fda4af; background: rgba(251, 113, 133, 0.1); }
.badge-cyan { border-color: rgba(56, 189, 248, 0.5); color: #7dd3fc; background: rgba(56, 189, 248, 0.1); }
.badge-purple { border-color: rgba(192, 132, 252, 0.5); color: #d8b4fe; background: rgba(192, 132, 252, 0.1); }

.reading-time-pill {
  font-size: 0.8rem;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.article-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.32;
  margin: 0 auto 1.6rem auto;
  max-width: 820px;
  text-align: center;
  letter-spacing: -0.01em;
}

.article-meta-author-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(18, 22, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.author-avatar-circle {
  font-size: 1.4rem;
}

.author-details-text {
  text-align: left;
}

.author-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.author-role-sub {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.article-featured-image-wrap {
  position: relative;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
  margin-bottom: 2.8rem;
  background: #0d1024;
}

.article-featured-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.article-lead-box {
  background: rgba(246, 215, 155, 0.05);
  border-left: 4px solid var(--gold-glow);
  padding: 1.5rem 2rem;
  border-radius: 0 16px 16px 0;
  margin-bottom: 3rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.article-lead-box p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f1f5f9;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

.article-body-content {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #cbd5e1;
  margin-bottom: 3.5rem;
}

.article-body-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  line-height: 1.35;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(246, 215, 155, 0.2);
}

.article-body-content h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--gold-glow);
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.article-body-content p {
  margin-bottom: 1.5rem;
}

.article-body-content strong {
  color: #fff;
  font-weight: 700;
}

.article-body-content blockquote {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--gold-glow);
  padding: 1.5rem 1.8rem;
  border-radius: 0 14px 14px 0;
  margin: 2.2rem 0;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.75;
  color: #fff;
  font-style: italic;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.article-body-content ul, .article-body-content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.8rem;
}

.article-body-content li {
  margin-bottom: 0.65rem;
  line-height: 1.75;
}

/* Related Numbers Box */
.related-numbers-box {
  background: rgba(18, 22, 45, 0.75);
  border: 1px solid rgba(246, 215, 155, 0.28);
  border-radius: var(--radius-md, 16px);
  padding: 1.6rem 1.8rem;
  margin: 3.5rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.related-numbers-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.related-numbers-header span {
  color: var(--gold-glow);
}

.related-numbers-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.related-numbers-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.related-number-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(246, 215, 155, 0.1);
  border: 1px solid rgba(246, 215, 155, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.related-number-chip:hover {
  background: rgba(246, 215, 155, 0.22);
  border-color: rgba(246, 215, 155, 0.6);
  transform: translateY(-2px);
}

.chip-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-glow);
}

.chip-arrow {
  font-size: 0.85rem;
  color: #fff;
}

/* Article Share Section */
.article-share-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-title {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 500;
}

.article-share-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Author Profile Card */
.article-author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(18, 22, 45, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md, 16px);
  padding: 1.8rem;
  margin-bottom: 4rem;
}

.author-card-avatar {
  font-size: 2.8rem;
  flex-shrink: 0;
  background: rgba(246, 215, 155, 0.08);
  border: 1px solid rgba(246, 215, 155, 0.2);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.author-card-body p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .featured-story-card {
    grid-template-columns: 1fr;
  }
  .featured-story-body {
    padding: 1.8rem;
  }
  .magazin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .magazin-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .article-headline {
    font-size: 1.65rem;
  }
  .article-lead-box {
    padding: 1.15rem 1.25rem;
  }
  .article-lead-box p {
    font-size: 1.02rem;
  }
  .article-share-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-author-card {
    flex-direction: column;
    text-align: center;
  }





