:root {
  --blood: #8B0000;
  --blood-bright: #C0392B;
  --rust: #7D4E2D;
  --ash: #1A1A1A;
  --smoke: #2C2C2C;
  --fog: #3D3D3D;
  --bone: #C8B89A;
  --pale: #E8DCC8;
  --toxic: #4A7C4E;
  --toxic-bright: #5DBB63;
  --dim: #888;
  --text: #D4C9B0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ash);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #0A0A0A;
}

/* Fog layers */
.fog-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fog-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 60% at 50% 80%, rgba(139,0,0,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 80% 40% at 20% 60%, rgba(74,124,78,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0,0,0,0.8) 0%, transparent 70%);
}

/* Scan lines */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Barbed wire decoration */
.wire-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--rust) 0px, var(--rust) 8px,
    transparent 8px, transparent 14px,
    var(--rust) 14px, var(--rust) 16px,
    transparent 16px, transparent 20px
  );
  z-index: 10;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 85%, rgba(139,0,0,0.2) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(74,124,78,0.1) 0%, transparent 35%),
    linear-gradient(160deg, #0D0D0D 0%, #111 40%, #0A0A0A 100%);
}

/* Grid lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,124,78,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,78,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 40px 20px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,124,78,0.15);
  border: 1px solid rgba(93,187,99,0.3);
  padding: 6px 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--toxic-bright);
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeSlideDown 0.8s ease forwards;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--toxic-bright);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--toxic-bright); }
  50% { opacity: 0.4; box-shadow: none; }
}

.server-name {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 0 0 40px rgba(139,0,0,0.5), 0 4px 0 rgba(139,0,0,0.3);
  animation: fadeSlideUp 1s ease 0.2s both;
  position: relative;
}

.server-name .word-outbreak {
  display: block;
  color: var(--bone);
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

.server-name .word-exodus {
  display: block;
  color: var(--blood-bright);
  text-shadow: 0 0 60px rgba(192,57,43,0.6), 0 0 20px rgba(192,57,43,0.4);
  -webkit-text-stroke: 1px rgba(192,57,43,0.3);
}

.word-exodus .ex-letter {
  display: inline-block;
  animation-name: letterFlicker;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Each letter gets its own duration + delay so they never sync up —
   a broken neon sign, not a word blinking as one unit. Occasional
   dips to opacity 0 read as the letter going fully dark for a beat. */
.word-exodus .ex-letter:nth-child(1) { animation-duration: 6.2s; animation-delay: 0s;    }
.word-exodus .ex-letter:nth-child(2) { animation-duration: 5.4s; animation-delay: 0.7s;  }
.word-exodus .ex-letter:nth-child(3) { animation-duration: 7.3s; animation-delay: 1.4s;  }
.word-exodus .ex-letter:nth-child(4) { animation-duration: 6.8s; animation-delay: 0.3s;  }
.word-exodus .ex-letter:nth-child(5) { animation-duration: 5.9s; animation-delay: 2.1s;  }

/* The S — after a little bit, it swings loose on a broken mount,
   hanging tilted to the right for good. Runs once (no iteration on
   the fall), holds its final pose via fill-mode forwards — stays
   broken until the page reloads. Pivots from its bottom-left corner
   so it swings away from the D, not into it. */
.word-exodus .ex-letter:nth-child(6) {
  display: inline-block;
  animation-name: letterFlicker, letterFall;
  animation-duration: 7.6s, 1.4s;
  animation-timing-function: ease-in-out, cubic-bezier(.36,.2,.4,1.3);
  animation-iteration-count: infinite, 1;
  animation-delay: 1.0s, 13s;
  animation-fill-mode: none, forwards;
  transform-origin: bottom left;
}

@keyframes letterFall {
  0%   { transform: rotate(0deg); }
  55%  { transform: rotate(95deg); }
  78%  { transform: rotate(76deg); }
  100% { transform: rotate(85deg); }
}

@keyframes letterFlicker {
  0%, 100%  { opacity: 1; }
  4%        { opacity: 0.4; }
  5%        { opacity: 1; }
  8%        { opacity: 0.15; }
  9%        { opacity: 1; }
  42%       { opacity: 1; }
  43%       { opacity: 0.5; }
  44%       { opacity: 1; }
  67%       { opacity: 1; }
  68%       { opacity: 0; }
  69%       { opacity: 0.7; }
  70%       { opacity: 0; }
  72%       { opacity: 1; }
  88%       { opacity: 1; }
  89%       { opacity: 0.3; }
  90%       { opacity: 1; }
}

.tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 20px;
  margin-bottom: 48px;
  animation: fadeSlideUp 1s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s ease 0.7s both;
}

.btn-primary {
  position: relative;
  background: var(--blood-bright);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: crosshair;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.btn-primary:hover { background: #a93226; transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-secondary {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(200,184,154,0.3);
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: crosshair;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover { 
  border-color: rgba(200,184,154,0.7); 
  color: #fff;
  transform: translateY(-2px);
}

/* Server stats strip */
.stats-strip {
  background: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(139,0,0,0.4);
  border-bottom: 1px solid rgba(139,0,0,0.4);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.3s;
}

.stat-item:hover { background: rgba(139,0,0,0.08); }
.stat-item:last-child { border-right: none; }

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-value {
  font-family: 'Black Ops One', cursive;
  font-size: 28px;
  color: #fff;
}

.stat-value.online { color: var(--toxic-bright); }
.stat-value.danger { color: var(--blood-bright); }

/* SECTION STYLES */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--blood-bright);
  text-transform: uppercase;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,0,0,0.5), transparent);
}

