        body {
            font-family: Arial, sans-serif;
            background-color: #181818;
            color: white;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            margin: auto;
            background-color: #222;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 0 15px rgba(0, 119, 255, 0.3);
        }

        h1 {
            text-align: center;
            color: #00aaff;
            margin-bottom: 20px;
        }

        p.description {
            font-size: 1.1em;
            margin-bottom: 30px;
            line-height: 1.6em;
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .buttons a {
            background-color: #00aaff;
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }

        .buttons a:hover {
            background-color: #0088cc;
            transform: scale(1.05);
        }

        .back-btn {
            display: inline-block;
            margin-top: 30px;
            text-align: center;
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .back-btn:hover {
            color: #00aaff;
        }