body {
            margin: 0;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: white;
            min-height: 100vh;
            text-align: center;
            overflow-x: hidden;
        }

        #bg-video {
            position: fixed;
            right: 0;
            bottom: 0;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            object-fit: cover;
            filter: brightness(0.6);
        }

        h1 {
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
            margin-bottom: 20px;
        }

        figure {
            margin: 10px 10px;
            display: inline-block;
            background: rgba(0, 0, 0, 0.2);
            padding: 10px;
            border-radius: 10px;
            vertical-align: top;
        }

        img {
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        table {
            margin: 15px auto;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-collapse: collapse;
            width: 50%;
            max-width: 400px;
            font-size: 0.9em;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
        }

        caption {
            caption-side: top;
            font-weight: bold;
            font-size: 1.1em;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            color: #fff;
        }

        th, td {
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px;
            text-align: center;
        }

        th {
            background-color: rgba(0, 0, 0, 0.5);
            color: #00d4ff;
        }

        tr:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white; 
    background: linear-gradient(-45deg, #001f3f, #0074D9, #6a0dad, #001f3f);
    background-size: 400% 400%;
    animation: focalorsTheme 15s ease infinite;
    min-height: 100vh;
}

@keyframes focalorsTheme {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

table {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

h1, figcaption, caption {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}