lite-instagram {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lite-instagram-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 8px;
    color: white;
    transition: transform 0.2s ease;
}

lite-instagram:hover .lite-instagram-container {
    transform: scale(1.02);
}

.lite-instagram-placeholder {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.instagram-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.instagram-icon svg {
    color: white;
}

.instagram-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.instagram-content p {
    margin: 0 0 1rem 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.instagram-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
}

lite-instagram:hover .instagram-play-button {
    background: rgba(255, 255, 255, 0.4);
}

.instagram-play-button svg {
    transform: translateX(1px); /* Fine-tune centering for play triangle */
}

/* Override existing Instagram styles when loaded */
lite-instagram .instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lite-instagram-container {
        min-height: 300px;
    }
    
    .lite-instagram-placeholder {
        padding: 1.5rem;
        top: 50%;
    }
    
    .instagram-icon {
        width: 40px;
        height: 40px;
    }
    
    .instagram-content h3 {
        font-size: 1.1rem;
    }
    
    .instagram-play-button {
        width: 36px;
        height: 36px;
    }

    /* Hide play button on mobile */
    .instagram-play-button {
        display: none;
    }
}
