body {
    font-family: "headline-gothic-atf-rough-n1", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    background: black;
    font-family: 'acier-bat-noir', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}


.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    z-index: 1000;
    box-sizing: border-box;
}

.home-button {
    margin-left: 40px;
    font-size: 36px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
    left: -60px;
}

.nav-button {
  color: white;
  text-decoration: none;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 20px;
  transition: all 0.3s;
}

.nav-button:hover {
  background: white;
  color: #2a5298;
}

.old-nav-button {
}

}

.section-title {
    text-align: center;
    font-size: 48px;
    font-family: "headline-gothic-atf-rough-n1", sans-serif;
    font-weight: 400;
    font-style: normal;
}.title-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px 0 20px 0;
}

.title-container:first-of-type {
    margin-top: 180px;
}

.section-title:first-of-type {
    margin-top: 180px;
}

.slideshow-container {
    position: relative;
    width: 60%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 30px auto;
}

.slideshow-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    aspect-ratio: unset;
    border-radius: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    font-family: "headline-gothic-atf-rough-n1", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, filter 0.3s ease;
}

/* Progressive loading styles */
.slides img[data-full-src] {
    /* Initial blur for thumbnails */
    filter: blur(3px);
}

.slides img[data-full-src].loaded {
    /* Sharp when full resolution loads */
    filter: blur(0px);
}

/* Loading placeholder */
.slides img:not([src]) {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.slides img.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.prev, .next {
    position: absolute;
    top: 50%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slide-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.fullscreen .close-button {
    display: flex;
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .title-container {
        margin: 20px 0;
    }

    .title-container:first-of-type {
        margin-top: 120px;
    }

    .section-title {
        font-size: 40px;
    }
    .top-bar {
        padding: 10px 15px;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .home-button {
    margin-left: 40px;
        font-size: 30px;
        position: static;
    }

    .slideshow-container {
        width: 90%;
    }

.section-title {
    text-align: center;
    font-size: 48px;
    font-family: "headline-gothic-atf-rough-n1", sans-serif;
    font-weight: 400;
    font-style: normal;
}.title-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px 0 20px 0;
}

.title-container:first-of-type {
    margin-top: 180px;
}

    .section-title:first-of-type {
        margin-top: 120px;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .close-button {
        width: 35px;
        height: 35px;
