/* ============================================================
   ENDORMI — Main CSS
   Theme: Dark mystical, #c61aff primary
   Font: Roboto + Roboto Slab
   ============================================================ */

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

/* === VARIABLES === */
:root {
  --primary: #c61aff;
  --primary-light: #d94dff;
  --primary-glow: rgba(198,26,255,0.35);
  --accent: #ff6b35;
  --accent2: #00d4ff;
  --gold: #ffd700;
  --dark: #0a0010;
  --dark2: #120018;
  --dark3: #1a0026;
  --card-bg: rgba(26,0,38,0.7);
  --card-border: rgba(198,26,255,0.2);
  --text: #e8d5ff;
  --text-muted: #9a7ab0;
  --bg: #0a0010;
  --border: rgba(198,26,255,0.15);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,0,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgba(10,0,16,0.97);
  box-shadow: 0 4px 30px rgba(198,26,255,0.15);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem; font-weight: 700;
  color: #fff; letter-spacing: -0.5px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), #8800cc);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 16px var(--primary-glow);
}
.logo span { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 13px;
  color: var(--text-muted);
  font-size: 0.88rem; font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(198,26,255,0.12); }
.nav-cta {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--primary), #9900cc);
  color: #fff;
  font-size: 0.88rem; font-weight: 600;
  border-radius: 20px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px var(--primary-glow);
}
.nav-cta:hover { opacity: 0.85; box-shadow: 0 0 28px var(--primary-glow); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(10,0,16,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 10px 12px; font-size: 0.95rem; }

/* ============================================================
   STARS BACKGROUND
   ============================================================ */
.stars-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.star {
  position: absolute; border-radius: 50%;
  background: #fff; animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%,100% { opacity: var(--min-op, 0.2); transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 30% 50%, rgba(198,26,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,212,255,0.05) 0%, transparent 50%),
              var(--dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-1 { width:500px;height:500px; background:rgba(198,26,255,0.12); top:-100px;right:-100px; animation-delay:-2s; }
.hero-orb-2 { width:300px;height:300px; background:rgba(0,212,255,0.06); bottom:-50px;left:10%; animation-delay:-4s; }
.hero-orb-3 { width:200px;height:200px; background:rgba(255,215,0,0.04); top:30%;left:40%; animation-delay:-1s; }
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-inner {
  max-width:1200px; margin:0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,26,255,0.1);
  border: 1px solid rgba(198,26,255,0.3);
  color: var(--primary-light); padding: 7px 16px;
  border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: var(--primary);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1; font-weight: 900;
  color: #fff; margin-bottom: 20px;
}
.hero-title .accent { color: var(--primary); display: block; }
.hero-title .accent2 { color: var(--gold); }
.hero-desc {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 36px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), #9900cc);
  color: #fff; border: none; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 24px var(--primary-glow);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--primary-glow); }
.btn-secondary {
  padding: 14px 28px;
  border: 1.5px solid rgba(198,26,255,0.4);
  color: var(--primary-light); border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.2s; background: transparent;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(198,26,255,0.1); border-color: var(--primary); }

.hero-visual { position: relative; }
.hero-zodiac-wheel {
  width: 420px; height: 420px; max-width: 100%;
  position: relative; margin: 0 auto;
}
.zodiac-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(198,26,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.zodiac-ring-outer { animation: rotateSlow 60s linear infinite; }
.zodiac-ring-inner {
  inset: 60px;
  border-color: rgba(198,26,255,0.15);
  animation: rotateSlow 40s linear infinite reverse;
}
.zodiac-ring-core {
  inset: 130px;
  border-color: rgba(255,215,0,0.2);
  background: radial-gradient(circle, rgba(198,26,255,0.15), transparent);
}
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.zodiac-sign {
  position: absolute;
  font-size: 1.4rem;
  animation: signGlow 3s ease-in-out infinite;
}
@keyframes signGlow { 0%,100%{opacity:0.6;filter:none} 50%{opacity:1;filter:drop-shadow(0 0 6px var(--primary))} }
.hero-center-glow {
  position: absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);
  width:160px;height:160px;
  background:radial-gradient(circle, rgba(198,26,255,0.3) 0%, transparent 70%);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
}
.hero-stat strong {
  display: block; font-family: 'Roboto Slab', serif;
  font-size: 1.6rem; color: var(--primary); font-weight: 700;
}
.hero-stat span { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   TICKER / NEWS BAND
   ============================================================ */
.news-ticker {
  background: linear-gradient(90deg, var(--dark2), rgba(198,26,255,0.08), var(--dark2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px; width: max-content;
  animation: tickerScroll 40s linear infinite;
}
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  white-space: nowrap; font-size: 0.85rem;
  color: var(--text-muted); display: flex; align-items: center; gap: 10px;
}
.ticker-item .ticker-icon { color: var(--primary); font-size: 0.9rem; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: rgba(18,0,24,0.5); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff; font-weight: 700; margin-bottom: 12px;
}
.section-title .hl { color: var(--primary); }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(198,26,255,0.2);
  border-color: rgba(198,26,255,0.4);
}
.card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card-img { transform: scale(1.04); }
.card-img-wrap { overflow: hidden; position: relative; }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
}
.card-body { padding: 20px; }
.card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.card-date { font-size: 0.78rem; color: var(--text-muted); }
.card-read { font-size: 0.78rem; color: var(--primary); font-weight: 600; }
.card-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 10px; line-height: 1.45;
}
.card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--border);
}
.card-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6600aa);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #fff; font-weight: 700;
}
.author-name { font-size: 0.8rem; color: var(--text-muted); }
.card-link {
  font-size: 0.8rem; color: var(--primary); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.card:hover .card-link { gap: 8px; }

/* Article grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.articles-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.articles-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   ZODIAC SIGNS GRIDS
   ============================================================ */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sign-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.sign-card:hover {
  border-color: var(--primary);
  background: rgba(198,26,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.sign-symbol { font-size: 2rem; display: block; margin-bottom: 8px; }
.sign-name { font-size: 0.8rem; color: #fff; font-weight: 600; margin-bottom: 2px; }
.sign-dates { font-size: 0.7rem; color: var(--text-muted); }
.sign-card.active { border-color: var(--primary); background: rgba(198,26,255,0.15); }

/* ============================================================
   FEATURED ARTICLE
   ============================================================ */
.featured-article {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.featured-article:hover { box-shadow: 0 20px 60px rgba(198,26,255,0.2); }
.featured-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag {
  display: inline-block; background: rgba(198,26,255,0.15);
  border: 1px solid rgba(198,26,255,0.3);
  color: var(--primary-light); padding: 5px 14px;
  border-radius: 50px; font-size: 0.75rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 18px;
}
.featured-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 16px;
}
.featured-excerpt { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.featured-meta { display: flex; align-items: center; gap: 16px; font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   PREDICTION BANNER
   ============================================================ */
.prediction-banner {
  background: linear-gradient(135deg, rgba(198,26,255,0.12), rgba(136,0,204,0.08));
  border: 1px solid rgba(198,26,255,0.25);
  border-radius: 20px; padding: 48px;
  text-align: center; position: relative; overflow: hidden;
}
.prediction-banner::before {
  content: '🔮';
  position: absolute; font-size: 120px;
  opacity: 0.05; top: -20px; right: -20px;
  pointer-events: none;
}
.prediction-banner h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem; color: #fff; margin-bottom: 14px;
}
.prediction-banner p { color: var(--text-muted); max-width: 500px; margin: 0 auto 28px; line-height: 1.8; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(198,26,255,0.15);
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6600aa);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: #fff; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 0.88rem; color: #fff; font-weight: 600; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-badge {
  margin-left: auto;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent2); font-size: 0.68rem; padding: 2px 8px; border-radius: 50px;
}

/* Reviews stats banner */
.reviews-stats {
  background: linear-gradient(135deg, rgba(198,26,255,0.1), rgba(136,0,204,0.06));
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 40px;
}
.review-stat { text-align: center; }
.review-stat-num {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem; color: var(--primary); font-weight: 700; display: block;
}
.review-stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, rgba(198,26,255,0.12), rgba(0,212,255,0.05));
  border: 1px solid rgba(198,26,255,0.2);
  border-radius: 20px; padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(198,26,255,0.15), transparent 60%);
  pointer-events: none;
}
.newsletter-section h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.9rem; color: #fff; margin-bottom: 12px; position: relative; z-index: 1;
}
.newsletter-section p {
  color: var(--text-muted); margin-bottom: 28px; max-width: 480px;
  margin-left: auto; margin-right: auto; position: relative; z-index: 1;
}
.nl-form {
  display: flex; gap: 12px; max-width: 460px;
  margin: 0 auto; position: relative; z-index: 1;
}
.nl-form input {
  flex: 1; padding: 13px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(198,26,255,0.25);
  border-radius: 12px; color: #fff;
  font-family: 'Roboto', sans-serif; font-size: 0.95rem;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.nl-form input:focus { outline: none; border-color: var(--primary); background: rgba(198,26,255,0.08); }
.nl-form button {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--primary), #9900cc);
  color: #fff; border: none; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  white-space: nowrap; transition: opacity 0.2s, transform 0.2s;
}
.nl-form button:hover { opacity: 0.88; transform: translateY(-1px); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 40px;
  backdrop-filter: blur(10px);
}
.contact-form h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem; color: #fff; margin-bottom: 8px;
}
.contact-form .subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group label .req { color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-radius: 10px; color: #fff;
  font-family: 'Roboto', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(198,26,255,0.12);
}
.form-group select option { background: var(--dark2); color: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary), #9900cc);
  color: #fff; border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero {
  background: radial-gradient(ellipse at 40% 60%, rgba(198,26,255,0.12) 0%, transparent 60%), var(--dark);
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border);
}
.article-hero-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.article-body { max-width: 860px; margin: 0 auto; padding: 56px 24px; }
.article-body h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem; color: #fff; margin: 36px 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.article-body h3 { font-family: 'Roboto Slab', serif; font-size: 1.15rem; color: var(--primary-light); margin: 28px 0 12px; }
.article-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; font-size: 0.97rem; }
.article-body img { border-radius: 12px; margin: 28px 0; border: 1px solid var(--border); }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  background: rgba(198,26,255,0.06);
  border-radius: 0 10px 10px 0;
  margin: 24px 0; color: var(--text); font-style: italic;
}
.article-body ul, .article-body ol {
  color: var(--text-muted); padding-left: 22px; margin-bottom: 18px;
}
.article-body li { margin-bottom: 8px; line-height: 1.8; }

