* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #111111;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 5px 10px;
}

.company-header {
    position: absolute;
    top: 15px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90%;
    max-width: 900px;
    z-index: 30; 
    background: rgba(17, 17, 17, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    pointer-events: none; 
}
.company-header img {
    height: 30px; 
    width: auto;
    object-fit: contain;
}
.company-header h1 {
    color: #ffffff;
    font-size: 1.1rem; 
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); 
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 98vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    animation: bounceSwipe 1.5s infinite ease-in-out;
}

.swipe-hint svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

@keyframes bounceSwipe {
    0%, 100% { transform: translate(-50%, -50%) translateX(0); }
    50% { transform: translate(-50%, -50%) translateX(-20px); }
}

.nav-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 95vw;
    /*margin-top: 15px;
    margin-bottom: 30px;*/
    /*bottom: 20px;*/
    margin-top: 0px;
    margin-bottom: 0px;
    bottom: 5px;
    /*position: relative;*/
    position: absolute;
    transform: translateX(-50%); 
    z-index: 99;
    left: 50%;
}

.arrow-btn {
    background: #9a1e1e;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    z-index: 10;
    transition: all 0.2s ease;
}
.arrow-btn:hover:not(.disabled) {
    background: #ff0000;
    border-color: #ffffff;
}

.arrow-btn.disabled {
    /*opacity: 0.25;
    filter: blur(1px);
    cursor: not-allowed;    
    pointer-events: none;*/
    background: #550000 !important; /* Warna merah yang jauh lebih gelap/redup */
    border-color: rgba(255, 255, 255, 0.2); /* Menyamarkan garis tepi agar ikut meredup */
    color: rgba(255, 255, 255, 0.4); /* Menyamarkan ikon panah di dalamnya */
    opacity: 1; /* Mengunci opacity agar warna merah gelapnya terlihat solid */
    filter: none; /* Menghapus efek blur/buram sebelumnya sesuai request */
    cursor: not-allowed; /* Mengubah ikon kursor tanda tidak boleh klik */
    pointer-events: none; /* Mengunci tombol agar tidak bisa diklik */    
}

.pagination-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 
                 -1px -1px 0px rgba(0, 0, 0, 0.5); 
}

@media (max-width: 480px) {
    .company-header h1 {
        font-size: 0.95rem;
    }
    .company-header img {
        height: 24px;
    }
}