/* =============================================
   PRIME PULSE - Blog Shared Styles (blog-styles.css)
   ============================================= */
:root {
  --primary: #D4AF37;
  --dark: #0a0a0a;
  --dark2: #111111;
  --card-bg: #161616;
  --text: #e8e8e8;
  --text-muted: #999;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #D4AF37 0%, #f0d060 50%, #b8941e 100%);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
body { font-family: 'Open Sans', sans-serif; background: var(--dark); color: var(--text); line-height: 1.7; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.3; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(212,175,55,0.2); padding: 0 20px; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1000px; margin: 0 auto; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); }
.nav-logo strong { color: var(--primary); }
.nav-cta { background: var(--gradient); color: var(--dark); font-family: 'Montserrat', sans-serif; font-weight: 800; padding: 10px 24px; border-radius: 50px; font-size: 14px; min-height: 44px; display: flex; align-items: center; transition: transform 0.3s; }
.nav-cta:hover { transform: scale(1.05); }

/* Post Header */
.post-header { background: linear-gradient(135deg, #0a0a0a, #1a1400); padding: 80px 20px 60px; border-bottom: 1px solid rgba(212,175,55,0.15); text-align: center; }
.post-tag { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4); color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; }
.post-header h1 { font-size: clamp(24px, 4vw, 44px); color: var(--white); margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.post-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 14px; color: var(--text-muted); }

/* Post Body */
.post-body { padding: 60px 0; }
.post-container { display: grid; grid-template-columns: 1fr; }
.post-content { max-width: 800px; margin: 0 auto; }

.post-content p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 24px; }
.post-content h2 { font-size: clamp(22px, 3vw, 32px); color: var(--white); margin: 40px 0 16px; }
.post-content h3 { font-size: clamp(18px, 2.5vw, 24px); color: var(--primary); margin: 28px 0 12px; }

/* Highlight Box */
.highlight-box { background: rgba(212,175,55,0.08); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin-bottom: 32px; font-size: 16px; color: var(--text); line-height: 1.8; }

/* List */
.post-list { padding-left: 8px; margin: 16px 0 24px; list-style: none; }
.post-list li { padding: 10px 0 10px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 16px; color: var(--text); position: relative; }
.post-list li::before { content: '✅'; position: absolute; left: 0; }

/* Review Quote */
.review-quote { background: var(--card-bg); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius); padding: 24px; margin: 20px 0; font-size: 15px; color: var(--text); font-style: italic; line-height: 1.8; }

/* CTA Box */
.cta-box { background: linear-gradient(135deg, #1a1400, #0a0a0a); border: 2px solid var(--primary); border-radius: 24px; padding: 40px 32px; text-align: center; margin: 40px 0; }
.cta-box h3 { font-size: 24px; color: var(--white); margin-bottom: 12px; }
.cta-box p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.btn-cta { display: inline-block; background: var(--gradient); color: var(--dark); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; padding: 16px 36px; border-radius: 50px; transition: transform 0.3s, box-shadow 0.3s; min-height: 56px; line-height: 1.4; }
.btn-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(212,175,55,0.5); }

/* Related Posts */
.related-posts { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.related-posts a { display: block; background: var(--card-bg); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-sm, 8px); padding: 16px 20px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; color: var(--text); transition: border-color 0.3s, color 0.3s; }
.related-posts a:hover { border-color: var(--primary); color: var(--primary); }

/* Footer */
.footer { background: var(--dark2); border-top: 1px solid rgba(212,175,55,0.1); padding: 40px 20px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer p { font-size: 13px; color: var(--text-muted); }
.disclaimer-text { margin-top: 8px !important; font-size: 11px !important; }

@media (max-width: 768px) {
  .post-header { padding: 60px 20px 40px; }
  .post-body { padding: 40px 0; }
  .cta-box { padding: 28px 20px; }
  .btn-cta { font-size: 16px; padding: 14px 24px; width: 100%; display: block; text-align: center; }
}