.section-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--bone);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 1px;
  max-width: 600px;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(139,0,0,0.15);
  border: 1px solid rgba(139,0,0,0.2);
}

.feature-card {
  background: rgba(10,10,10,0.95);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--blood-bright);
  transition: height 0.4s ease;
}

.feature-card:hover { background: rgba(20,10,10,0.95); }
.feature-card:hover::before { height: 100%; }

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.3);
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* RULES SECTION */
.rules-section {
  background: rgba(5,5,5,0.8);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 700px) {
  .rules-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; }
}

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rules-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid transparent;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.rules-list li:hover {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--blood-bright);
}

.rule-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--blood-bright);
  padding-top: 2px;
  min-width: 24px;
}

/* MAP SECTION */
.map-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.map-card {
  position: relative;
  overflow: hidden;
  background: var(--smoke);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.map-card:hover {
  border-color: rgba(200,184,154,0.3);
  transform: translateY(-4px);
}

.map-card-name {
  font-family: 'Black Ops One', cursive;
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 6px;
}

.map-card-type {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--toxic-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.map-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.6;
}

.map-card-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--blood-bright);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 3px 8px;
}

/* CONNECT SECTION */
.connect-wrap {
  background: linear-gradient(135deg, rgba(139,0,0,0.15) 0%, rgba(0,0,0,0) 60%);
  border: 1px solid rgba(139,0,0,0.25);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.connect-wrap::before {
  content: 'EXODUS';
  position: absolute;
  font-family: 'Black Ops One', cursive;
  font-size: 180px;
  color: rgba(139,0,0,0.04);
  right: -20px;
  bottom: -30px;
  pointer-events: none;
  line-height: 1;
}

.ip-display {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--toxic-bright);
  background: rgba(74,124,78,0.1);
  border: 1px solid rgba(93,187,99,0.25);
  padding: 16px 32px;
  display: inline-block;
  letter-spacing: 4px;
  margin: 24px 0;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.ip-display:hover { background: rgba(74,124,78,0.2); }
.ip-display::after {
  content: '[ CLICK TO COPY ]';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  white-space: nowrap;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865F2;
  color: #fff;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 36px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
}

.discord-btn:hover { background: #4752C4; transform: translateY(-2px); }

/* FOOTER */
footer {
  background: #000;
  border-top: 1px solid rgba(139,0,0,0.3);
  padding: 32px 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Black Ops One', cursive;
  font-size: 24px;
  color: var(--blood-bright);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #444;
}

/* Animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,0,0,0.2);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  font-family: 'Black Ops One', cursive;
  font-size: 18px;
  color: var(--blood-bright);
  letter-spacing: 2px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--bone); }

.nav-link-disabled {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  cursor: not-allowed;
  user-select: none;
}

.wire-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--rust) 0px, var(--rust) 8px,
    transparent 8px, transparent 14px,
    var(--rust) 14px, var(--rust) 16px,
    transparent 16px, transparent 20px
  );
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s ease 1.2s both;
  z-index: 5;
}

.scroll-hint span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: #444;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--blood-bright));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0; transform: translateY(-8px); }
  50% { opacity: 1; transform: translateY(0); }
}

/* Copy toast */
#copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: rgba(74,124,78,0.95);
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 12px 24px;
  z-index: 9998;
  transition: transform 0.3s ease;
  pointer-events: none;
}

#copy-toast.show { transform: translateX(-50%) translateY(0); }

/* Rules 4-col grid */
.rules-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .rules-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .rules-grid-4 { grid-template-columns: 1fr; }
}

.rules-cat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blood-bright);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* PREMIUM TIERS */
.tier-perks-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.tier-perk {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-perk-div {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  margin: 0 16px;
}

@media (max-width: 600px) { .tier-perk-div { display: none; } }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

@media (max-width: 700px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  background: #0E0E0E;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, background 0.3s;
}

.tier-card:hover { background: #141414; transform: translateY(-4px); }

.tier-featured {
  background: #111;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.tier-popular-tag {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(192,57,43,0.85);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: #fff;
  padding: 5px;
  text-align: center;
}

.tier-medal { font-size: 40px; margin-bottom: 12px; margin-top: 8px; }

.tier-name {
  font-family: 'Black Ops One', cursive;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tier-bronze .tier-name { color: #CD7F32; }
.tier-silver .tier-name { color: #C0C0C0; }
.tier-gold   .tier-name { color: #FFD700; text-shadow: 0 0 20px rgba(255,215,0,0.4); }

.tier-duration {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tier-price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 4px;
}

.tier-currency {
  font-family: 'Share Tech Mono', monospace;
  font-size: 18px;
  color: var(--toxic-bright);
  padding-top: 6px;
}

.tier-price {
  font-family: 'Black Ops One', cursive;
  font-size: 42px;
  color: #fff;
  letter-spacing: -1px;
}

.tier-note {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: #444;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tier-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 24px;
}

.tier-bronze .tier-divider { background: rgba(205,127,50,0.4); }
.tier-silver .tier-divider { background: rgba(192,192,192,0.4); }
.tier-gold   .tier-divider { background: rgba(255,215,0,0.4); }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--dim);
}

.tier-features li { color: var(--text); }