/* ============ BLOG SHARED STYLES ============ */
:root {
  --hot-pink: #FF1493;
  --neon-pink: #FF69B4;
  --soft-pink: #FFB6C1;
  --blush: #FFF0F5;
  --silver: #C0C0C0;
  --bright-silver: #E8E8E8;
  --disco-gold: #FFD700;
  --deep-plum: #1a0a1a;
  --midnight: #0d0d1a;
  --glass-white: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--midnight); color: #fff; overflow-x: hidden; line-height: 1.7; }

/* ============ SPARKLE CURSOR ============ */
.sparkle {
  position: fixed; pointer-events: none; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hot-pink); z-index: 9999; animation: sparkle-fade 1s ease-out forwards;
  box-shadow: 0 0 6px currentColor, 0 0 12px currentColor;
}
@keyframes sparkle-fade {
  0% { transform: scale(0.5); opacity: 1; }
  30% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0) translateY(-15px); opacity: 0; }
}

/* ============ DISCO SQUARES ============ */
.disco-squares { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.disco-square { position: absolute; width: 8px; height: 8px; background: rgba(255, 255, 255, 0.1); animation: float-square 15s linear infinite; }
@keyframes float-square { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; } }

/* ============ AMBIENT GLOW LIGHTS ============ */
.disco-light { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.2; pointer-events: none; z-index: 0; animation: disco-pulse 4s ease-in-out infinite alternate; }
.disco-light:nth-child(1) { width: 350px; height: 350px; background: var(--hot-pink); top: -80px; left: -80px; }
.disco-light:nth-child(2) { width: 250px; height: 250px; background: var(--disco-gold); bottom: -50px; right: -50px; animation-delay: 1s; }
.disco-light:nth-child(3) { width: 200px; height: 200px; background: var(--silver); top: 40%; right: 5%; animation-delay: 2s; }
@keyframes disco-pulse { 0% { transform: scale(1); opacity: 0.15; } 100% { transform: scale(1.3); opacity: 0.3; } }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ NAV ============ */
.blog-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(20px); background: rgba(13, 13, 26, 0.9);
  border-bottom: 1px solid var(--glass-border);
}
.blog-nav .nav-logo { font-family: 'Pacifico', cursive; font-size: 1.4rem; color: var(--hot-pink); text-decoration: none; text-shadow: 0 0 20px rgba(255, 20, 147, 0.5); }
.blog-nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.blog-nav-links a { color: var(--bright-silver); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.3s; }
.blog-nav-links a:hover { color: var(--hot-pink); }
.blog-nav-links .nav-cta {
  background: linear-gradient(135deg, var(--hot-pink), #c70070);
  color: #fff !important; padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4); transition: transform 0.3s, box-shadow 0.3s;
}
.blog-nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6); }

/* ============ ARTICLE ============ */
.blog-article {
  max-width: 780px; margin: 0 auto; padding: 3rem 2rem 5rem;
}
.blog-breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.blog-breadcrumb a { color: var(--neon-pink); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }

