﻿    :root {
      --bg: #0f1724;
      --card: #0b1220;
      --muted: #a3adc4;
      --accent: #2dd4bf;
      --accent-2: #60a5fa;
      --glass: rgba(255,255,255,0.03);
      --max-width: 1000px;
      --radius: 14px;
      --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
      --adminCommandColor: #ca0000;
      --staffCommandColor: #c57600;
      --everyoneCommandColor: #006416;
    }

    html, body {
      margin: 0;
      padding: 0;
      min-height: 100%;   /* allow growth */
    }

    body {
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: linear-gradient(180deg, #071024 0%, #071234 40%, #07112b 100%);
      color: #e6eef6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;

      display: flex;
      justify-content: center;
      padding: 32px;
    }

    .page {
      width: 100%;
      max-width: var(--max-width);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(2,6,23,0.6);
      border: 1px solid rgba(255,255,255,0.05);
      display: grid;
      grid-template-columns: 300px 1fr;
      overflow: hidden;
    }

    /* Sidebar */
    .sidebar {
      padding: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
      border-right: 1px solid rgba(255,255,255,0.05);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .brand {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .logo {
      position: relative;
      width: 60px;
      height: 60px;
      border-radius: 100%;
      background: url('https://image2url.com/images/1760246006954-93b9e33b-65cc-435a-ad32-a2958c436774.png') no-repeat center center;
      background-size: contain;
      box-shadow: 0 6px 16px rgba(8,20,30,0.5);
	  border: 4.5px solid #071024;
    }

    .status {
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      border: 4.5px solid #071024; /* same as background to give a “border” */
      background-color: gray;
    }

    .status.online { background-color: #43b581; } /* green */
    .status.idle { background-color: #faa61a; }   /* yellow/orange */
    .status.dnd { background-color: #f04747; }    /* red */
    .status.invinsible { border: 2px solid #747f8d; } /* gray */
    .status.offline { background-color: #747f8d; } /* gray */

    .activity {
      display: block;
      font-size: 10px;
      color: var(--muted);
      margin-top: 2px;
    }

    h1 { font-size: 18px; margin: 0; }
    .byline { font-size: 13px; color: var(--muted); margin-top: 2px; }

    .nav {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .nav a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      background: var(--glass);
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 14px;
      border: 1px solid rgba(255,255,255,0.04);
      transition: all 0.15s ease;
    }
    .nav a:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.06);
    }

    .meta {
      margin-top: auto;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.4;
    }

    /* Content */
    .content { padding: 28px 32px; }
    .content header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }
    .content h2 { margin: 0; font-size: 22px; }
    .pill {
      font-size: 13px;
      color: #04293a;
      background: var(--accent);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(45,212,191,0.12);
    }

    .section {
      background: rgba(255,255,255,0.015);
      border-radius: 12px;
      padding: 18px;
      margin-bottom: 18px;
      border: 1px solid rgba(255,255,255,0.04);
    }
    .section h3 {
      margin: 0 0 10px 0;
      font-size: 16px;
      font-weight: 600;
    }
    .muted { color: var(--muted); font-size: 14px; line-height: 1.6; }
    ul { margin: 8px 0 8px 20px; }
    code {
      background: rgba(255,255,255,0.05);
      padding: 3px 6px;
      border-radius: 6px;
      font-family: var(--mono);
      font-size: 13px;
    }

    footer {
      margin-top: 14px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    .footerLink {
        color: var(--accent-2);
    }
    .footerLink:hover {
        color: var(--accent);
    }
    .adminCommands {
      color: var(--adminCommandColor);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .page { grid-template-columns: 1fr; }
      .sidebar {
        flex-direction: row;
        gap: 14px;
        padding: 18px;
        align-items: center;
        justify-content: space-between;
      }
      .nav { flex-direction: row; gap: 10px; overflow-x: auto; }
      .content { padding: 20px; }
    }