.dc-rv {
    max-width: 1400px; margin: 0 auto;
    padding: 80px 24px; position: relative; overflow: hidden;
}

/* ── Header ── */
.dc-rv .dc-rv__header {
    text-align: center; margin-bottom: 48px;
    position: relative;
}
.dc-rv .dc-rv__subtitle {
    display: inline-flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.dc-rv .dc-rv__subtitle-line {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, #A78278);
}
.dc-rv .dc-rv__subtitle-line:last-child {
    background: linear-gradient(90deg, #A78278, transparent);
}
.dc-rv .dc-rv__subtitle-text {
    font-family: 'Trajan Pro','Cinzel',serif;
    font-size: 11px; font-weight: 400;
    letter-spacing: 3.5px; text-transform: uppercase; color: #8B6B62;
}
.dc-rv .dc-rv__title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 300; color: #1a1a2e; margin: 0 0 20px; line-height: 1.15;
}

/* Rating badge */
.dc-rv .dc-rv__rating-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; background: #fff;
    border-radius: 50px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.dc-rv .dc-rv__rating-score {
    font-size: 22px; font-weight: 700; color: #1a1a2e;
}
.dc-rv .dc-rv__rating-stars {
    display: flex; gap: 2px; color: #fbbf24;
}
.dc-rv .dc-rv__rating-stars svg { width: 15px; height: 15px; }
.dc-rv .dc-rv__rating-count {
    font-size: 12px; color: #94a3b8;
}
.dc-rv .dc-rv__rating-google { display: flex; margin-left: 4px; }
.dc-rv .dc-rv__rating-google svg { width: 18px; height: 18px; }

/* ── Floating grid ── */
.dc-rv .dc-rv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    perspective: 1200px;
}

/* Floating animation */
@keyframes dcRevFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rv-rot, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rv-rot, 0deg)); }
}

/* ── Card ── */
.dc-rv .dc-rv__card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    text-decoration: none; color: inherit; display: block;
    animation: dcRevFloat var(--rv-dur, 5s) ease-in-out var(--rv-del, 0s) infinite;
    opacity: 0; transform: translateY(30px);
    will-change: transform;
}
.dc-rv .dc-rv__card.dc-rv--visible {
    opacity: 1; transform: translateY(0) rotate(var(--rv-rot, 0deg));
}
.dc-rv .dc-rv__card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    z-index: 3;
    animation-play-state: paused;
}