.blog-article h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.25; margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--soft-pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-meta { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.blog-meta .tag { background: rgba(255,20,147,0.15); color: var(--neon-pink); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

.blog-article h2 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  margin: 2.5rem 0 1rem; color: #fff; position: relative; padding-left: 1rem;
  border-left: 3px solid var(--hot-pink);
}
.blog-article h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600;
  margin: 2rem 0 0.8rem; color: var(--soft-pink);
}
.blog-article p { color: rgba(255,255,255,0.75); margin-bottom: 1.2rem; font-size: 1.05rem; }
.blog-article ul, .blog-article ol { color: rgba(255,255,255,0.7); margin: 0 0 1.5rem 1.5rem; }
.blog-article li { margin-bottom: 0.6rem; font-size: 1rem; }
.blog-article strong { color: #fff; }
.blog-article em { color: var(--soft-pink); }
.blog-article blockquote {
  border-left: 3px solid var(--hot-pink); margin: 1.5rem 0; padding: 1rem 1.5rem;
  background: rgba(255,20,147,0.05); border-radius: 0 12px 12px 0;
  font-style: italic; color: rgba(255,255,255,0.6);
}

/* ============ PODCAST CTA ============ */
.podcast-cta {
  background: linear-gradient(135deg, rgba(255,20,147,0.12), rgba(255,215,0,0.05));
  border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 2rem; margin: 3rem 0; text-align: center;
}
.podcast-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.8rem; }
.podcast-cta p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-size: 0.95rem; }
.podcast-cta .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  border-radius: 50px; text-decoration: none; color: #fff; font-weight: 600; font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-btn.spotify { background: linear-gradient(135deg, #1DB954, #1aa34a); box-shadow: 0 4px 15px rgba(29,185,84,0.4); }
.cta-btn.apple { background: linear-gradient(135deg, #872ec4, #6a1fa0); box-shadow: 0 4px 15px rgba(135,46,196,0.4); }
.cta-btn:hover { transform: translateY(-2px); }

/* ============ RELATED POSTS ============ */
.related-posts { margin-top: 3rem; }
.related-posts h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.2rem; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.related-card {
  background: var(--glass-white); border: 1px solid var(--glass-border); border-radius: 14px;
  padding: 1.2rem; text-decoration: none; transition: border-color 0.3s, transform 0.3s;
}
.related-card:hover { border-color: var(--hot-pink); transform: translateY(-3px); }
.related-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.related-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.5; margin: 0; }

/* ============ BLOG INDEX GRID ============ */
.blog-hero { padding: 5rem 2rem 3rem; text-align: center; position: relative; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.blog-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.blog-grid { max-width: 1000px; margin: 0 auto; padding: 2rem 2rem 5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--glass-white); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); border-radius: 18px;
  padding: 1.8rem; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { border-color: var(--hot-pink); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,20,147,0.12); }
.blog-card .card-tag { font-size: 0.75rem; color: var(--hot-pink); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.8rem; }
.blog-card h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; flex: 1; margin: 0; }
.blog-card .read-more { color: var(--neon-pink); font-weight: 600; font-size: 0.85rem; margin-top: 1rem; }

/* ============ FOOTER ============ */
.blog-footer { padding: 2.5rem 2rem; text-align: center; border-top: 1px solid var(--glass-border); background: rgba(13,13,26,0.9); }
.blog-footer .footer-logo { font-family: 'Pacifico', cursive; font-size: 1.4rem; color: var(--hot-pink); margin-bottom: 0.5rem; }
.blog-footer p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .blog-nav { padding: 0.8rem 1rem; }
  .blog-nav-links { gap: 0.8rem; }
  .blog-nav-links a { font-size: 0.8rem; }
  .blog-nav-links .nav-cta { padding: 0.4rem 1rem; font-size: 0.8rem; }
  .blog-hero { padding: 4rem 1.2rem 2rem; }
  .blog-hero h1 { font-size: 1.8rem; }
  .blog-hero p { font-size: 0.95rem; }
  .blog-article { padding: 2rem 1.2rem 4rem; }
  .blog-article h1 { font-size: 1.6rem; }
  .blog-article h2 { font-size: 1.3rem; }
  .blog-article h3 { font-size: 1.05rem; }
  .blog-article p { font-size: 0.95rem; }
  .blog-article li { font-size: 0.9rem; }
  .blog-meta { font-size: 0.8rem; }
  .podcast-cta { padding: 1.5rem 1.2rem; margin: 2rem 0; }
  .podcast-cta h3 { font-size: 1.1rem; }
  .podcast-cta .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 250px; justify-content: center; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-grid { padding: 1.5rem 1.2rem 4rem; grid-template-columns: 1fr; }
  .blog-card { padding: 1.4rem; }
  .blog-footer { padding: 2rem 1.2rem; }
}
