.main-content {
    width: 100%;
    align-items: center;
}

.content {
    max-width: 1245px;
}

.max-width-1245 {
    max-width: 1245px;
}

#drops-header {
    background: linear-gradient(to top, #0F0F0F, #0F0F0F00 40%), url('../images_new/drops-header.gif');
    background-position: center;
    background-size: cover;
    max-height: 350px;
    height: 100dvh;
    height: 100vh;
    width: 100%;
}

.font-family-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 500ms ease-in-out;
}

.slider-track img {
    width: 100%;
    min-width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: white;
}