<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fullscreen Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Ensures cropping */
    z-index: -1;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* Aspect Ratio 16:9 (height = width * 9 / 16) */
    min-height: 100vh;
    /* Ensures full screen coverage */
    min-width: 177.78vh;
    /* (16 / 9) * 100vh to ensure no black bars */
    transform: translate(-50%, -50%);
    /* Center the video */
    object-fit: cover;
    /* Ensures the video crops properly */
    pointer-events: none;
    /* Prevents interaction */
}

/* Hero Section */
.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Photo Gallery */
.gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* General Section Padding */
section {
    padding: 60px 0;
}

#schedule {
    background-color: orange;
    color: white;
    background-image: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
}

#contingents1 {
    background-color: #3E86E7;
    color: white;
    background-image: url('https://www.transparenttextures.com/patterns/brick-wall.png');
}

.bg-blue {
    background-color: #3E86E7;
    color: white;
}

.link-no-style {
    color: inherit;
    text-decoration: none;
}

.disabled {
    pointer-events: none;
    cursor: default;
    /* opacity: 0.5; */
}</pre></body></html>