.lrtp-board-slot {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lrtp-content {
  gap: 16px;
}

.lrtp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-inline: var(--mobile-gutter);
  margin-top: 12px;
  padding: 24px 20px 20px;
  border-radius: var(--r-3xl);
  background:
    radial-gradient(90% 120% at 0% 0%, color-mix(in srgb, var(--secondary) 20%, transparent), transparent 62%),
    radial-gradient(80% 120% at 100% 100%, color-mix(in srgb, var(--sky) 15%, transparent), transparent 62%),
    var(--panel-2-a80);
  overflow: hidden;
}

.lrtp-hero-mark {
  position: absolute;
  width: 190px;
  height: 190px;
  opacity: 0.14;
  filter: blur(0.5px);
  pointer-events: none;
}

.lrtp-hero-mark svg {
  width: 100%;
  height: 100%;
}

.lrtp-hero-mark.is-hot {
  top: -54px;
  left: -38px;
  color: var(--secondary);
  animation: lrtp-flicker 3.4s ease-in-out infinite;
}

.lrtp-hero-mark.is-cold {
  right: -46px;
  bottom: -60px;
  color: var(--sky);
  animation: lrtp-drift 26s linear infinite;
}

.lrtp-hero-figure {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 118px;
  opacity: 0.5;
  pointer-events: none;
  filter: drop-shadow(0 12px 26px var(--accent-a25));
}

@keyframes lrtp-flicker {
  50% {
    opacity: 0.2;
    transform: scale(1.06);
  }
}

@keyframes lrtp-drift {
  to {
    transform: rotate(360deg);
  }
}

.lrtp-hero-copy {
  position: relative;
}

.lrtp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-5);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lrtp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-a45);
  animation: lrtp-live 2s ease-out infinite;
}

@keyframes lrtp-live {
  100% {
    box-shadow: 0 0 0 7px var(--accent-a00);
  }
}

@keyframes lrtp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70%,
  100% {
    transform: scale(var(--lrtp-pulse-s));
    opacity: 0;
  }
}

.lrtp-hero h1 {
  margin: 10px 0 0;
  font-size: var(--fs-5xl);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lrtp-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lrtp-hero h1 em.is-cold {
  background: linear-gradient(100deg, var(--ice), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
}

.lrtp-hero p {
  margin: 8px 0 0;
  max-width: 62ch;
  color: var(--silver);
  font-size: var(--fs-md);
  line-height: 1.55;
}

.lrtp-hero p b {
  color: var(--white);
  font-weight: 800;
}

.lrtp-hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lrtp-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 100% 0%, var(--accent-a12), transparent 70%),
    var(--panel-2-a80);
  color: var(--muted-5);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
}

.lrtp-stat b {
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;

  font-variant-numeric: tabular-nums;
}

.lrtp-hc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-inline: var(--mobile-gutter);
}

.lrtp-hc .mobile-section-head {
  margin-bottom: 0;
}

.lrtp-hc .lrtp-views {
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  padding: 2px;
  gap: 2px;
}

.lrtp-hc .lrtp-view {
  flex: 0 0 auto;
  padding: 0 9px;
  height: 23px;
  font-size: var(--fs-sm);
  white-space: nowrap;
}

.lrtp-hc .lrtp-view.is-active {
  background: linear-gradient(
    100deg,
    color-mix(in srgb, var(--secondary) 34%, transparent),
    color-mix(in srgb, var(--sky) 34%, transparent)
  );
  color: var(--white);
  box-shadow: 0 0 14px color-mix(in srgb, var(--secondary) 22%, transparent);
}

.lrtp-hc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lrtp-hc-panel {
  position: relative;
  padding: 1.5px;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}

.lrtp-hc-panel.is-hot {
  --hc-c: var(--secondary);
  --hc-beam: var(--gold);
}

.lrtp-hc-panel.is-cold {
  --hc-c: var(--sky);
  --hc-beam: var(--ice);
}

.lrtp-hc-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--hc-c) 34%, transparent),
    color-mix(in srgb, var(--hc-c) 8%, transparent) 55%,
    color-mix(in srgb, var(--hc-c) 20%, transparent)
  );
  overflow: hidden;
  pointer-events: none;
}

.lrtp-hc-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0 54%,
    color-mix(in srgb, var(--hc-c) 30%, transparent) 71%,
    var(--hc-beam) 82%,
    color-mix(in srgb, var(--hc-c) 30%, transparent) 91%,
    transparent 100%
  );
  animation: lrtp-orbit 6s linear infinite;
}

@keyframes lrtp-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.lrtp-hc-inner {
  position: relative;
  z-index: 1;
  padding: 14px 13px 13px;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--hc-c) 15%, transparent), transparent 66%),
    var(--panel);
}

.lrtp-hc-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1px 11px;
  margin-bottom: 12px;
}

.lrtp-hc-mark {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: var(--hc-c);
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--hc-c) 60%, transparent));
}

.lrtp-hc-mark svg {
  width: 100%;
  height: 100%;
}

.is-hot .lrtp-hc-mark {
  animation: lrtp-flicker 2.6s ease-in-out infinite;
}

