/**
 * NextHit Share Buttons - Header Integration
 * Navy (#1A365D) + Gold (#D69E2E) Design
 */

.share-buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    overflow-x: hidden;
    max-width: 292px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: #FF0050;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.share-button:hover {
    background: rgba(255, 0, 80, 0.2);
    border-color: #FF0050;
    transform: translateY(-2px);
}

.share-button:active {
    transform: translateY(0);
}

/* Icon Colors */
.share-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Einheitliches NextHit Hover-Design */

/* Mobile Responsive */
@media (max-width: 768px) {
    .share-buttons-container {
        gap: 12px;
        padding: 0 20px;
    }

    .share-button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .share-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .share-buttons-container {
        gap: 10px;
        padding: 0 15px;
    }

    .share-button {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .share-button svg {
        width: 15px;
        height: 15px;
    }
}

/* Tooltip */
.share-button::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 80, 0.95);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(10px);
}

.share-button:hover::after {
    opacity: 1;
}

/* Success Animation */
@keyframes shareSuccess {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.share-button.success {
    animation: shareSuccess 0.5s ease;
}