/* Featured card (first) */
.dc-rv .dc-rv__card--featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 36px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);
    border: none;
    --rv-rot: 0deg;
}
.dc-rv .dc-rv__card--featured .dc-rv__card-quote { color: rgba(167,130,120,0.25); }
.dc-rv .dc-rv__card--featured .dc-rv__card-text {
    color: rgba(255,255,255,0.8); font-size: 17px;
    -webkit-line-clamp: unset; line-height: 1.8;
}
.dc-rv .dc-rv__card--featured .dc-rv__card-name { color: #fff; }
.dc-rv .dc-rv__card--featured .dc-rv__card-date { color: rgba(255,255,255,0.4); }
.dc-rv .dc-rv__card--featured .dc-rv__card-divider { border-color: rgba(255,255,255,0.08); }
.dc-rv .dc-rv__card--featured .dc-rv__card-platform { opacity: 0.3; }

/* Platform icon */
.dc-rv .dc-rv__card-platform {
    position: absolute; top: 20px; right: 20px;
    opacity: 0.3; line-height: 0;
}
.dc-rv .dc-rv__card-platform svg { width: 20px; height: 20px; }

/* Quote mark */
.dc-rv .dc-rv__card-quote {
    font-size: 56px; line-height: 1; color: rgba(167,130,120,0.12);
    font-family: Georgia, serif; margin-bottom: -8px;
}

/* Stars */
.dc-rv .dc-rv__card-stars {
    display: flex; gap: 2px; color: #fbbf24; margin-bottom: 12px;
}
.dc-rv .dc-rv__card-stars svg { width: 14px; height: 14px; }

/* Text */
.dc-rv .dc-rv__card-text {
    font-size: 14px; color: #505059; line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box; -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; overflow: hidden;
}

/* Footer */
.dc-rv .dc-rv__card-divider {
    border: none; border-top: 1px solid #f0f0f0; margin: 0 0 14px;
}
.dc-rv .dc-rv__card-footer {
    display: flex; align-items: center; gap: 12px;
}
.dc-rv .dc-rv__card-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(167,130,120,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: #A78278; flex-shrink: 0;
}
.dc-rv .dc-rv__card--featured .dc-rv__card-avatar {
    width: 48px; height: 48px; font-size: 16px;
    background: rgba(167,130,120,0.2);
}
.dc-rv .dc-rv__card-name {
    font-size: 14px; font-weight: 600; color: #1a1a2e;
}
.dc-rv .dc-rv__card-date {
    font-size: 11px; color: #94a3b8;
}

/* Video background */
.dc-rv .dc-rv__card--has-video { overflow: hidden; }
.dc-rv .dc-rv__card-video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}
.dc-rv .dc-rv__card--has-video:hover .dc-rv__card-video { transform: scale(1.05); }
.dc-rv .dc-rv__card-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.6) 40%, rgba(26,26,46,0.25) 100%);
    border-radius: 20px;
}
.dc-rv .dc-rv__card--has-video .dc-rv__card-quote,
.dc-rv .dc-rv__card--has-video .dc-rv__card-stars,
.dc-rv .dc-rv__card--has-video .dc-rv__card-text,
.dc-rv .dc-rv__card--has-video .dc-rv__card-divider,
.dc-rv .dc-rv__card--has-video .dc-rv__card-footer,
.dc-rv .dc-rv__card--has-video .dc-rv__card-platform {
    position: relative; z-index: 2;
}
.dc-rv .dc-rv__card--has-video .dc-rv__card-text { color: rgba(255,255,255,0.85); }
.dc-rv .dc-rv__card--has-video .dc-rv__card-name { color: #fff; }
.dc-rv .dc-rv__card--has-video .dc-rv__card-date { color: rgba(255,255,255,0.5); }
.dc-rv .dc-rv__card--has-video .dc-rv__card-divider { border-color: rgba(255,255,255,0.1); }
.dc-rv .dc-rv__card--has-video .dc-rv__card-quote { color: rgba(167,130,120,0.3); }
.dc-rv .dc-rv__card--has-video .dc-rv__card-platform { opacity: 0.5; }
.dc-rv .dc-rv__card--has-video .dc-rv__card-avatar { background: rgba(167,130,120,0.3); color: #fff; }

/* Sound toggle */
.dc-rv .dc-rv__card-sound {
    position: absolute; bottom: 16px; right: 16px; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    opacity: 0; pointer-events: none;
}
.dc-rv .dc-rv__card--has-video:hover .dc-rv__card-sound { opacity: 1; pointer-events: auto; }
.dc-rv .dc-rv__card-sound:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.dc-rv .dc-rv__card-sound svg { width: 16px; height: 16px; color: #fff; }

/* ── Floating decorative badges ── */
.dc-rv .dc-rv__float-badge {
    position: absolute; z-index: 4;
    padding: 8px 16px; background: #fff;
    border-radius: 50px; box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #1a1a2e;
    animation: dcRevFloat 4s ease-in-out infinite;
    pointer-events: none;
}
.dc-rv .dc-rv__float-badge svg { width: 14px; height: 14px; }
.dc-rv .dc-rv__float-verified {
    top: -10px; right: 60px;
    --rv-del: 0.5s;
}
.dc-rv .dc-rv__float-verified svg { color: #34A853; }
.dc-rv .dc-rv__float-count {
    bottom: 20px; left: 40px;
    --rv-del: 1.2s;
}
.dc-rv .dc-rv__float-count svg { color: #fbbf24; }

/* ── USP ── */
.dc-rv .dc-rv__usp {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 12px; margin-top: 48px;
}
.dc-rv .dc-rv__usp-chip {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: rgba(167,130,120,0.04);
    border: 1px solid rgba(167,130,120,0.1);
    border-radius: 12px; font-size: 13px; color: #505059;
    transition: all 0.3s;
    opacity: 0; transform: translateY(16px);
}
.dc-rv .dc-rv__usp-chip.dc-rv--visible {
    opacity: 1; transform: translateY(0);
}
.dc-rv .dc-rv__usp-chip:hover {
    background: rgba(167,130,120,0.08); transform: translateY(-2px);
}
.dc-rv .dc-rv__usp-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(167,130,120,0.1);
    display: flex; align-items: center; justify-content: center;
}
.dc-rv .dc-rv__usp-icon svg {
    width: 14px; height: 14px; color: #A78278;
}

/* ── CTA ── */
.dc-rv .dc-rv__cta {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 12px; margin-top: 32px;
}
.dc-rv .dc-rv__cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; background: #A78278; color: #fff;
    border-radius: 50px; font-size: 14px; font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(167,130,120,0.3);
    transition: all 0.3s;
}
.dc-rv .dc-rv__cta-primary:hover {
    background: #967269; transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(167,130,120,0.4); color: #fff;
}
.dc-rv .dc-rv__cta-primary svg { width: 15px; height: 15px; }
.dc-rv .dc-rv__cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; background: transparent;
    border: 1px solid rgba(167,130,120,0.3);
    color: #A78278; border-radius: 50px;
    font-size: 14px; font-weight: 500;
    text-decoration: none; transition: all 0.3s;
}
.dc-rv .dc-rv__cta-secondary:hover {
    background: rgba(167,130,120,0.06); transform: translateY(-2px); color: #A78278;
}
.dc-rv .dc-rv__cta-secondary svg { width: 15px; height: 15px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .dc-rv .dc-rv__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .dc-rv .dc-rv__card--featured { grid-column: span 2; grid-row: span 1; }
    .dc-rv .dc-rv__float-badge { display: none; }
}
@media (max-width: 700px) {
    .dc-rv { padding: 50px 16px; }
    .dc-rv .dc-rv__grid { grid-template-columns: 1fr; gap: 16px; }
    .dc-rv .dc-rv__card--featured { grid-column: span 1; }
    .dc-rv .dc-rv__card { padding: 22px; animation: none; }
    .dc-rv .dc-rv__card--featured { padding: 28px; }
    .dc-rv .dc-rv__card--featured .dc-rv__card-text { font-size: 15px; }
    .dc-rv .dc-rv__cta { flex-direction: column; align-items: stretch; }
    .dc-rv .dc-rv__cta-primary,
    .dc-rv .dc-rv__cta-secondary { justify-content: center; }
}