.is-cold .lrtp-hc-mark {
  animation: lrtp-drift 30s linear infinite;
}

.lrtp-hc-head h3 {
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.lrtp-hc-note {
  grid-column: 2 / 4;
  color: var(--muted-5);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.lrtp-hc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.lrtp-hc-row {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 9px;
  padding: 7px 9px;
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--hc-c) 7%, var(--bg-deep-a50));
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.lrtp-hc-row img {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.lrtp-hc-val {
  color: var(--white);
  font-size: var(--fs-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lrtp-hc-val i {
  font-style: normal;
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--muted-5);
}

.lrtp-hc-name {
  grid-column: 2;
  color: var(--muted-5);
  font-size: var(--fs-sm);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lrtp-hc-arrow {
  grid-row: 1 / 3;
  grid-column: 3;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--hc-c) 22%, transparent);
  color: var(--hc-c);
}

.lrtp-hc-arrow svg {
  width: 14px;
  height: 14px;
}

.lrtp-hc-tip {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 40px;
  display: grid;
  gap: 3px;
  width: 206px;
  padding: 10px 11px 11px;
  border-radius: var(--r-lg);
  background: var(--bg-deep-a90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-50%) scale(0.96);
  transform-origin: 100% 50%;
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.lrtp-hc-tip-head {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--white-a10);
  color: var(--white);
  font-size: var(--fs-base);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.lrtp-hc-tip-head i {
  color: var(--hc-c);
  font-size: var(--fs-2xs);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lrtp-hc-tip-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: var(--fs-sm);
}

.lrtp-hc-tip-row i {
  color: var(--muted-5);
  font-style: normal;
  font-weight: 600;
}

.lrtp-hc-tip-row b {
  color: var(--white);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

@media (hover: hover) {
  .lrtp-hc-row:hover {
    background: color-mix(in srgb, var(--hc-c) 14%, var(--bg-deep-a50));
  }

  .lrtp-hc-arrow:hover {
    background: color-mix(in srgb, var(--hc-c) 38%, transparent);
  }

  .lrtp-hc-arrow:hover + .lrtp-hc-tip,
  .lrtp-hc-row:focus-visible .lrtp-hc-tip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (hover: none) {
  .lrtp-hc-row:focus-visible .lrtp-hc-tip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.lrtp-content .mobile-recent-wins {
  margin-inline: var(--mobile-gutter);
}

.lrtp-honesty {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 11px 15px 13px;
  border-top: 1px solid var(--white-a10);
  background: var(--bg-deep-a50);
  color: var(--muted-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.55;
}

.lrtp-honesty svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--white-a35);
}

.lrtp-views {
  display: flex;
  gap: 4px;
  padding: 3px;
  border-radius: var(--r-pill);
  background: var(--white-a05);
}

.lrtp-view {
  flex: 1;
  padding: 6px 13px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--muted-5);
  font-size: var(--fs-base);
  font-weight: 800;
  cursor: pointer;
}

.lrtp-view.is-active {
  background: var(--white-a10);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .lrtp-dot,
  .lrtp-hero-mark,
  .lrtp-hc-mark {
    animation: none;
  }

  .lrtp-hc-ring::before {
    display: none;
  }
}

@media (min-width: 769px) {
  .content.lrtp-content {
    min-height: 0;
    gap: 20px;
    padding: 30px 26px 26px;
  }

  .lrtp-hero,
  .lrtp-hc,
  .lrtp-content .mobile-recent-wins {
    margin-inline: 0;
  }

  .lrtp-hc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lrtp-hc-inner {
    padding: 18px 17px 17px;
  }

  .lrtp-hero-mark {
    width: 260px;
    height: 260px;
  }

  .lrtp-hero-copy {
    grid-area: 1 / 1;
  }

  .lrtp-hero-stats {
    grid-area: 1 / 3;
  }

  .lrtp-hero-figure {
    position: static;
    grid-area: 1 / 2;
    align-self: center;
    /* Kutuya sigdir, orana karisma: bababet'in art-read'i yatay, diger temalarinki
       hala dik -- sabit bir genislik ya da yukseklik birini mutlaka tasiriyor. */
    width: 100%;
    height: 200px;
    object-fit: contain;

    margin-bottom: -10px;
    opacity: 1;
  }

  .lrtp-hero {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 190px minmax(300px, 380px);
    align-items: center;
    gap: 26px;
    padding: 30px 30px 28px;
  }

  .lrtp-hero h1 {
    font-size: var(--fs-7xl);
  }

  .lrtp-hero p {
    font-size: var(--fs-lg);
  }

  .lrtp-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  

  

  

  

  

  

  

  

  

  

  

  

  .lrtp-honesty {
    padding: 13px 22px 15px;
  }

  

  

  

  
}

@media (min-width: 769px) and (max-width: 1180px) {
  .lrtp-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .lrtp-hero-figure {
    position: absolute;
    right: -14px;
    bottom: -18px;
    width: 140px;
    margin-bottom: 0;
    opacity: 0.5;
  }

  
}
