/* RiotBlock Warden Prison theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --bg: #05070c;
  --panel: rgba(255, 255, 255, 0.04);
  --panel2: rgba(255, 255, 255, 0.06);
  --text: #eaf4ff;
  --muted: rgba(234, 244, 255, 0.72);

  --brand: #00ffc8;
  --brand2: #2fe7ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --stroke: rgba(255, 255, 255, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -5%, rgba(0, 255, 200, 0.18), transparent 60%),
    radial-gradient(circle at 90% 0%, rgba(47, 231, 255, 0.12), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(0, 255, 200, 0.06), transparent 60%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

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

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

/* Subtle overlay noise */
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.10;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 7, 12, 0.60);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 36px;
  height: 36px;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.nav a[aria-current="page"] {
  box-shadow: 0 0 0 1px rgba(0, 255, 200, 0.14);
}

/* Hero */
.hero {
  padding: 72px 0 28px;
  position: relative;
}

.hero-warden {
  text-align: center;
  padding: 92px 0 50px;
  background:
    radial-gradient(circle at center, rgba(0, 255, 200, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.hero-banner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 40px rgba(0, 255, 200, 0.22));
}

.hero-title {
  margin: 0;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
}

.subtext {
  margin: 10px auto 0;
  max-width: 620px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.ip-text {
  margin-top: 14px;
  color: rgba(234, 244, 255, 0.80);
}

button,
.primary {
  border: none;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  background: linear-gradient(135deg, var(--brand), #007a6e);
  color: #001414;
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.30);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.secondary {
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 200, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

/* Strip (status row) */
.strip {
  padding: 16px 0 28px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

.small {
  color: var(--muted);
  font-weight: 600;
}

.big {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
}

/* Sections */
.section {
  padding: 44px 0 52px;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 24px;
}

.section-sub {
  margin: 8px auto 0;
  color: var(--muted);
  max-width: 520px;
}

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

.grid-narrow {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 18px auto 0;
}

.feature-title {
  font-weight: 900;
  font-size: 16px;
}

.feature-text {
  color: var(--muted);
  margin-top: 6px;
}

.link-card {
  display: block;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 200, 0.18);
  background: rgba(0, 255, 200, 0.02);
}

.note {
  max-width: 780px;
  margin: 18px auto 0;
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.steps strong {
  color: var(--text);
}

/* Footer */
.footer {
  padding: 30px 0 18px;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 900;
}

.footer-small {
  margin-top: 4px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.footer-bottom {
  margin-top: 18px;
  color: rgba(234, 244, 255, 0.62);
  text-align: center;
}

/* Responsive */
@media (max-width: 780px) {
  .strip-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-warden {
    padding-top: 76px;
  }
}
/* ENCHANTMENT PAGE */

.enchant-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:16px;
margin-top:20px;
}

.enchant-card{
background:#111;
border:1px solid #2a2a2a;
border-radius:10px;
padding:14px;
transition:0.15s;
}

.enchant-card:hover{
transform:translateY(-3px);
border-color:#4a90ff;
}

.enchant-name{
font-weight:700;
font-size:16px;
margin-bottom:4px;
}

.enchant-desc{
font-size:14px;
opacity:.8;
margin-bottom:6px;
}

.enchant-meta{
font-size:13px;
opacity:.7;
}
/* ENCHANT PAGE */

.search{
  width:100%;
  max-width:450px;
  padding:10px;
  margin:20px 0;
  background:#1a1a1a;
  border:1px solid #333;
  border-radius:8px;
  color:white;
}

.filters{
  margin-bottom:20px;
}

.filters button{
  margin:5px;
  padding:8px 12px;
  background:#222;
  border:1px solid #444;
  color:white;
  border-radius:6px;
  cursor:pointer;
  transition:0.15s;
}

.filters button:hover{
  background:#333;
}

/* Enchant cards grid */
.enchant-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px;
  margin-top:20px;
}

/* Enchant card */
.enchant-card{
  background:#111;
  border-radius:10px;
  padding:14px;
  border-left:5px solid gray;
  border:1px solid #2a2a2a;
  transition:0.15s;
}

.enchant-card:hover{
  transform:translateY(-4px);
  border-color:#4a90ff;
}

/* Card text */
.enchant-name{
  font-weight:700;
  font-size:16px;
  margin-bottom:6px;
}

.enchant-desc{
  font-size:14px;
  opacity:.85;
  margin-bottom:4px;
}

.enchant-meta{
  font-size:13px;
  opacity:.7;
}

/* Rarity colors */

.simple{
  border-left:5px solid #3cff3c;
}

.unique{
  border-left:5px solid #a94cff;
}

.elite{
  border-left:5px solid #4ca3ff;
}

.ultimate{
  border-left:5px solid #ff9b3c;
}

.prestige{
  border-left:5px solid #ff4040;
}
