/* Adult Dark Theme — Premium / Sultry */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;900&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --bg:        #0d0a12;
  --bg-card:   #160f1e;
  --bg-header: #110d18;
  --primary:   #b8479e;
  --secondary: #7c29a6;
  --accent:    #e070c8;
  --text:      #e8dff0;
  --text-muted:#8a7a9e;
  --border:    #2a1a38;
  --glow:      0 0 22px rgba(184,71,158,0.35);
  --glow-sm:   0 0 10px rgba(184,71,158,0.2);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  margin: 0; padding: 0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(124,41,166,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(184,71,158,0.08) 0%, transparent 50%);
}

.container { max-width: 1100px; margin: 2rem auto; padding: 1rem; }

/* ── Header ── */
header {
  background: var(--bg-header);
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--glow), 0 4px 40px rgba(0,0,0,0.6);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(184,71,158,0.1) 0%, transparent 60%),
    repeating-linear-gradient(
      135deg, transparent, transparent 40px,
      rgba(184,71,158,0.02) 40px, rgba(184,71,158,0.02) 41px
    );
}
.site-title-link { text-decoration: none; color: inherit; display: block; position: relative; z-index: 1; }
.site-title-link:hover h1 { text-shadow: 0 0 30px var(--accent); }
h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 5px; margin: 0;
  color: var(--primary);
  text-shadow: 0 0 25px rgba(184,71,158,0.5), 0 2px 4px rgba(0,0,0,0.6);
}
header p {
  font-size: 0.85rem; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 0.9rem; position: relative; z-index: 1;
}

/* ── Layout ── */
.content-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start;
}
@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 1rem; }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}
.sidebar-widget:hover { border-color: var(--secondary); box-shadow: 0 0 12px rgba(124,41,166,0.25); }
.widget-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--primary);
  margin: 0 0 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 2px; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-list a:hover { color: var(--accent); }
.sidebar-date { font-size: 0.72rem; color: var(--text-muted); }

/* ── Article Card ── */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 6px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article-card:hover { border-color: var(--primary); box-shadow: var(--glow-sm); }
.article-card h3 { color: #fff; font-size: 1.05rem; margin: 0.5rem 0 0.8rem; line-height: 1.35; font-weight: 700; }
.article-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; flex-grow: 1; margin-bottom: 1.2rem; }
.article-card .meta { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--secondary); }
.read-more-btn {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  text-decoration: none; font-weight: 700; font-size: 0.8rem;
  padding: 0.6rem 1.2rem; border: none;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 1.5px;
  text-align: center; transition: all 0.2s;
}
.read-more-btn:hover { box-shadow: var(--glow); opacity: 0.9; }

/* ── Article ── */
article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}
article h2 { font-family: 'Merriweather', serif; color: #fff; font-size: 1.9rem; line-height: 1.3; margin-bottom: 0.8rem; }
.article-content h2, .article-content h3 { font-family: 'Merriweather', serif; color: var(--accent); }
.article-content a { color: var(--primary); }
.article-content strong { color: #fff; }
.crypto-metadata {
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.read-time { color: var(--accent); font-weight: 700; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Hero Image ── */
.article-hero-image { margin: 1.5rem 0 2rem; border: 1px solid var(--primary); box-shadow: var(--glow); overflow: hidden; border-radius: 6px; line-height: 0; }
.article-hero-image img { width: 100%; height: 360px; object-fit: cover; display: block; }
@media (max-width: 768px) { .article-hero-image img { height: 200px; } }
.image-credit { padding: 0.35rem 0.7rem; background: rgba(0,0,0,0.5); font-size: 0.7rem; color: var(--text-muted); }

/* ── Tags ── */
.keyword-tags { margin: 1.5rem 0 1rem; padding: 1rem; background: rgba(184,71,158,0.06); border-left: 3px solid var(--primary); font-size: 0.82rem; }
.keyword-tags strong { color: var(--primary); margin-right: 0.5rem; font-weight: 700; }
.tag { display: inline-block; background: rgba(124,41,166,0.18); color: var(--accent); font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; margin: 0.2rem; text-transform: uppercase; letter-spacing: 0.06em; border: 1px solid rgba(184,71,158,0.3); border-radius: 3px; }

/* ── Related Articles ── */
.related-articles { margin: 2rem 0 1rem; padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--secondary); border-radius: 6px; }
.related-articles h3 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary); margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.related-list { list-style: none; margin: 0; padding: 0; }
.related-list li { padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.related-list li:last-child { border-bottom: none; }
.related-list a { color: var(--text); font-weight: 600; font-size: 0.87rem; text-decoration: none; }
.related-list a:hover { color: var(--accent); }

/* ── Ad / Footer ── */
.ad-slot { border: 1px dashed var(--secondary); padding: 1rem; margin: 1rem 0; text-align: center; background: rgba(124,41,166,0.05); border-radius: 4px; }
footer { margin-top: 4rem; background: var(--bg-header); border-top: 1px solid var(--border); padding: 2rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 768px) { h1 { font-size: 2rem; } .article-grid { grid-template-columns: 1fr; } article { padding: 1.5rem; } }
