        :root {
            --bg-dark: #1a1a2e;
            --mauve: #764ba2;
            --mauve-light: #f093fb;
            --metallic: #b8b8b8;
            --text-color: #e0e0e0;
            --glass: rgba(255, 255, 255, 0.05);
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: radial-gradient(circle at top, #2a2a5e, #1a1a2e, #0f0f1a);
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            padding: 40px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container {
            max-width: 850px;
            width: 100%;
            background: var(--glass);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(184, 184, 184, 0.2);
            border-radius: 24px;
            padding: 50px;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.6),
                inset 0 0 30px rgba(118, 75, 162, 0.15);
            position: relative;
            overflow: hidden;
        }

        /* Metallic top border line */
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--mauve), var(--mauve-light), var(--mauve), transparent);
        }

        h1 {
            color: var(--mauve-light);
            text-shadow: 0 0 15px rgba(240, 147, 251, 0.4);
            font-size: 2.5em;
            margin-top: 0;
            background: linear-gradient(135deg, #fff 0%, var(--metallic) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h2, h3 {
            color: var(--mauve-light);
            margin-top: 1.5em;
        }

        p {
            margin-bottom: 1.2em;
        }

        a {
            color: var(--mauve-light);
            text-decoration: none;
            border-bottom: 1px dashed var(--mauve);
            transition: all 0.3s ease;
        }

        a:hover {
            color: #fff;
            border-bottom-style: solid;
        }

        ul, ol {
            margin-bottom: 1.5em;
            padding-left: 25px;
        }

        li {
            margin-bottom: 0.8em;
        }

        code {
            background: rgba(0, 0, 0, 0.4);
            padding: 3px 6px;
            border-radius: 6px;
            font-family: 'Cascadia Code', 'Courier New', monospace;
            color: var(--mauve-light);
            font-size: 0.9em;
        }

        pre {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 12px;
            overflow-x: auto;
            border: 1px solid rgba(184, 184, 184, 0.1);
            margin-bottom: 1.5em;
        }

        .back-link-container {
            max-width: 850px;
            width: 100%;
            margin-bottom: 25px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            background: rgba(118, 75, 162, 0.2);
            border: 1px solid var(--mauve);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.95em;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-bottom: none;
        }

        .back-link:hover {
            background: var(--mauve);
            transform: translateX(-8px);
            box-shadow: 0 0 20px rgba(118, 75, 162, 0.4);
        }

        .error-message {
            color: #ff6b6b;
            text-align: center;
            padding: 30px;
            border: 1px solid rgba(255, 107, 107, 0.3);
            border-radius: 15px;
            background: rgba(255, 107, 107, 0.05);
        }

        footer {
            margin-top: 50px;
            font-size: 0.9em;
            opacity: 0.5;
            text-align: center;
            letter-spacing: 1px;
        }

        footer a {
            border: none;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--mauve);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--mauve-light);
        }