        :root {
            --bg: #0f1724;
            --card: #0b1220;
            --muted: #9aa6b2;
            --accent: #06b6a4;
            --accent-2: #7c3aed;
            --text: #e6eef6;
            --glass: rgba(255, 255, 255, 0.03);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial;
            margin: 0;
            background: linear-gradient(180deg, var(--bg) 0%, #061019 100%);
            color: var(--text);
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            padding: 20px;
        }

        .site-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .logo a {
            color: #b56fd6;
            /* 👈 Set your desired color */
            text-decoration: none;
        }

        .logo a:visited {
            color: #b56fd6;
            /* 👈 Prevent color change after visiting */
        }

        .logo a:hover {
            color: #e4e4e4;
            /* Optional hover color */
        }

        .tag {
            color: var(--muted);
            font-size: 13px;
        }

        .file-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            padding: 18px;
            border-radius: 12px;
            margin-top: 24px;
            box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
        }

        .file-meta h1 {
            margin: 0 0 6px 0;
            font-size: 20px;
        }

        .muted {
            color: var(--muted);
            font-size: 13px;
        }

        .servers {
            margin-top: 16px;
            display: grid;
            gap: 10px;
        }

        .server {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            border-radius: 10px;
            background: var(--glass);
            border: 1px solid rgba(255, 255, 255, 0.02);
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .server:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
        }

        .server input {
            margin-right: 12px;
        }

        .server-left {
            display: flex;
            flex-direction: column;
        }

        .server-name {
            font-weight: 600;
        }

        .server-desc {
            font-size: 13px;
            color: var(--muted);
        }

        .server-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 8px 12px;
            border-radius: 8px;
            color: var(--text);
            cursor: pointer;
        }

        .btn.small {
            padding: 6px 10px;
            font-size: 13px;
        }

        .btn.primary {
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
            border: 0;
            color: #04101a;
            padding: 10px 16px;
            font-weight: 700;
        }

        .actions {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 16px;
        }

        .status {
            margin-left: 6px;
            color: var(--muted);
            font-size: 13px;
        }

        .notes {
            margin-top: 12px;
        }

        .site-footer {
            margin-top: 28px;
            padding: 18px 0;
            color: var(--muted);
            font-size: 13px;
        }

        @media (max-width: 600px) {
            .server {
                flex-direction: column;
                align-items: flex-start;
            }

            .server-right {
                margin-top: 8px;
                width: 100%;
                display: flex;
                justify-content: flex-end;
            }

            .actions {
                flex-direction: column;
                align-items: flex-start;
            }
        }