/* ─── NEWSINTENT PLATINUM MIDNIGHT & GOLD ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&display=swap');

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

:root {
  --bg-primary:   #020617; /* Very deep blue-black */
  --bg-secondary: #0f172a; /* Slate 900 */
  --bg-tertiary:  #1e293b; /* Slate 800 */
  --border-color: #334155; /* Slate 700 */
  --accent-gold:  #fbbf24; /* Amber 400 */
  --accent-hover: #f59e0b; /* Amber 500 */
  --text-main:    #f8fafc; /* Slate 50 */
  --text-muted:   #94a3b8; /* Slate 400 */
  --radius:       8px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
a:hover { color: var(--accent-gold); }

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

/* ─── HIGHLIGHT BARS ─── */
.top-strip { background: var(--bg-primary); color: var(--accent-gold); font-size: 11px; text-transform: uppercase; font-weight: 800; padding: 12px 0; border-bottom: 1px solid var(--border-color); letter-spacing: 1.5px; }
.top-strip-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* ─── HEADER ─── */
header { background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--accent-gold); padding: 20px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -1px; text-transform: uppercase; }
.logo span { color: var(--accent-gold); font-weight: 900; }
.logo-tag { font-size: 11px; font-family: 'Inter'; letter-spacing: 4px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; margin-left: 5px; }

/* ─── NAVIGATION ─── */
.main-nav { display: flex; gap: 35px; }
.main-nav a { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--text-main); letter-spacing: 1px; position: relative; padding-bottom: 5px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-gold); transition: width 0.3s; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* ─── UI ELEMENTS ─── */
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 30px; border-bottom: 2px solid var(--border-color); padding-bottom: 15px; position: relative; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 80px; height: 2px; background: var(--accent-gold); }

.badge { display: inline-block; background: var(--accent-gold); color: #000; font-size: 10px; font-weight: 900; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }

/* ─── LAYOUTS ─── */
.layout-hero { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-top: 40px; height: 600px; }
.layout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.layout-sidebar { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }

/* ─── CARDS ─── */
.card-hero { position: relative; height: 100%; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.card-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.7s; }
.card-hero:hover img { transform: scale(1.05); opacity: 0.8; }
.card-hero .overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 50px 40px; background: linear-gradient(transparent, rgba(2,6,23,1)); }
.card-hero h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; line-height: 1.1; margin-bottom: 15px; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }

.card-dark { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 25px; transition: all 0.3s; display: flex; flex-direction: column; }
.card-dark:hover { border-color: var(--accent-gold); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.card-dark-img { width: 100%; height: 200px; border-radius: 4px; overflow: hidden; margin-bottom: 20px; background: #000; }
.card-dark-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card-dark:hover .card-dark-img img { transform: scale(1.05); }
.card-dark h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.card-meta { font-size: 13px; font-weight: 600; color: var(--text-muted); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 15px; margin-top: auto; }

.card-list { display: flex; gap: 20px; align-items: center; padding: 20px; border-bottom: 1px solid var(--border-color); transition: background 0.2s; }
.card-list:hover { background: var(--bg-secondary); }
.card-list-img { width: 120px; height: 90px; border-radius: 4px; overflow: hidden; background: #000; flex-shrink: 0; }
.card-list-img img { width: 100%; height: 100%; object-fit: cover; }
.card-list-body h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 800; line-height: 1.3; margin-bottom: 5px; }

/* ─── SIDEBAR ─── */
.widget { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 30px; margin-bottom: 30px; }
.widget-title { font-size: 14px; text-transform: uppercase; font-weight: 900; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.widget-title::before { content: ""; display: block; width: 8px; height: 8px; background: var(--accent-gold); border-radius: 50%; }
.subscribe-form input { width: 100%; padding: 15px; background: var(--bg-primary); border: 1px solid var(--border-color); color: #fff; font-family: inherit; font-size: 14px; margin-bottom: 15px; border-radius: 4px; outline: none; }
.subscribe-form input:focus { border-color: var(--accent-gold); }
.subscribe-form button { width: 100%; padding: 15px; background: var(--accent-gold); color: #000; font-weight: 900; text-transform: uppercase; border: none; letter-spacing: 1px; border-radius: 4px; cursor: pointer; transition: background 0.3s; }
.subscribe-form button:hover { background: var(--accent-hover); }

/* ─── POST DETAILS ─── */
.post-detail-header { text-align: center; max-width: 900px; margin: 60px auto; }
.post-detail-title { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 30px; }
.post-detail-meta { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.post-detail-meta span { color: var(--accent-gold); }
.post-detail-hero { width: 100%; height: 600px; background: #000; border-radius: var(--radius); overflow: hidden; margin-bottom: 50px; }
.post-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-article-body { font-size: 19px; line-height: 1.8; color: var(--text-main); font-weight: 300; }
.post-article-body p { margin-bottom: 30px; }
.post-article-body h2, .post-article-body h3 { font-family: 'Playfair Display', serif; color: #fff; margin: 50px 0 25px; }
.post-article-body blockquote { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; font-style: italic; color: var(--accent-gold); padding: 30px 40px; border-left: 4px solid var(--accent-gold); background: var(--bg-secondary); margin: 50px 0; border-radius: 4px; }

/* ─── POST SHARE & LAYOUTS ─── */
.post-content-layout { display: grid; grid-template-columns: 1fr 350px; gap: 60px; padding-bottom: 80px; }
.share-strip { display: flex; gap: 15px; margin: 40px 0; padding: 20px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.share-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); color: var(--text-muted); font-size: 18px; transition: all 0.3s; border: 1px solid var(--border-color); }
.share-btn:hover { background: var(--accent-gold); color: #000; border-color: var(--accent-gold); transform: translateY(-3px); }

.related-section { margin-top: 50px; padding: 80px 0; border-top: 1px solid var(--border-color); background: var(--bg-secondary); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }

/* ─── FOOTER ─── */
footer { background: #000; padding: 80px 0 40px; border-top: 1px solid var(--border-color); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-title { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 25px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); font-size: 15px; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid #1a1a1a; font-size: 13px; color: #666; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
