:root {
  /* ===== BRAND COLORS ===== */
  --primary: #ff4fd8;   /* pink */
  --accent:  #4fd8ff;   /* cyan */

  /* ===== BASE ===== */
  --bg: #0b0f18;
  --card: rgba(255,255,255,.09);
  --text: #f5f7fa;
  --muted: rgba(255,255,255,.7);
  --line: rgba(255,255,255,.12);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(79,216,255,.22), transparent 60%),
    radial-gradient(700px 500px at 85% 10%, rgba(255,79,216,.25), transparent 60%),
    var(--bg);
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* ===== TOPBAR ===== */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,15,24,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 800;
  letter-spacing: .4px;
}

nav a {
  margin-left: 16px;
  color: var(--muted);
  font-weight: 500;
}

nav a:hover {
  color: var(--text);
}

/* ===== HERO ===== */
.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: var(--muted);
  max-width: 70ch;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

/* ===== TABLE (fallback hvis du bruger tabel et sted) ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(255,255,255,.08);
  text-align: left;
}

/* ===== FORM ===== */
form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: var(--text);
}

button {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 14px;
  border: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0b0f18;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.05);
}

/* ===== PACKAGES ===== */
.package-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package h2 {
  margin-top: 0;
}

.package .price {
  margin-top: 16px;
  font-weight: 800;
  font-size: 20px;
}

.package.highlight {
  outline: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(255,79,216,.15);
}

/* ===== GAME LIST ===== */
.game-list {
  font-size: 18px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
/* Logo */
.brand-link { display:flex; align-items:center; gap:12px; color:var(--text); }
.logo {
  height: 56px;        /* <-- større logo */
  width: auto;
  display: block;
}

/* Form layout */
.form-grid { display:grid; gap:16px; margin-top:10px; }
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.input { appearance:auto; } /* så select ser pæn ud på flere browsere */
textarea.input { min-height: 140px; }

.actions { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.actions .muted { margin-top: 6px; }

/* Honeypot skjult */
.hp { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }


/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
  max-height: 220px;        /* styrer hvor stort logoet er */
  filter: drop-shadow(0 0 30px rgba(79,216,255,.35));
}

