/* ==========================================================
   CodeKings Patch Notes Theme (v1.1 – Frostfall Edition)
   Gamified + Professional Font Version
   Headings: Cinzel  |  Body/UI: Inter
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --patch-bg: #0a0f14;
  --patch-panel: #10161d;
  --patch-panel-2: #0d1319;
  --patch-border: rgba(255,255,255,0.08);
  --patch-text: #e8f3ff;
  --patch-muted: #9fb3c6;
  --patch-accent: #00d4ff;
  --patch-gold: #ffd36b;
}

/* ===========================
   PAGE BASE
   =========================== */
body.patch-notes {
  background: var(--patch-bg);
  color: var(--patch-text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   HERO HEADER
   =========================== */
.patch-hero {
  text-align: center;
  padding: 70px 20px 50px;
  background: radial-gradient(800px 500px at 50% 0%, rgba(0,212,255,0.12), transparent 70%);
}

.patch-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  color: var(--patch-text);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.patch-hero .patch-tagline {
  font-size: 15px;
  color: var(--patch-muted);
  margin-top: 5px;
}

.patch-date {
  font-size: 14px;
  color: var(--patch-muted);
  margin-top: 4px;
}

/* ===========================
   PATCH SECTIONS
   =========================== */
.patch-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 28px 30px;
  background: linear-gradient(180deg, var(--patch-panel), var(--patch-panel-2));
  border: 1px solid var(--patch-border);
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.patch-section:hover {
  border-color: rgba(0,212,255,0.25);
  box-shadow: 0 0 28px rgba(0,212,255,0.18);
}

.patch-section h2 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--patch-gold);
  text-shadow: 0 0 6px rgba(255,215,120,0.45);
}

.patch-section h3 {
  font-family: "Cinzel", serif;
  font-size: 19px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--patch-text);
}

.patch-section ul {
  margin-left: 1.3rem;
  margin-top: 8px;
}

.patch-section li {
  padding-bottom: 4px;
}

/* ===========================
   IMAGE BLOCKS
   =========================== */
.patch-img {
  margin: 20px 0;
  text-align: center;
}

.patch-img img {
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 25px rgba(0,212,255,0.35);
}

/* ===========================
   NAVIGATION BUTTONS
   =========================== */
.patch-nav {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.patch-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--patch-border);
  color: var(--patch-text);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: all 0.22s ease;
}

.patch-btn:hover {
  background: rgba(0,212,255,0.12);
  border-color: var(--patch-accent);
  box-shadow: 0 0 16px rgba(0,212,255,0.25);
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .patch-section {
    padding: 20px 18px;
  }
  .patch-hero {
    padding: 50px 12px 28px;
  }
  .patch-hero h1 {
    font-size: 32px;
  }
  .patch-nav {
    flex-direction: column;
    gap: 10px;
  }
}
