.afc-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: inherit;
}
.afc-cover {
    flex-shrink: 0;
    width: 150px;
}
.afc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 !important;
}
.afc-body {
    padding: 18px 18px 18px 4px;
    flex: 1;
    min-width: 0;
}
.afc-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.afc-genre {
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.afc-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 2px !important;
    padding: 0 !important;
    border: none !important;
}
.afc-native {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 8px !important;
}
.afc-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}
.afc-score {
    color: #f59e0b;
    font-weight: 700;
    font-size: 14px;
}
.afc-dot { color: #d1d5db; }
.afc-synopsis {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 12px !important;
}
.afc-stats {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 12px;
    font-size: 12px;
    margin: 0 0 12px !important;
}
.afc-stats dt {
    font-weight: 700;
    color: #374151;
}
.afc-stats dd {
    color: #6b7280;
    margin: 0;
}
.afc-streaming { margin-top: 10px; }
.afc-streaming-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #9ca3af;
    display: block;
    margin-bottom: 6px;
}
.afc-streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.afc-stream-btn {
    background: #111827;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background .2s;
}
.afc-stream-btn:hover {
    background: #374151;
}
@media (max-width: 540px) {
    .afc-card { flex-direction: column; }
    .afc-cover { width: 100%; height: 200px; }
    .afc-body { padding: 14px; }
}
