.dcr-article-ranking {
  box-sizing: border-box;
  margin: 2rem 0;
  width: 100%;
}

.dcr-article-ranking__header {
  margin-bottom: 1.25rem;
}

.dcr-article-ranking__eyebrow {
  align-items: center;
  color: #ff6584;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.dcr-article-ranking__live-dot {
  animation: dcrLivePulse 1.8s infinite;
  background: #22d986;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 217, 134, 0.8);
  display: inline-block;
  height: 8px;
  width: 8px;
}

@keyframes dcrLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 217, 134, 0.7);
    transform: scale(0.95);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 217, 134, 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 217, 134, 0);
    transform: scale(0.95);
  }
}

.dcr-article-ranking__title {
  border-left: 4px solid #ff6584;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.35rem;
  padding-left: 10px;
}

.dcr-article-ranking__subtitle {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.dcr-article-ranking__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* RECTANGULAR CARD WITH MAXIMUM CONTRAST & UNIFORM LAYOUT */
.dcr-article-ranking__item {
  align-items: center;
  background: #140f18;
  background: linear-gradient(135deg, #1b1522 0%, #100b14 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  color: #ffffff !important;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dcr-article-ranking__item:hover {
  border-color: rgba(255, 101, 132, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 101, 132, 0.18);
  transform: translateY(-2px);
}

.dcr-article-ranking__item.is-gold {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.18);
}

.dcr-article-ranking__item.is-silver {
  border-color: rgba(212, 217, 222, 0.45);
}

.dcr-article-ranking__item.is-bronze {
  border-color: rgba(205, 127, 50, 0.45);
}

/* UNIFORM RANK BADGE ACROSS ALL CARDS */
.dcr-article-ranking__rank-badge {
  align-items: center;
  background: #281e2e;
  border-bottom-right-radius: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  min-width: 62px;
  padding: 0.3rem 0.65rem;
  position: absolute;
  top: 0;
  z-index: 5;
}

.dcr-rank-num {
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.dcr-rank-text {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
}

.is-gold .dcr-article-ranking__rank-badge {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000000;
}

.is-silver .dcr-article-ranking__rank-badge {
  background: linear-gradient(135deg, #ffffff, #b0b0b0);
  color: #000000;
}

.is-bronze .dcr-article-ranking__rank-badge {
  background: linear-gradient(135deg, #e69a58, #a05a20);
  color: #ffffff;
}

/* FIXED 300x220 PHOTO THUMBNAIL CONTAINER */
.dcr-article-ranking__media {
  background: #09070c;
  border-radius: 12px;
  flex: 0 0 300px;
  height: 220px;
  max-width: 300px;
  overflow: hidden;
  position: relative;
  width: 300px;
}

.dcr-article-ranking__photo {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.dcr-article-ranking__item:hover .dcr-article-ranking__photo {
  transform: scale(1.04);
}

.dcr-article-ranking__media-link {
  inset: 0;
  position: absolute;
  z-index: 2;
}

.dcr-article-ranking__live-badge {
  align-items: center;
  background: rgba(12, 10, 16, 0.88);
  border-radius: 999px;
  bottom: 0.5rem;
  backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  font-size: 0.6rem;
  font-weight: 800;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  text-transform: uppercase;
  z-index: 3;
}

.dcr-article-ranking__live-badge i {
  animation: dcrLivePulse 1.8s infinite;
  background: #22d986;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

/* RIGHT CONTENT COLUMN */
.dcr-article-ranking__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding-top: 0.1rem;
}

.dcr-article-ranking__top {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.dcr-article-ranking .dcr-article-ranking__name,
.entry-content .dcr-article-ranking .dcr-article-ranking__name,
.entry-content h3.dcr-article-ranking__name {
  color: #ffffff !important;
  font-size: clamp(2.1rem, 3.5vw, 2.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
  margin: 0 0 0.15rem !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dcr-article-ranking .dcr-article-ranking__name a,
.entry-content .dcr-article-ranking .dcr-article-ranking__name a,
.entry-content h3.dcr-article-ranking__name a {
  color: #ffffff !important;
  font-size: clamp(2.1rem, 3.5vw, 2.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.dcr-article-ranking .dcr-article-ranking__name a:hover,
.entry-content .dcr-article-ranking .dcr-article-ranking__name a:hover {
  color: #ff6584 !important;
}

.dcr-article-ranking__stars {
  color: #ffcf57;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* CARATTERISTICHE SPECS GRID (NO ICONS, NO PILL BADGES) */
.dcr-article-ranking__characteristics {
  margin-bottom: 0.2rem;
}

.dcr-section-heading {
  color: #ff6584;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.dcr-specs-grid {
  display: grid;
  gap: 0.3rem 0.8rem;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.dcr-spec-item {
  color: #c4b9d0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.dcr-spec-label {
  color: #c4b9d0;
  font-weight: 500;
}

.dcr-spec-value {
  color: #ffffff !important;
  font-weight: 700;
}

/* DISCREET DIVIDER LINE */
.dcr-article-ranking__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0.45rem 0;
  width: 100%;
}

/* SPECIALTIES (MAX 2 LINES) */
.dcr-article-ranking__specialties {
  align-items: baseline;
  display: flex;
  font-size: 0.76rem;
  gap: 0.4rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.dcr-specialties-text {
  color: #ffffff !important;
  display: -webkit-box;
  font-weight: 600;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ACTION BUTTONS */
.dcr-article-ranking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.dcr-article-ranking__btn-primary {
  align-items: center;
  background: linear-gradient(135deg, #ff2a6d 0%, #d8004e 100%);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(255, 42, 109, 0.35);
  color: #ffffff !important;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.35rem;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dcr-article-ranking__btn-primary:hover {
  background: linear-gradient(135deg, #ff4785 0%, #ef0a5b 100%);
  box-shadow: 0 6px 20px rgba(255, 42, 109, 0.5);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.dcr-article-ranking__btn-secondary {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #ffffff !important;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.dcr-article-ranking__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
}

@media (max-width: 720px) {
  .dcr-article-ranking__item {
    flex-direction: column;
    padding: 0.85rem;
  }

  .dcr-article-ranking__media {
    flex: 0 0 200px;
    height: 200px;
    max-width: 100%;
    width: 100%;
  }

  .dcr-article-ranking__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .dcr-article-ranking__actions {
    flex-direction: column;
  }

  .dcr-article-ranking__btn-primary,
  .dcr-article-ranking__btn-secondary {
    width: 100%;
  }
}

/* STICKY BOTTOM BANNER FOR ARTICLES — MIRRORING CAMGIRL STICKY BAR */
.dcr-sticky-banner {
  background: rgba(18, 16, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  bottom: 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.65), 0 0 16px rgba(251, 93, 128, 0.12);
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  transform: translateY(110%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.38s ease;
  visibility: hidden;
  z-index: 999999;
}

.dcr-sticky-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.dcr-sticky-banner__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: clamp(20px, 3.5vw, 56px);
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
  padding: 22px 80px;
  position: relative;
  width: 100%;
}

.dcr-sticky-banner__performer {
  align-items: center;
  display: flex;
  gap: 24px;
  min-width: 0;
}

/* OVERFLOWING RECTANGULAR LIVE FEED SNAPSHOT CONTAINER (EXTRA LARGE) */
.dcr-sticky-banner__avatar-wrap {
  background: #000000;
  border: 6px solid #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.9), 0 0 32px rgba(251, 93, 128, 0.8);
  flex: 0 0 220px;
  height: 155px;
  margin-top: -85px;
  overflow: hidden;
  position: relative;
  width: 220px;
}

.dcr-sticky-banner__avatar {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dcr-sticky-banner__iframe {
  border: 0;
  height: 100%;
  pointer-events: none;
  transform: scale(1.12);
  transform-origin: center;
  width: 100%;
}

.dcr-sticky-banner__avatar-link {
  inset: 0;
  position: absolute;
  z-index: 5;
}

.dcr-sticky-banner__live-dot {
  animation: dcrLivePulse 1.8s infinite;
  background: #22d986;
  border-radius: 50%;
  bottom: 8px;
  box-shadow: 0 0 10px rgba(34, 217, 134, 0.9);
  height: 11px;
  pointer-events: none;
  position: absolute;
  right: 8px;
  width: 11px;
  z-index: 6;
}

.dcr-sticky-banner__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.dcr-sticky-banner__title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  text-align: center;
}

.dcr-sticky-banner .dcr-sticky-banner__name,
.dcr-sticky-banner .dcr-sticky-banner__highlight,
.entry-content .dcr-sticky-banner .dcr-sticky-banner__name {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.dcr-sticky-banner .dcr-sticky-banner__highlight {
  color: #ffffff !important;
  font-weight: 900 !important;
}

.dcr-sticky-banner .dcr-sticky-banner__sub,
.entry-content .dcr-sticky-banner .dcr-sticky-banner__sub {
  color: #d8cde0 !important;
  font-size: 1.05rem !important;
  margin-top: 4px !important;
  white-space: nowrap !important;
}

.dcr-sticky-banner .dcr-sticky-banner__sub strong {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.dcr-sticky-banner__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.dcr-sticky-banner__btn {
  align-items: center;
  background: #fb5d80;
  background: linear-gradient(135deg, #ff2a6d 0%, #d8004e 100%);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(251, 93, 128, 0.6);
  color: #ffffff !important;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  padding: 13px 34px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.dcr-sticky-banner__btn:hover {
  background: linear-gradient(135deg, #ff4785 0%, #ef0a5b 100%);
  box-shadow: 0 0 38px rgba(251, 93, 128, 0.95);
  color: #ffffff !important;
  transform: scale(1.05);
}

.dcr-sticky-banner__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #c4b9cc;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.dcr-sticky-banner__close span {
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.dcr-sticky-banner__close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 980px) {
  .dcr-sticky-banner__inner {
    justify-content: space-between;
    padding: 14px 60px 14px 18px;
  }

  .dcr-sticky-banner__avatar-wrap {
    flex: 0 0 80px;
    height: 60px;
    margin-top: -15px;
    width: 80px;
  }

  .dcr-sticky-banner__name {
    font-size: 1.2rem;
  }

  .dcr-sticky-banner__sub {
    font-size: 0.88rem;
  }

  .dcr-sticky-banner__btn {
    font-size: 0.95rem;
    padding: 11px 22px;
  }

  .dcr-sticky-banner__close {
    height: 34px;
    right: 16px;
    width: 34px;
  }

  .dcr-sticky-banner__close span {
    font-size: 1.35rem;
  }
}


