
    :root {
      --bg: #020617;
      --accent: #38bdf8;
      --accent-soft: rgba(56,189,248,0.12);
      --text: #e5e7eb;
      --text-muted: #9ca3af;
      --card-bg: #020617;
      --card-border: #1f2937;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1e293b 0, #020617 55%, #000 100%);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      justify-content: center;
    }

    .page {
      width: 100%;
      max-width: 980px;
      padding: 2rem 1.25rem 3rem;
    }

    header {
      margin-bottom: 1.7rem;
    }

    header h1 {
      font-size: clamp(1.9rem, 3vw, 2.2rem);
      margin-bottom: 0.3rem;
    }

    header p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .tagline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.6rem;
      padding: 0.1rem 0.65rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(148,163,184,0.5);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--text-muted);
    }

    .tag-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
    }

    /* Toppmeny */
    .nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 1.2rem 0 1.6rem;
    }

    .nav a {
      font-size: 0.85rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: rgba(15,23,42,0.85);
      color: var(--text-muted);
      text-decoration: none;
    }

    .nav a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

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

    .section-block {
      margin-bottom: 1.8rem;
    }

    .section-title {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      color: #e5e7eb;
    }

    .section-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .col {
      border-radius: 1.25rem;
      padding: 1.1rem 1.3rem 1.2rem;
      background: radial-gradient(circle at top left, rgba(56,189,248,0.12), rgba(15,23,42,0.98));
      border: 1px solid rgba(31,41,55,0.9);
      box-shadow: 0 18px 35px -22px rgba(15,23,42,0.9);
      height: 100%;
    }

    .col h2 {
      font-size: 1.05rem;
      margin-bottom: 0.6rem;
    }

    ul {
      list-style: none;
    }

    li + li {
      margin-top: 0.35rem;
    }

    a.link {
      color: var(--accent);
      text-decoration: none;
      font-size: 0.92rem;
    }

    a.link:hover {
      text-decoration: underline;
    }

    .desc {
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-left: 0.4rem;
    }

    .back {
      margin-top: 1.5rem;
      font-size: 0.9rem;
    }

    .back a {
      color: var(--accent);
      text-decoration: none;
    }

    .back a:hover {
      text-decoration: underline;
    }

    @media (max-width: 640px) {
      .page {
        padding-top: 1.6rem;
      }
    }
  