/* ============================================================
   HOROSCOPE SIGN PAGE
   ============================================================ */
.sign-hero {
  background: radial-gradient(ellipse at 50% 50%, rgba(198,26,255,0.18) 0%, transparent 65%), var(--dark);
  padding: 120px 0 64px; text-align: center;
}
.sign-big-symbol {
  font-size: 5rem; display: block; margin-bottom: 16px;
  filter: drop-shadow(0 0 20px var(--primary));
  animation: signBob 3s ease-in-out infinite;
}
@keyframes signBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.sign-page-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff; font-weight: 900; margin-bottom: 10px;
}
.sign-page-dates { color: var(--text-muted); font-size: 1rem; }

.horoscope-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px; padding: 28px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}
.horoscope-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem; color: #fff; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.horoscope-card p { color: var(--text-muted); line-height: 1.85; }
.compatibility-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.compat-item {
  background: rgba(198,26,255,0.07);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
  text-align: center;
}
.compat-sign { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.compat-name { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.compat-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.compat-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.8;
  margin-top: 14px; max-width: 240px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(198,26,255,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.2s;
}
.social-link:hover { background: rgba(198,26,255,0.2); border-color: var(--primary); }
.footer-col h4 {
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); font-weight: 700; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--text-muted); font-size: 0.88rem;
  margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), #9900cc);
  color: #fff; border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: radial-gradient(ellipse at 40% 50%, rgba(198,26,255,0.14) 0%, transparent 60%), var(--dark);
  padding: 120px 0 64px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-badge {
  display: inline-block;
  background: rgba(198,26,255,0.1);
  border: 1px solid rgba(198,26,255,0.25);
  color: var(--primary-light); padding: 6px 16px;
  border-radius: 50px; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: #fff; font-weight: 900; margin-bottom: 14px;
}
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ============================================================
   SIDEBAR LAYOUT
   ============================================================ */
