:root {
    --rb-action-bg: rgba(255, 255, 255, 0.12);
    --rb-action-border: rgba(255, 255, 255, 0.4);
    --rb-action-border-soft: rgba(255, 255, 255, 0.35);
    --rb-action-hover: rgba(255, 255, 255, 0.2);
    --rb-action-shadow: rgba(255, 255, 255, 0.35);
    --rb-follow-border: rgba(255, 255, 255, 0.2);
    --rb-follow-bg: rgba(255, 255, 255, 0.04);
    --rb-follow-text: #e2e2e2;
}

.artist-top-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    width: min(100%, 920px);
    margin: 8px auto 24px;
}

.artist-top-actions > div,
.artist-top-actions .artist-voice,
.artist-top-actions .discover-more-top,
.artist-top-actions .artist-visit-panel {
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-top-actions .artist-voice {
    gap: 14px;
    order: 1;
}

.artist-top-actions .discover-more-top {
    order: 2;
}

.artist-top-actions .artist-visit-panel-share {
    order: 3;
}

.voice-btn,
.discover-more-btn {
    background: var(--rb-action-bg);
    color: var(--accent, #ffffff);
    border: 1px solid var(--rb-action-border);
    border-radius: 999px;
    padding: 10px 18px;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    min-width: 164px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.artist-top-actions .voice-btn,
.artist-top-actions .discover-more-btn {
    min-width: 176px;
}

.discover-more-btn {
    border-color: var(--rb-action-border-soft);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.45);
    animation: rbDiscoverPulse 2.2s ease-in-out infinite;
}

.discover-more-btn::after {
    content: "";
    position: absolute;
    top: -140%;
    left: -35%;
    width: 28%;
    height: 380%;
    transform: rotate(24deg);
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.65), rgba(255,255,255,0));
    opacity: 0;
    animation: rbDiscoverShine 2.2s ease-in-out infinite;
    pointer-events: none;
}

.voice-btn:hover,
.discover-more-btn:hover {
    background: var(--rb-action-hover);
    transform: translateY(-2px);
}

.house-follow-block {
    max-width: 900px;
    margin: 14px auto 0;
    padding: 12px 14px;
    border: 1px solid var(--rb-follow-border);
    border-radius: 10px;
    background: var(--rb-follow-bg);
    text-align: center;
}

.house-follow-line {
    margin: 6px 0;
    font-size: 13px;
    color: var(--rb-follow-text);
    line-height: 1.45;
}

.house-follow-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--rb-action-border-soft);
}

.site-credit {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.8px;
    opacity: 0.7;
    margin-top: 24px;
    padding-bottom: 14px;
}

@keyframes rbDiscoverPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--rb-action-shadow);
    }
    50% {
        box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.28);
    }
}

@keyframes rbDiscoverShine {
    0%, 72%, 100% {
        opacity: 0;
        left: -35%;
    }
    78% {
        opacity: 0.9;
    }
    92% {
        opacity: 0;
        left: 120%;
    }
}

@media (max-width: 768px) {
    .artist-top-actions {
        flex-direction: column;
        gap: 10px;
    }

    .artist-top-actions > div {
        width: 100%;
    }

    .artist-top-actions .voice-btn,
    .artist-top-actions .discover-more-btn {
        width: min(320px, 100%);
    }
}
