/* Share Button Styles - External (Below Carousel) */
.share-btn-external {
    position: relative;
    margin-top: 2rem;
    z-index: 150;
    background: #1DA1F2; /* Twitter Blue */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.share-btn-external:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.6);
}

.share-btn-external svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Disclaimer Note - External (Below Carousel) */
.disclaimer-external {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-style: italic;
    max-width: 500px;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    z-index: 150;
}
