/* ============================================================
   AI DAILY — theme-neon.css (v2 — Arche Edition)
   Override: Hell + Navy + Gold + Apple-Glass + 3-6-9 Animation
   ============================================================ */

:root {
  --color-bg:           #F0F2F5;
  --color-surface:      #FFFFFF;
  --color-surface-2:    #FFFFFF;
  --color-border:       rgba(13, 27, 42, 0.10);
  --color-navy:         #0D1B2A;
  --color-accent:       #E8A020;
  --color-accent-hover: #C88A00;
  --color-accent-glow:  rgba(232, 160, 32, 0.20);
  --color-text:         #0D1B2A;
  --color-text-muted:   #4A5A6B;
  --color-text-dim:     #8A9BB0;
  --shadow-card:  0 2px 8px rgba(13,27,42,0.06), 0 8px 32px rgba(13,27,42,0.1), 0 0 0 1px rgba(13,27,42,0.04);
  --shadow-hover: 0 4px 16px rgba(13,27,42,0.1), 0 16px 48px rgba(13,27,42,0.14), 0 0 0 1px rgba(13,27,42,0.06);
  --color-red: #0D1B2A;
}

/* --- Branding: Arche News (Global) --- */
.logo-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 26px !important;
  letter-spacing: 1.5px;
  color: #FFFFFF !important; /* NEWS in Weiß */
  -webkit-text-fill-color: initial !important; /* Fix für style.css Override */
  background: none !important; /* Fix für style.css Override */
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
}
.logo-bold {
  font-weight: 800;
  color: var(--color-accent) !important; /* ARCHE in Gold */
}
.logo-icon { display: none !important; }

body {
  background-color: #F5C050; /* Sattes Arche-Gold */
  background-image: 
    radial-gradient(at 0% 0%, rgba(13, 27, 42, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 255, 255, 0.3) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(13, 27, 42, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(232, 160, 32, 0.2) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--color-navy);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Abstrakte Zahlen im Hintergrund (Invertiert auf Navy) */
body::before, body::after {
  position: fixed;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--color-navy);
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
  line-height: 0.8;
}

body::before {
  content: '3';
  font-size: 60vw;
  top: -10vw;
  left: -15vw;
}

body::after {
  content: '9';
  font-size: 50vw;
  bottom: -5vw;
  right: -10vw;
}

/* --- Canvas Nervensystem --- */
#network-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none; /* Klicks gehen durch auf die Seite */
}

.site-header, .ticker-bar, .site-main, .site-footer { 
  position: relative; 
  z-index: 1; 
}

/* --- Header & Ticker --- */
.site-header { background: var(--color-navy); border-bottom: 1px solid rgba(255,255,255,0.07); box-shadow: 0 2px 16px rgba(13,27,42,0.25); }
.logo-text { background: linear-gradient(135deg, #FFF 30%, var(--color-accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 26px; letter-spacing: 5px; }
.logo-icon, .header-nav { display: none; }
.header-date { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 1.2px; }
.ticker-bar { background: #111E2D; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticker-label { background: var(--color-accent); color: var(--color-navy); }
.ticker-dot { background: var(--color-navy); }
.ticker-item { color: rgba(255,255,255,0.7); }
.ticker-item:hover { color: #fff; }
.ticker-item::after { color: var(--color-accent); }

/* --- Sections --- */
.section-title { color: var(--color-text-dim); letter-spacing: 2.5px; }
.section-line { background: rgba(13,27,42,0.12); }

/* --- Articles --- */
.hero-article {
  background: var(--color-surface-2); 
  border: 1px solid rgba(13, 27, 42, 0.05);
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.12);
}
.hero-article:hover { border-color: #fff; box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.hero-content::before { background: radial-gradient(circle at top right, rgba(232,160,32,0.07), transparent 65%); }
.hero-title { color: var(--color-navy); }
.hero-teaser { color: var(--color-text-muted); }
.hero-exclusive { color: var(--color-accent); border-color: rgba(232,160,32,0.55); }
.hero-meta { border-top-color: rgba(13,27,42,0.1); color: var(--color-text-dim); }
.read-more-btn { background: var(--color-navy); color: #fff; box-shadow: 0 4px 16px rgba(13,27,42,0.25); }
.read-more-btn:hover { background: #162840; }

.article-card {
  background: var(--color-surface); 
  border: 1px solid rgba(13, 27, 42, 0.05);
  box-shadow: 0 15px 30px rgba(13, 27, 42, 0.1);
}
.article-card:hover { border-color: #fff; box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-title { color: var(--color-navy); }
.article-card:hover .card-title { color: var(--color-accent); }
.card-teaser { color: var(--color-text-muted); }
.card-footer { border-top-color: rgba(13,27,42,0.08); }
.card-link { color: var(--color-accent); font-weight: 600; }

/* --- Badges & Spacing --- */
.cat-breaking { background: rgba(13,27,42,0.08); color: var(--color-navy); }
.cat-agents, .cat-policy, .cat-analysis { background: rgba(232,160,32,0.12); color: #A87000; }
.cat-research, .cat-hardware { background: rgba(13,27,42,0.08); color: var(--color-navy); }

.site-main { padding: 56px 32px 80px; }
.hero-section { margin-bottom: 64px; }
.articles-section { margin-bottom: 52px; }
.card-body { padding: 28px 26px; gap: 14px; }
.hero-content { padding: 52px 48px; gap: 20px; }
.articles-grid-3, .articles-grid-2 { gap: 28px; }

/* --- Footer Refinement --- */
.site-footer { 
  background: var(--color-navy); 
  padding: 60px 0;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-copy { 
  color: rgba(255,255,255,0.4); 
  font-size: 14px;
}
.footer-copy span { color: var(--color-accent); font-weight: 600; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.3); font-size: 13px; transition: var(--transition); }
.footer-links a:hover { color: var(--color-accent); }
