@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Archivo+Black&display=swap");

:root {
  --bg: #0b0b0f;
  --panel: #151522;
  --panel-strong: #1e1e2e;
  --text: #f3f3f7;
  --muted: #b9b9c7;
  --accent: #ff3b6b;
  --accent-2: #f7b500;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top, #1a1a2e, #0b0b0f 55%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 15, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  margin: 32px 0 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 59, 107, 0.2), transparent 60%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease-out;
}

.hero h1 {
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: #0f0f18;
}

.card-body {
  padding: 14px;
}

.card-title {
  font-weight: 600;
  margin: 0 0 8px;
}

.card-meta {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

.section {
  margin: 36px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  font-size: 13px;
}

.ad-slot {
  margin: 24px 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  color: var(--muted);
}

.seo-text {
  margin-top: 18px;
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #0a0a12;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  background: #0f0f18;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .site-header .wrap {
    flex-direction: column;
    gap: 12px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
