body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background: var(--gi-site-body);
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--gi-site-body);
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        h1, h2 {
            color: #333;
            text-align: center;
        }
        .language-switcher {
            text-align: right;
            margin-bottom: 20px;
        }
        .language-switcher a {
            margin-left: 10px;
            text-decoration: none;
            color: #007BFF;
        }
        .language-switcher a:hover {
            text-decoration: underline;
        }
        table {
            width: 100%;
            margin-bottom: 40px;
            border-collapse: collapse;
        }
        th, td {
            padding: 10px;
            border: 1px solid #ddd;
            vertical-align: middle;
        }
        th {
            background-color: #f4f4f4;
            text-align: left;
        }
        .bar {
            height: 20px;
            background-color: #4CAF50;
            text-align: right;
            padding-right: 5px;
            color: white;
            line-height: 20px;
            white-space: nowrap;
            overflow: hidden;
            transition: width 0.5s ease-in-out;
            min-width: 30px;
        }
        .bar:hover {
            background-color: #45a049;
        }
        .bar-container {
            width: 100%;
            background-color: #f1f1f1;
        }
        .acknowledgments {
            text-align: center;
        }
        #snowflake-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 9999;
            background: transparent;
        }

        .snowflake {
            position: absolute;
            top: 0;
            color: #FFF;
            user-select: none;
            font-size: 1em;
            will-change: transform, opacity;
            animation: fallAndDrift linear infinite;
        }

@keyframes fallAndDrift {
            0% {
                transform: translate(0, 0);
                opacity: 1;
            }
            100% {
                transform: translate(var(--drift), 100vh);
                opacity: 0;
            }
        }