.rv {
  width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem) 4rem;
  position: relative;
  z-index: 2;
}

.rv-hero {
  position: relative;
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.08);
  background: linear-gradient(170deg, rgba(124, 58, 237, 0.05) 0%, rgba(8, 9, 15, 0.97) 40%, rgba(124, 58, 237, 0.03) 100%);
}

.rv-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.rv-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  will-change: transform;
}

.rv-orb--1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -70px;
  right: -40px;
  animation: rvFloat1 16s ease-in-out infinite;
}

.rv-orb--2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  bottom: -40px;
  left: -30px;
  animation: rvFloat2 20s ease-in-out infinite;
}

@keyframes rvFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, 10px); }
}

@keyframes rvFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -12px); }
}

.rv-hero__content {
  position: relative;
  z-index: 1;
}

.rv-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(167, 139, 250, 0.7);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.rv-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
}

.rv-t__thin {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.rv-t__glow {
  position: relative;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 40%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rv-t__glow::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(32px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.rv-hero__sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 auto;
  max-width: 420px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.rv-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0.7rem 1.6rem;
  max-width: 320px;
}

.rv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.rv-stat__val {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(167, 139, 250, 0.85);
}

.rv-stat__lbl {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rv-stat__sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  margin: 0 0.8rem;
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 14px;
  margin-top: 1.25rem;
}

.rv-card {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: rvReveal 0.6s ease forwards;
}

.rv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.25), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.rv-card:hover {
  transform: translateY(-3px);
  background: rgba(124, 58, 237, 0.025);
  border-color: rgba(124, 58, 237, 0.1);
}

.rv-card:hover::before { opacity: 1; }

.rv-card:nth-child(2) { animation-delay: 0.1s; }
.rv-card:nth-child(3) { animation-delay: 0.2s; }
.rv-card:nth-child(4) { animation-delay: 0.3s; }
.rv-card:nth-child(5) { animation-delay: 0.4s; }
.rv-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes rvReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rv-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rv-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.rv-card__meta {
  flex: 1;
  min-width: 0;
}

.rv-card__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-card__title {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  font-size: 0.9rem;
}

.rv-card__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.rv-thumb {
  border: none;
  border-radius: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.25s ease;
}

.rv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.rv-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rv-thumb:hover img {
  transform: scale(1.06);
}

.rv-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 11, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 2rem;
}

.rv-lightbox.is-active { display: flex; }

.rv-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.rv-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  border-radius: 10px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rv-lightbox__close:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.15);
  color: #fff;
}

.rv-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  gap: 0.5rem;
}

.rv-empty__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(167, 139, 250, 0.5);
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.rv-empty__text {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .rv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .rv { padding: 0 1rem 3rem; }
  .rv-hero { padding: 1.75rem 1.25rem 1.25rem; border-radius: 20px; }
  .rv-hero__title { font-size: 1.9rem; }
  .rv-stats { flex-direction: row; padding: 0.6rem 1.2rem; }
  .rv-card__avatar { width: 40px; height: 40px; border-radius: 10px; }
}

@media (max-width: 480px) {
  .rv-hero { padding: 1.5rem 1rem 1rem; }
  .rv-hero__title { font-size: 1.6rem; }
  .rv-badge { font-size: 0.65rem; }
  .rv-card { padding: 1rem; border-radius: 14px; }
  .rv-card__gallery { grid-template-columns: repeat(3, 1fr); }
  .rv-thumb { border-radius: 10px; }
}
