html {
    scroll-behavior: smooth;
}
.hero-bg {
    background-color: #f8f9fa;
    padding: 100px 0;
}
.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}
/* Mengatur aspek rasio box preview Short Form (9:16) */
.video-box-short {
    height: 320px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Mengatur aspek rasio box preview Long Form (16:9) */
.video-box-long {
    height: 220px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Mengatur style gambar thumbnail agar rapi memenuhi kotak */
.img-thumbnail-custom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
/* Efek hover zoom halus pada gambar thumbnail saat kartu ditunjuk */
.card:hover .img-thumbnail-custom {
    transform: scale(1.05);
}
/* Mengatur agar transisi shadow pada card terlihat halus */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
/* Tambahan efek transisi halus untuk tombol Selengkapnya */
.btn-more {
    transition: all 0.3s ease;
    border-width: 2px;
}
.btn-more:hover {
    transform: scale(1.03);
}

/* =======================================
   STYLING BAGIAN APLIKASI (HANYA GAMBAR)
   ======================================= */
.tracking-wider {
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}
/* Menentukan dimensi seragam untuk masing-masing logo png & efek hover halus */
.app-logo-only {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.app-logo-only:hover {
    transform: scale(1.15); /* Membesar sedikit saat kursor ditaruh di atas logo */
}
.app-logo-only img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}