
        body {
            background: linear-gradient(to bottom, #f7f9fc, #e6eef5);
            font-family: 'Arial', sans-serif;
        }
        h1, h2 {
            font-family: 'Verdana', sans-serif;
        }
        .container {
            margin-top: 30px;
        }

        /* Card */
        .card {
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        /* Pulsanti */
        .btn {
            border-radius: 25px;
            padding: 10px 20px;
            font-size: 16px;
        }
        .btn-info {
            background: #007bff;
            color: white;
        }
        .btn-info:hover {
            background: #0056b3;
        }
        .btn-danger {
            background: #dc3545;
            color: white;
        }
        .btn-danger:hover {
            background: #a71d2a;
        }

        /* Video */
        .video-container video {
            width: 100%;
            border-radius: 10px;
        }
        .video-container {
            margin-top: 20px;
        }

        /* Card intestazione */
        .card-header {
            background-color: #343a40;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        /* Footer separatore */
        hr.hr-blurry {
            border: 0;
            height: 1px;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
            margin: 40px 0;
        }