:root {
  --bg: #0b0b0d;
  --surface: #141418;
  --red: #b11226;
  --plex: #e5a00d;
  --text: #eaeaea;
  --muted: #9a9a9a;
  --border: #2a2a2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
}

.logo span {
  color: var(--plex);
}

nav a {
  color: var(--muted);
  margin-left: 1.5rem;
  text-decoration: none;
}

nav a:hover {
  color: var(--plex);
}

.hero {
  background: linear-gradient(180deg, #141418, #0b0b0d);
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 0.5rem;
}

.primary {
  background: var(--plex);
  color: #000;
  font-weight: 600;
}

.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pricing {
  background: var(--surface);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.plan {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
}

.plan.highlight {
  border-color: var(--plex);
}

.price {
  font-size: 1.5rem;
  color: var(--plex);
}

.status-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 6px;
}

.status-box.online .dot {
  background: #2ecc71;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.footer {
  border-top: 1px solid var(--border);
  text-align: center;
}

.muted {
  color: var(--muted);
}
