/* Leonida Daily — GTA 6 content site
   Vice City sunset palette, optimized for readability and ad CTR */

:root {
  --bg: #0a0612;
  --bg-2: #140a1f;
  --surface: #1a1028;
  --border: #2a1d3d;
  --text: #f5e9ff;
  --text-dim: #b8a9d9;
  --pink: #ff2e88;
  --cyan: #00e5ff;
  --gold: #ffb84d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--pink); }

/* Header */
.site-header {
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.logo {
  font-weight: 900; font-size: 22px; letter-spacing: 2px;
  color: var(--text);
}
.logo span { color: var(--pink); }
.site-header nav a {
  color: var(--text-dim); margin-left: 22px;
  font-size: 14px; font-weight: 500;
}
.site-header nav a:hover { color: var(--text); }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 46, 136, 0.25), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 229, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--gold);
  border-radius: 20px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05; font-weight: 900;
  margin-bottom: 18px; max-width: 800px;
  background: linear-gradient(90deg, #fff, var(--pink));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 19px; color: var(--text-dim);
  max-width: 640px; margin-bottom: 32px;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  color: #0a0612 !important; font-weight: 700;
  padding: 14px 28px; border-radius: 8px;
  font-size: 16px; transition: transform .15s ease;
}
.cta:hover { transform: translateY(-2px); }

/* Section title */
.section-title {
  font-size: 28px; font-weight: 800;
  margin: 56px 0 24px;
  border-left: 4px solid var(--pink);
  padding-left: 14px;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: block;
  color: var(--text) !important;
  transition: all .2s ease;
}
.card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 46, 136, 0.15);
}
.card-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.3;
}
.card p {
  color: var(--text-dim);
  font-size: 14px;
}

/* Ad slots — visible outline only in dev, AdSense will fill */
.ad-slot {
  margin: 40px auto;
  min-height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--border);
  border-radius: 8px;
}
.ad-slot:empty::before {
  content: "Ad slot — AdSense unit will render here once approved";
  color: var(--text-dim); font-size: 13px;
}

/* Newsletter */
.newsletter {
  margin: 80px 0 40px;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(255,46,136,.1), rgba(0,229,255,.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}
.newsletter h2 { font-size: 28px; margin-bottom: 8px; }
.newsletter p { color: var(--text-dim); margin-bottom: 24px; }
.newsletter form {
  display: flex; gap: 8px; max-width: 480px; margin: 0 auto;
}
.newsletter input {
  flex: 1; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 15px;
}
.newsletter input:focus { outline: none; border-color: var(--pink); }
.newsletter button {
  padding: 14px 24px;
  background: var(--pink); color: white; border: none;
  border-radius: 8px; font-weight: 700; cursor: pointer;
  font-size: 15px;
}
.newsletter button:hover { background: var(--gold); color: #0a0612; }

/* Article body */
.article {
  max-width: 760px; margin: 0 auto;
  padding: 60px 24px 80px;
}
.article .meta {
  color: var(--text-dim); font-size: 14px;
  margin-bottom: 12px;
}
.article h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1; margin-bottom: 24px;
  font-weight: 900;
}
.article h2 {
  font-size: 26px; margin: 40px 0 14px;
  color: var(--pink);
}
.article p, .article ul {
  font-size: 17px; color: #e6daf7;
  margin-bottom: 18px;
}
.article ul { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--cyan);
  padding-left: 18px; margin: 24px 0;
  color: var(--text-dim); font-style: italic;
}
.article .source {
  font-size: 13px; color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 20px; margin-top: 40px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 60px;
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
}
.site-footer p { margin-bottom: 8px; }
.site-footer a { color: var(--text-dim); margin: 0 6px; }

/* Responsive */
@media (max-width: 640px) {
  .site-header nav a { margin-left: 12px; font-size: 13px; }
  .site-header nav a:nth-child(n+4) { display: none; }
  .hero { padding: 60px 0 48px; }
}
