:root {
  --bg: #000000;
  --surface: #111111;
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #ff0055; /* Verge-style neon pink */
  --accent-alt: #00f2ff; /* Cyber blue */
  --border: #333333;
  --ad-bg: #1a1a1a;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

/* Layout */
.site-header,
.post-header,
.site-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.site-header p {
  margin: 20px 0 0;
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
}

/* Main Content Grid */
.site-main,
.post-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

/* Posts List */
.posts-list h2 {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.post-card {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.post-card h3 {
  margin: 0 0 12px;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.post-card p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 15px;
}

.post-card .meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-alt);
  text-transform: uppercase;
}

/* Article Styling */
#postMeta h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 10px 0 25px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.post-subtitle {
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 800px;
}

.hero-full-width {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.post-content {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
}

.post-content p {
  margin-bottom: 1.8rem;
}

.post-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 2em 0 0.8em;
  color: var(--accent);
}

.post-content a {
  color: var(--accent-alt);
  text-decoration: underline;
}

/* Custom Call to Action Style */
.cta-box {
  background: var(--surface);
  border: 2px solid var(--accent);
  padding: 40px;
  margin: 60px 0;
  position: relative;
}

.cta-box::before {
  content: "ACTION REQUIRED";
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 2px 8px;
  font-weight: 900;
}

.sidebar {
  position: sticky;
  top: 40px;
}

.ad-card {
  background: var(--surface);
  padding: 25px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  position: relative;
}

.ad-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.ad-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.1em;
}

.channels-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 20px;
}

.channels-container {
  max-width: 1400px;
  margin: 0 auto;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.channels-grid a {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 20px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channels-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg);
}

.site-footer {
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr; }
  .site-main, .post-main { grid-template-columns: 1fr; gap: 40px; }
  .post-card h3 { font-size: 2rem; }
}

