/* --- General Body and Font Styles --- */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            background-color: #121212;
            color: #e0e0e0;
            line-height: 1.7;
            margin: 0;
            padding: 20px;
        }

        /* --- Main Content Container --- */
        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem 3rem;
            background-color: #1e1e1e;
            border-radius: 12px;
            border: 1px solid #333;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }

        /* --- Header Style --- */
        h1 {
            font-size: 2.5rem;
            color: #bb86fc;
            text-align: center;
            border-bottom: 2px solid #373737;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }

        /* --- List Styling (UL/LI) --- */
        ul {
            list-style: none;
            padding-left: 0;
        }

        ul ul {
            padding-left: 30px;
            margin-top: 10px;
        }

        li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        /* Custom list bullets */
        li::before {
            content: '➤';
            position: absolute;
            left: 0;
            top: 0;
            color: #03dac6;
            font-size: 1.1em;
            line-height: 1.6;
        }

        ul ul li::before {
            content: '•';
            color: #cf6679;
        }

        ul ul ul li::before {
            content: '–';
            color: #90caf9;
        }

        /* --- Link Styling --- */
        a {
            color: #90caf9;
            text-decoration: none;
            border-bottom: 1px dotted #90caf9;
            transition: color 0.3s ease, border-bottom-color 0.3s ease;
            word-break: break-all;
        }

        a:hover,
        a:focus {
            color: #ffffff;
            border-bottom: 1px solid #ffffff;
        }

        /* --- Text and Element Styling --- */
        strong {
            color: #fdd835;
            font-weight: 600;
        }

        blockquote {
            margin: 12px 0 12px 20px;
            padding: 10px 15px;
            border-left: 4px solid #444;
            background-color: rgba(0, 0, 0, 0.1);
            color: #b0b0b0;
            font-style: italic;
            border-radius: 4px;
        }

        .description {
            color: #a0a0a0;
            display: inline;
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .container {
                margin: 1rem auto;
                padding: 1.5rem 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            ul ul {
                padding-left: 20px;
            }

            li {
                padding-left: 20px;
            }
        }
