.rgfn-follow-button {
    align-items: center;
    appearance: none;
    background: #111827;
    border: 1px solid #111827;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 600;
    gap: 0.45em;
    justify-content: center;
    line-height: 1.2;
    min-height: 42px;
    padding: 0.65em 1em;
    transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.rgfn-follow-button:hover {
    opacity: 0.9;
}

.rgfn-follow-button.is-following {
    background: #fff;
    color: #111827;
}

.rgfn-follow-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.rgfn-follow-status {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.45rem;
}

.rgfn-follow-status.is-error,
.rgfn-error {
    color: #b91c1c;
}

.rgfn-auto-follow {
    margin-top: 1.25rem;
}

.rgfn-game-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.rgfn-game-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.rgfn-game-card__image {
    align-items: center;
    aspect-ratio: 16 / 9;
    background: #f3f4f6;
    display: flex;
    font-size: 2rem;
    justify-content: center;
    overflow: hidden;
}

.rgfn-game-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.rgfn-game-card__body {
    padding: 1rem;
}

.rgfn-game-card__title {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
}

.rgfn-game-card__title a {
    color: inherit;
    text-decoration: none;
}

.rgfn-game-card__actions {
    align-items: center;
    display: flex;
    gap: 0.9rem;
    justify-content: space-between;
}

.rgfn-game-card__link,
.rgfn-unfollow-link {
    font-size: 0.9rem;
}

.rgfn-unfollow-link {
    appearance: none;
    background: transparent;
    border: 0;
    color: #b91c1c;
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-decoration: underline;
}

.rgfn-empty,
.rgfn-loading {
    color: #6b7280;
}
