/* ================================
   🎬 TIKTOK-STYLE CSS - GRAND MERYSA
   ================================ */

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

:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #FFD700;
    --primary-dark: #1a1a1a;
    --primary-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-gradient: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.tiktok-mode {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-darker);
    color: var(--text-white);
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}

/* ================================
   🧭 FLOATING NAVBAR
   ================================ */
.navbar-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    transition: var(--transition);
}

.navbar-floating.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================
   🍔 HAMBURGER MENU SLIDE
   ================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu-slide {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1002;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-menu-slide.active {
    left: 0;
}

.menu-header {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.menu-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.menu-header h3 {
    flex: 1;
    font-size: 1.1rem;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
}

.menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.menu-item:hover,
.menu-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
}

.menu-item i {
    width: 24px;
    text-align: center;
}

.menu-item.logout {
    color: #e74c3c;
}

.menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 8px 0;
}

/* ================================
   💰 GOLD PRICE FLOATING
   ================================ */
.gold-price-floating {
    position: fixed;
    top: 70px;
    right: -300px;
    width: 260px;
    background: linear-gradient(135deg, var(--primary-dark), #2a2a2a);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 16px;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.gold-price-floating.active {
    right: 16px;
}

.gold-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary-gold);
    font-weight: 600;
}

.gold-header i {
    font-size: 1.2rem;
}

.close-gold {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.3rem;
    cursor: pointer;
}

.gold-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold-light);
    margin-bottom: 4px;
}

/* ================================
   🎵 MUSIC CONTROL
   ================================ */
.music-control {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 998;
}

.music-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--primary-gold);
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.music-btn:hover,
.music-btn.active {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* ================================
   🎬 VIDEO FEED CONTAINER (TIKTOK SCROLL)
   ================================ */
.video-feed-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.video-feed-container::-webkit-scrollbar {
    width: 4px;
}

.video-feed-container::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 2px;
}

.video-slide {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-darker);
}

/* ================================
   🎥 VIDEO WRAPPER
   ================================ */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktok-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--overlay-gradient);
    pointer-events: none;
    z-index: 1;
}

/* ================================
   📝 VIDEO INFO (BOTTOM)
   ================================ */
.video-info {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 80px;
    z-index: 2;
    color: var(--text-white);
}

.video-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.follow-btn {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.follow-btn:hover {
    background: var(--primary-gold-light);
    transform: scale(1.05);
}

.video-caption {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-hashtags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.video-hashtags span {
    font-size: 0.85rem;
    color: var(--primary-gold-light);
}

/* ================================
   🎯 RIGHT SIDE ACTION MENU
   ================================ */
.video-actions {
    position: absolute;
    right: 12px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Profile Ring */
.profile-action {
    position: relative;
}

.profile-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold-light), var(--primary-gold));
    animation: pulse 2s infinite;
}

.profile-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-dark);
    object-fit: cover;
}

.follow-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--primary-dark);
}

/* Action Buttons */
.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.action-btn i {
    position: absolute;
    transition: var(--transition);
}

.action-btn .fa-heart,
.action-btn .fa-comment {
    opacity: 0;
    color: #e74c3c;
}

.action-btn.liked .far,
.action-btn.comment-active .far {
    opacity: 0;
}

.action-btn.liked .fas,
.action-btn.comment-active .fas {
    opacity: 1;
}

.action-btn.liked .fas {
    animation: heartPop 0.4s ease;
}

.action-count {
    font-size: 0.75rem;
    color: var(--text-white);
    font-weight: 500;
}

/* Music Disc Animation */
.music-action {
    margin-top: 10px;
}

.music-disc {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #1a1a1a);
    border: 3px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 4s linear infinite;
    animation-play-state: paused;
}

.video-slide.active .music-disc {
    animation-play-state: running;
}

.music-disc img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* ================================
   💬 COMMENTS MODAL
   ================================ */
.comments-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70vh;
    background: var(--primary-dark);
    border-radius: 20px 20px 0 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comments-modal.active {
    transform: translateY(0);
}

.modal-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h4 {
    font-size: 1.1rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

.comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    display: flex;
    gap: 12px;
}

.comment-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.comment-content {
    flex: 1;
}

.comment-content strong {
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: block;
}

.comment-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-gray);
}

.comment-content small {
    font-size: 0.75rem;
    color: var(--text-gray);
    opacity: 0.7;
}

