/* Base Styling & Google Font Poppins */
body {
    background-color: #fafafa;
    font-family: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #262626;
}

/* Profile Image Container */
.profile-img-container {
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Headline Lock Button */
.headline-lock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #262626;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.headline-lock-btn:hover {
    background-color: #262626;
    color: #ffffff;
}

/* Promo Ticker Box (Tanpa Border & Background) */
.promo-ticker-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
    height: 32px;
    font-size: 0.8rem;
}

.promo-slider {
    display: flex;
    flex-direction: column;
    animation: slideTicker 9s infinite;
}

.promo-item {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@keyframes slideTicker {
    0% { transform: translateY(0); }
    30% { transform: translateY(0); }
    33% { transform: translateY(-32px); }
    63% { transform: translateY(-32px); }
    66% { transform: translateY(-64px); }
    96% { transform: translateY(-64px); }
    100% { transform: translateY(0); }
}

/* Minimalist Floating Text Tab Navigation */
.profile-tabs {
    border-top: none !important;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 28px 0;
    padding: 0;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.profile-tabs a {
    color: #737373;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 50rem;
    border: none !important;
    margin-top: 0 !important;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-tabs a:hover {
    color: #171717;
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.profile-tabs a.active {
    color: #ffffff !important;
    background-color: #171717 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
    border-top-color: transparent !important;
}

/* Gallery Grid (Responsive Layout: Mobile 2 Kolom, Tablet 3 Kolom, Desktop 4 Kolom) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #efefef;
    cursor: pointer;
    border-radius: 6px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: #ffffff;
}

/* Scroll to Top Button */
#scrollTopBtn.show {
    display: flex !important;
}