/* Affiliate Banner — clean, tasteful, matches dark theme */
.affiliate-banner {
    max-width: 800px;
    margin: 15px auto;
}

.affiliate-banner a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
}

.affiliate-banner a:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    transform: translateY(-1px);
}

.aff-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aff-text {
    flex: 1;
    font-size: 0.9rem;
    color: #aaa;
}

.aff-cta {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a855f7;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .affiliate-banner a {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 15px;
    }
    .aff-text {
        font-size: 0.85rem;
    }
    .aff-cta {
        width: 100%;
        text-align: center;
        padding-top: 5px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
}
