        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-image: url('../img/background.png');
            background-size: cover;
            backdrop-filter: blur(10px) invert(0.05);
            color: #fff;
        }

        .container {
            background: rgba(0, 0, 0, 0.65);
            margin: 40px auto;
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 20px rgba(0,0,0,0.6);
            width: 85%;
            max-width: 1100px;
        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #FFD700, #FF8C00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h2 {
            margin-top: 30px;
            color: #FFD700;
        }

        ul {
            list-style: decimal;
            padding-left: 25px;
        }

        ul li {
            margin: 8px 0;
            font-size: 1.05rem;
            color: #ddd;
            line-height: 1.5;
        }

        .back-button {
            display: block;
            margin: 30px auto 0 auto;
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, #FF8C00, #FFD700);
            color: #000;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 165, 0, 0.7);
        }