body {
    font-family: 'Inter', sans-serif;
}

/* A fallback font if Inter fails to load from a potential font provider */
@import url('https://rsms.me/inter/inter.css');
html {
  font-family: 'Inter', sans-serif;
}
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

.screenshot-swiper {
    width: 100%;
    max-width: 320px; /* Max width for larger screens */
    aspect-ratio: 1 / 2;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .screenshot-swiper {
       max-width: 360px; /* A bit larger on tablets and desktops */
    }
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-pagination-bullet {
    background-color: #156891 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #e2731b !important;
    opacity: 1;
}

.swiper-cube-shadow {
    display: none; /* Hiding the default cube shadow as it doesn't fit well */
}