.admin-comment .comment-content strong {
    color: var(--primary-gold);
}

.comment-input-form {
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.comment-input-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 0.95rem;
}

.comment-input-form input::placeholder {
    color: var(--text-gray);
}

.comment-input-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: var(--primary-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.comment-input-form button:hover {
    transform: scale(1.1);
}

.login-prompt {
    padding: 16px;
    text-align: center;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-prompt a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

/* ================================
   🗺️ INFO SECTIONS (Hidden by default)
   ================================ */
.info-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.info-section.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.info-section.hidden {
    display: none;
}

.info-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.info-card h3 {
    color: var(--primary-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.social-link.tiktok { color: #fe2c55; }
.social-link.facebook { color: #1877f2; }
.social-link.instagram { color: #e4405f; }

/* ================================
   ⚡ FLASH MESSAGE & LOADING
   ================================ */
.flash {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--primary-dark);
    border-left: 4px solid var(--primary-gold);
    color: var(--text-white);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.flash.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.flash.success { border-color: #2ecc71; }
.flash.error { border-color: #e74c3c; }

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ================================
   🎬 ANIMATIONS
   ================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   📱 RESPONSIVE
   ================================ */
@media (max-width: 480px) {
    .video-info {
        right: 70px;
        bottom: 16px;
    }
    
    .video-actions {
        right: 8px;
        bottom: 90px;
        gap: 16px;
    }
    
    .action-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .gold-price-floating {
        width: 240px;
        top: 65px;
    }
}

/* ================================
   🔇 VIDEO CONTROLS (Hidden for TikTok feel)
   ================================ */
.tiktok-video::-webkit-media-controls {
    display: none !important;
}

.tiktok-video {
    -webkit-user-select: none;
    user-select: none;
}

/* Tap to pause indicator */
.video-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 5;
}

.video-wrapper.paused::after {
    content: '▶';
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-wrapper.playing::after {
    content: '⏸';
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ================================
   🔙 BACK BUTTON FOR INFO SECTIONS
   ================================ */
.info-section .info-card {
    position: relative;
}

.info-card .close-section {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.info-card .close-section:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

/* Overlay untuk info sections */
.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-section.active::before {
    opacity: 1;
}
/* Tambahkan di CSS untuk animasi lebih halus */
.info-section {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease, 
                visibility 0.3s ease;
}

.info-card {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ================================
   ❤️ LIKE & COMMENT ICONS - FIXED
   ================================ */

/* Base button style */
.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Icon layers - outline (default) & filled (active) */
.action-btn i {
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Default: show outline icon (.far) */
.action-btn .far {
    opacity: 1;
    transform: scale(1);
}

/* Hidden: filled icon (.fas) by default */
.action-btn .fas {
    opacity: 0;
    transform: scale(0.8);
    color: #e74c3c; /* Red for liked state */
}

/* When liked/active: swap icons */
.action-btn.liked .far,
.action-btn.comment-active .far {
    opacity: 0;
    transform: scale(0.8);
}

.action-btn.liked .fas,
.action-btn.comment-active .fas {
    opacity: 1;
    transform: scale(1);
    animation: iconPop 0.3s ease;
}

/* Heart specific color */
.action-btn.like-btn.liked .fas {
    color: #fe2c55; /* TikTok red */
    text-shadow: 0 0 10px rgba(254, 44, 85, 0.5);
}

/* Comment active color */
.action-btn.comment-btn.comment-active .fas {
    color: var(--primary-gold);
}

/* Animation for icon pop */
@keyframes iconPop {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Count text */
.action-count {
    font-size: 0.75rem;
    color: var(--text-white);
    font-weight: 500;
    margin-top: 4px;
    text-align: center;
    min-width: 40px;
}
/* Author link clickable */
.author-link {
    display: block;
    transition: transform 0.2s;
}

.author-link:hover {
    transform: scale(1.05);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
    cursor: pointer;
}

.author-link:hover .author-avatar {
    border-color: var(--primary-gold-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
/* ================================
   🔗 SHARE BUTTON - VISIBLE & CLEAN
   ================================ */
.action-btn.share-btn {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.action-btn.share-btn i {
    color: #ffffff !important;
    opacity: 1 !important;
    position: static !important; /* Override absolute jika ada */
    transform: none !important;
}

.action-btn.share-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.action-btn.share-btn:active {
    transform: scale(0.95);
}

/* Label count di bawah tombol */
.action-count {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}