.content-sidebar-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
}
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 0.95rem; color: #fff; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(198,26,255,0.08);
  text-decoration: none;
}
.sidebar-list-item:last-child { border-bottom: none; }
.sidebar-list-item .sli-symbol { font-size: 1.4rem; flex-shrink: 0; }
.sidebar-list-item .sli-text strong { display: block; font-size: 0.83rem; color: #fff; }
.sidebar-list-item .sli-text span { font-size: 0.75rem; color: var(--text-muted); }
.sidebar-list-item:hover .sli-text strong { color: var(--primary-light); }

/* ============================================================
   TAGS / CHIPS
   ============================================================ */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag {
  padding: 4px 12px;
  background: rgba(198,26,255,0.1);
  border: 1px solid rgba(198,26,255,0.2);
  border-radius: 50px; font-size: 0.75rem; color: var(--primary-light);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { max-width: 860px; margin: 0 auto; padding: 60px 24px 80px; }
.legal-toc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--primary);
  border-radius: 12px; padding: 24px 28px; margin-bottom: 48px;
}
.legal-toc h3 { font-family: 'Roboto Slab', serif; font-size: 1rem; color: #fff; margin-bottom: 14px; }
.legal-toc ol { margin: 0; padding-left: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.legal-toc li a { color: var(--primary-light); text-decoration: none; font-size: 0.88rem; }
.legal-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Roboto Slab', serif; font-size: 1.35rem; color: #fff;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.legal-section h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary-light); margin: 20px 0 8px; }
.legal-section p { color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; font-size: 0.95rem; }
.legal-section ul { color: var(--text-muted); padding-left: 22px; margin-bottom: 14px; font-size: 0.95rem; }
.legal-section ul li { margin-bottom: 6px; line-height: 1.8; }
.legal-info-box {
  background: rgba(198,26,255,0.06);
  border: 1px solid rgba(198,26,255,0.15);
  border-radius: 10px; padding: 20px 22px; margin: 16px 0;
}
.legal-info-box p { margin-bottom: 4px; }
.legal-info-box strong { color: #fff; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; margin: 16px 0; }
.legal-table th { background: rgba(198,26,255,0.1); color: #fff; font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.legal-table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .signs-grid { grid-template-columns: repeat(4, 1fr); }
  .articles-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .articles-grid, .articles-grid.cols-2 { grid-template-columns: 1fr; }
  .articles-grid.cols-4 { grid-template-columns: 1fr; }
  .signs-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nl-form { flex-direction: column; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .compatibility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .newsletter-section { padding: 36px 24px; }
  .contact-form { padding: 24px; }
}
