body {
                font-family: Arial, sans-serif;
                line-height: 1.6;
                margin: 0;
                padding: 0;
                color: #333;
                background: url("/assets/background.png") no-repeat center center fixed;
                background-size: cover;
            }
            body::before {
                content: "";
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(8px);
                z-index: -1;
            }
            .container {
                max-width: 900px;
                margin: 40px auto;
                padding: 20px;
                background: rgba(255, 255, 255, 0.85);
                border-radius: 10px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                transition: background 0.3s ease;
            }
            .container:hover {
                background: #ffffff;
            }
            h1 {
                color: #2c3e50;
            }
            a {
                color: #3498db;
                text-decoration: none;
            }
            a:hover {
                text-decoration: underline;
            }
            ul {
                margin-top: 10px;
            }
            .note {
                margin-top: 20px;
                padding: 10px;
                background-color: #eaf2f8;
                border-left: 5px solid #3498db;
            }