body {
    margin: 0;
}

.random-refresh-btn {
    position: fixed;
    top: 110px;
    right: 24px;
    z-index: 12;
    padding: 14px 22px;
    font-size: 1rem;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.random-refresh-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.random-shell {
    min-height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    padding: 24px;
}

.random-stack {
    width: min(720px, 92vw);
    display: grid;
    gap: 20px;
}

.random-card {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.random-interactions {
    text-align: left;
    gap: 20px;
}

.random-section {
    display: grid;
    gap: 12px;
}

.random-muted {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.random-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reaction-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.reaction-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f3eee8;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-family: inherit;
}

.reaction-label {
    font-size: 0.9rem;
}

.reaction-button.is-active {
    border-color: rgba(200, 159, 107, 0.6);
    box-shadow: 0 0 0 1px rgba(200, 159, 107, 0.3);
}

.reaction-count {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .random-refresh-btn {
        position: sticky;
        top: 16px;
        margin: 0 0 16px auto;
        display: block;
        width: max-content;
    }
}
