* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #222222; /* Warna background gelap */
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigasi Kecil di Atas */
.nav-top {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.8;
    position: absolute;
    z-index: 10;
}

/* Hero Section / Background Atas */
.hero-section {
    width: 100vw;
    max-width: 500px;
    height: 90vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), #222222), url('upload/main_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
}

.brand-identity {
    text-align: center;
}

.logo-text {
    font-family: 'Allison', cursive;
    font-size: 80px;
    font-weight: normal;
    margin-bottom: -10px;
}

.tagline {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 400;
}

/* Konten Utama */
.content {
    width: 100%;
    max-width: 500px;
    padding: 0 30px 50px 30px;
}

/* Slideshow Styling */
/* Container Utama */
.mySwiper {
    width: 100%;
    /* Rumus 5:4 -> 100% lebar : 80% tinggi */
    /* Kita pakai aspect-ratio sebagai cadangan, tapi height tetap dikunci */
    aspect-ratio: 5 / 4 !important;
    height: auto !important;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* Memaksa wrapper swiper mengikuti rasio */
.mySwiper .swiper-wrapper {
    height: auto !important;
}

/* Memaksa slide dan gambar mengikuti rasio 5:4 */
.mySwiper .swiper-slide {
    width: 100% !important;
    aspect-ratio: 5 / 4 !important;
    border-radius: 20px;
}

.mySwiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    
}

/* Buttons / Links Styling */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #d1d1d1 0%, #2a2a2a 100%);
    padding: 18px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    transition: transform 0.2s;
    /* Efek bayangan halus */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.link-card i {
    font-size: 20px;
    width: 25px;
    text-align: center;
    color: #333;
}

.link-card span {
    color: #333;
    font-weight: 900;
}

.link-card:active {
    transform: scale(0.98);
}
