:root {
  --pl-bg: #06070b;
  --pl-panel: rgba(255, 255, 255, 0.045);
  --pl-line: rgba(255, 255, 255, 0.10);
  --pl-copy: rgba(255, 255, 255, 0.68);
  --pl-pink: var(--pink, #ff165d);
  --pl-gold: #ffc23d;
  --pl-purple: #772ec4;
}

* {
  box-sizing: border-box;
}

body.pl-body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(
      ellipse 42% 28% at 86% 7%,
      rgba(255, 194, 61, 0.13),
      transparent 72%
    ),
    radial-gradient(
      ellipse 40% 34% at 10% 76%,
      rgba(117, 42, 191, 0.18),
      transparent 74%
    ),
    var(--pl-bg);
  color: #ffffff;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

.pl-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}


.pl-hero,
.pl-content,
.pl-data-disclaimer-text {
  position: relative;
  z-index: 1;
}

.pl-container {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.pl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  padding: 0 24px;
  border-bottom: 1px solid var(--pl-line);
  background: rgba(3, 4, 7, 0.90);
}

.pl-brand {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-decoration: none;
}

.pl-brand strong {
  color: var(--pl-pink);
}

.pl-nav nav {
  display: flex;
  gap: 26px;
}

.pl-nav nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}

.pl-nav nav a:hover {
  color: #ffffff;
}

.pl-hero {
  padding: 88px 0 36px;
  text-align: center;
}

.pl-eyebrow {
  margin: 0 0 14px;
  color: var(--pl-pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pl-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.pl-intro {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--pl-copy);
  font-size: 1.05rem;
  line-height: 1.65;
}

.pl-trust-note {
  max-width: 700px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pl-live {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.pl-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #41e38b;
  animation: pl-pulse 5s ease-in-out infinite;
}

@keyframes pl-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
    box-shadow: 0 0 4px rgba(65, 227, 139, 0.30);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
    box-shadow:
      0 0 8px rgba(65, 227, 139, 0.95),
      0 0 19px rgba(65, 227, 139, 0.48);
  }
}

.pl-content {
  position: relative;
  overflow: hidden;
  padding: 18px 0 70px;
}

.pl-content > .pl-container {
  position: relative;
  z-index: 1;
}

.pl-controls-panel {
  margin: 0 0 18px;
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pl-periods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}

.pl-period-search-stack {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto 10px;
}

.pl-periods button {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid var(--pl-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  font-weight: 800;
}

.pl-periods button:hover,
.pl-periods button.is-active {
  border-color: var(--pl-pink);
  background: var(--pl-pink);
  color: #ffffff;
}

.pl-filter-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.pl-search {
  display: flex;
  width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.pl-search-field {
  position: relative;
  display: block;
  width: 100%;
}

.pl-search-field svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.48);
  transform: translateY(-50%);
  pointer-events: none;
}

.pl-search-field svg circle,
.pl-search-field svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.pl-search input {
  min-height: 38px;
  width: 100%;
  padding: 0 13px 0 39px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.72);
  color: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  outline: none;
}

.pl-search input:focus {
  border-color: var(--pl-pink);
  box-shadow: 0 0 0 3px rgba(255, 22, 93, 0.18);
}

.pl-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pl-category-label-row {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 5px;
}

.pl-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.pl-control-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
}

.pl-categories button,
.pl-pagination button,
.pl-cta-button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.050);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-weight: 850;
}

.pl-categories button {
  padding: 0 12px;
}

.pl-categories button:hover,
.pl-categories button.is-active,
.pl-pagination button:hover:not(:disabled) {
  border-color: var(--pl-pink);
  color: #ffffff;
  background: var(--pl-pink);
}

.pl-filter-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  text-align: left;
}

.pl-egg-guide {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.pl-table-wrap {
  overflow-x: auto;
}

.pl-table-head,
.pl-table-row {
  display: grid;
  grid-template-columns:
    65px
    minmax(220px, 1.5fr)
    minmax(145px, 0.9fr)
    minmax(100px, 0.6fr)
    minmax(120px, 0.7fr)
    minmax(110px, 0.7fr)
    minmax(135px, 0.7fr);
  align-items: center;
  gap: 14px;
  min-width: 1040px;
}

.pl-table-head {
  padding: 0 20px 10px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.pl-table-head span:not(:nth-child(2)) {
  text-align: left;
}

.pl-table-row {
  position: relative;
  min-height: 82px;
  margin-bottom: 10px;
  padding: 13px 20px;
  border: 1px solid var(--pl-line);
  border-radius: 17px;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.022)
    );
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.pl-table-row:first-child {
  border-color: rgba(255, 198, 57, 0.28);
}

.pl-table-row__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.pl-rank,
.pl-number,
.pl-money,
.pl-eggs {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.pl-rank {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 900;
}

.pl-trophy {
  font-size: 1.15rem;
  filter: drop-shadow(0 0 7px rgba(255, 198, 45, 0.62));
}

.pl-firm {
  display: flex;
  align-items: center;
  gap: 13px;
}

.pl-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--pl-line);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(119, 46, 196, 0.18),
      rgba(255, 255, 255, 0.025)
    );
  font-size: 0.78rem;
  font-weight: 900;
}

.pl-firm strong {
  display: block;
  font-size: 0.96rem;
}

.pl-firm small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.74rem;
}

.pl-money {
  font-size: 1rem;
  font-weight: 850;
}

.pl-number {
  color: rgba(255, 255, 255, 0.72);
}

.pl-eggs {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.pl-egg {
  display: inline-block;
  width: 17px;
  height: 22px;
  border: 1px solid rgba(255, 239, 163, 0.95);
  border-radius: 52% 52% 46% 46% / 61% 61% 40% 40%;
  background:
    radial-gradient(
      circle at 34% 25%,
      #fff8bd 0 8%,
      transparent 9%
    ),
    linear-gradient(
      145deg,
      #fff1a3,
      #f7bf32 42%,
      #b96f00
    );
  box-shadow:
    0 0 8px rgba(255, 197, 47, 0.34),
    inset -3px -4px 5px rgba(124, 66, 0, 0.25);
}

.pl-loading {
  padding: 42px;
  border: 1px solid var(--pl-line);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.pl-disclaimer {
  max-width: 980px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 720px) {
  .pl-nav nav {
    display: none;
  }

  .pl-hero {
    padding-top: 66px;
  }
}


/* Shared prop firm vector logos */

img.pl-logo {
  display: block;
  padding: 6px;
  object-fit: contain;
}
/* Direct prop firm logo rendering v9 */

/*
 * Image logos use their own SVG artwork with rounded corners.
 * Span-based initials retain their existing placeholder styling.
 */
img.pl-logo {
  display: block !important;

  width: 46px !important;
  height: 46px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;

  background: transparent !important;
  background-color: transparent !important;

  border: 0 !important;
  border-radius: 12px !important;

  outline: 0 !important;
  box-shadow: none !important;
}


/* Dodo payout league interaction correction v4 */


/* No lift, movement or background-colour animation */
.pl-table-row,
.pl-row {
  transform: none !important;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease !important;
}

/* Pink outline only */
.pl-table-row:hover,
.pl-row:hover {
  transform: none !important;

  border-color:
    color-mix(
      in srgb,
      var(--pl-pink, #ff165d) 82%,
      white 18%
    ) !important;

  box-shadow:
    0 0 0 1px
      color-mix(
        in srgb,
        var(--pl-pink, #ff165d) 58%,
        transparent
      ),
    0 0 17px
      color-mix(
        in srgb,
        var(--pl-pink, #ff165d) 30%,
        transparent
      ) !important;
}

/* Sharp first-place trophy */
.pl-rank-sharp-trophy {
  display: block;
  width: 23px;
  height: 23px;

  color: #ffc72c;

  filter:
    drop-shadow(
      0 0 5px
      rgba(255, 199, 44, 0.34)
    );
}

.pl-rank-sharp-trophy path {
  vector-effect: non-scaling-stroke;
}


/* Dodo sortable payout analytics table v6 */

#pl-league {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pl-analytics-head,
.pl-analytics-row {
  display: grid !important;

  grid-template-columns:
    62px
    minmax(215px, 1.7fr)
    minmax(145px, 1fr)
    minmax(115px, 0.8fr)
    minmax(155px, 1.05fr)
    minmax(145px, 0.95fr)
    minmax(145px, 1fr)
    minmax(145px, 0.95fr);

  align-items: center;
  column-gap: 16px;

  min-width: 1250px;
}

.pl-analytics-head {
  padding: 0 22px 12px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.06em;
  line-height: 1.2;

  text-transform: uppercase;
}

.pl-analytics-head .pl-analytics-cell {
  text-align: left;
}

.pl-analytics-head .pl-sort-button {
  justify-content: flex-start;
  text-align: left;
}

.pl-analytics-head small {
  display: block;
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.38);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 0;
  text-transform: none;
}

.pl-analytics-row {
  min-height: 78px;
  margin-bottom: 10px;
  padding: 14px 22px;

  color: #fff;
  text-decoration: none;

  background:
    var(
      --pl-panel,
      rgba(255, 255, 255, 0.045)
    ) !important;

  border:
    1px solid
    var(
      --pl-line,
      rgba(255, 255, 255, 0.10)
    );

  border-radius: 16px;

  transform: none !important;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease !important;
}

.pl-analytics-row.is-first {
  background:
    linear-gradient(
      90deg,
      rgba(117, 86, 18, 0.20),
      rgba(74, 22, 48, 0.20)
    ) !important;

  border-color:
    rgba(255, 199, 44, 0.40);
}

.pl-analytics-row:hover {
  background:
    var(
      --pl-panel,
      rgba(255, 255, 255, 0.045)
    ) !important;

  border-color:
    color-mix(
      in srgb,
      var(--pl-pink, #ff165d) 82%,
      white 18%
    ) !important;

  box-shadow:
    0 0 0 1px
      color-mix(
        in srgb,
        var(--pl-pink, #ff165d) 58%,
        transparent
      ),
    0 0 17px
      color-mix(
        in srgb,
        var(--pl-pink, #ff165d) 30%,
        transparent
      ) !important;

  transform: none !important;
}

.pl-analytics-row.is-first:hover {
  background:
    linear-gradient(
      90deg,
      rgba(117, 86, 18, 0.20),
      rgba(74, 22, 48, 0.20)
    ) !important;
}

.pl-analytics-cell {
  min-width: 0;
}

.pl-analytics-rank {
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.62);

  font-size: 18px;
  font-weight: 800;
}

.pl-firm-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pl-firm-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.pl-firm-copy strong {
  overflow: hidden;

  font-size: 15px;
  font-weight: 800;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.pl-firm-copy small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.pl-money-cell {
  font-size: 15px;
  font-weight: 800;
}

.pl-latest-cell {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.pl-average-cell {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.pl-average-gauge {
  display: inline-flex;
  width: 82px;
  min-height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.pl-average-gauge__svg {
  display: block;
  width: 72px;
  height: 38px;
  overflow: visible;
}

.pl-average-gauge__track,
.pl-average-gauge__active {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
}

.pl-average-gauge__track {
  stroke: rgba(255, 255, 255, 0.16);
}

.pl-average-gauge__active {
  stroke: #49dfc4;
  filter:
    drop-shadow(
      0 0 4px
      rgba(73, 223, 196, 0.34)
    );
}

.pl-average-gauge__needle {
  stroke: rgba(255, 255, 255, 0.90);
  stroke-linecap: round;
  stroke-width: 2.2;
}

.pl-average-gauge__hub {
  fill: #ffffff;
  stroke: rgba(8, 12, 16, 0.88);
  stroke-width: 1.1;
}

.pl-average-gauge__value {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.pl-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin: 0;
  padding: 5px 0;

  color: inherit;
  font: inherit;

  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;

  background: transparent;
  border: 0;
  cursor: pointer;
}

.pl-sort-button:hover,
.pl-sort-button:focus-visible,
.pl-sort-button.is-active {
  color: #fff;
}

.pl-sort-button:focus-visible {
  outline:
    2px solid
    var(--pl-pink, #ff165d);

  outline-offset: 4px;
  border-radius: 3px;
}

.pl-sort-arrow {
  display: inline-flex;
  width: 19px;
  height: 19px;

  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.42);

  font-size: 15px;
  line-height: 1;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius: 5px;
}

.pl-sort-button.is-active
.pl-sort-arrow {
  color: var(--pl-pink, #ff165d);

  border-color:
    color-mix(
      in srgb,
      var(--pl-pink, #ff165d) 48%,
      transparent
    );
}

.pl-eggs-cell {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pl-mini-egg {
  display: inline-block;

  width: 14px;
  height: 20px;

  background:
    radial-gradient(
      circle at 35% 27%,
      rgba(255, 255, 255, 0.92) 0 5%,
      transparent 7%
    ),
    linear-gradient(
      155deg,
      #fff4a3 0%,
      #ffc72c 40%,
      #c47700 100%
    );

  border:
    1px solid
    rgba(255, 232, 125, 0.85);

  border-radius:
    50% 50% 46% 46% /
    58% 58% 42% 42%;

  box-shadow:
    0 0 8px
    rgba(255, 199, 44, 0.42);
}

.pl-no-eggs {
  color: rgba(255, 255, 255, 0.28);
}

.pl-loading,
.pl-empty,
.pl-error {
  padding: 40px 24px;

  color: rgba(255, 255, 255, 0.66);
  text-align: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.10);

  border-radius: 16px;
}

.pl-error {
  color: #ff8da9;
}

.pl-info-section,
.pl-faq-section {
  position: relative;
  z-index: 1;
  padding: 0 0 70px;
}

.pl-support-stack {
  display: grid;
  gap: 30px;
}

.pl-info-box,
.pl-cta-box {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.060),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.pl-info-box,
.pl-cta-box {
  padding: clamp(20px, 2.4vw, 28px);
}

.pl-info-box {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 199, 92, 0.13),
      rgba(255, 199, 92, 0.040) 34%,
      rgba(255, 255, 255, 0.018) 62%,
      transparent 82%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.060),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.070),
    inset 0 0 44px rgba(255, 190, 72, 0.055),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.pl-info-box h2,
.pl-cta-box h2,
.pl-faq-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.pl-info-box p,
.pl-cta-box p,
.pl-faq-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.pl-info-box p + p,
.pl-cta-box p + p {
  margin-top: 13px;
}

.pl-cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.pl-cta-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  text-decoration: none;
  background: var(--pl-pink);
  border-color: var(--pl-pink);
}

.pl-faq-list {
  display: grid;
  max-width: 880px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pl-faq-section h2 {
  text-align: center;
}

.pl-faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.pl-faq-list summary {
  padding: 13px 14px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}

.pl-faq-list p {
  padding: 0 14px 14px;
}

@media (max-width: 820px) {
  .pl-filter-grid,
  .pl-filter-row,
  .pl-support-stack,
  .pl-faq-list {
    grid-template-columns: 1fr;
  }

  .pl-filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }

  .pl-category-label-row {
    justify-content: center;
  }

  .pl-categories {
    justify-content: center;
  }

  .pl-control-label {
    text-align: center;
  }

}

@media (max-width: 900px) {
  #pl-league {
    overscroll-behavior-x: contain;
  }

  .pl-analytics-head,
  .pl-analytics-row {
    min-width: 1120px;

    grid-template-columns:
      54px
      200px
      140px
      110px
      150px
      140px
      140px
      130px;
  }
}


/* Payout league duplicate-heading cleanup v7 */

/*
 * Only the JavaScript analytics heading is allowed.
 * This guards against an old static heading being restored.
 */
.pl-table-head:not(.pl-analytics-head) {
  display: none !important;
}

/* Firm rows no longer carry a repeated analytics subtitle. */
.pl-firm-copy small {
  display: none !important;
}


/* Responsive payout analytics width correction v8 */

/*
 * Desktop:
 * The table uses the full available parent width.
 * No artificial 1250px minimum width.
 */
#pl-league {
  width: 100%;
  max-width: 100%;

  overflow-x: auto;
  overflow-y: visible;
}

.pl-analytics-head,
.pl-analytics-row {
  width: 100% !important;
  min-width: 0 !important;

  grid-template-columns:
    48px
    minmax(150px, 1.55fr)
    minmax(96px, 0.98fr)
    minmax(76px, 0.72fr)
    minmax(105px, 0.98fr)
    minmax(120px, 0.96fr)
    minmax(150px, 1.08fr) !important;

  column-gap:
    clamp(
      8px,
      0.9vw,
      14px
    ) !important;
}

.pl-analytics-head {
  padding-right:
    clamp(
      14px,
      1.5vw,
      22px
    ) !important;

  padding-left:
    clamp(
      14px,
      1.5vw,
      22px
    ) !important;

  font-size:
    clamp(
      10px,
      0.75vw,
      12px
    );
}

.pl-analytics-row {
  padding-right:
    clamp(
      14px,
      1.5vw,
      22px
    ) !important;

  padding-left:
    clamp(
      14px,
      1.5vw,
      22px
    ) !important;
}

.pl-analytics-row[href] {
  cursor: pointer;
}

.pl-analytics-cell {
  min-width: 0;

  overflow-wrap: normal;
  word-break: normal;
}

.pl-money-cell {
  font-size:
    clamp(
      13px,
      0.95vw,
      15px
    );
}

.pl-latest-cell {
  font-size:
    clamp(
      11px,
      0.82vw,
      13px
    );
}

.pl-recency {
  display: inline-block;
  color: rgba(255, 255, 255, 0.80);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-align: left;
}

.pl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
}

.pl-pagination[hidden] {
  display: none;
}

.pl-pagination button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  line-height: 1;
}

.pl-pagination button svg {
  display: block;
  width: 18px;
  height: 18px;
}

.pl-pagination button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pl-pagination button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.pl-pagination span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  font-weight: 800;
}

.pl-firm-copy strong {
  font-size:
    clamp(
      13px,
      0.95vw,
      15px
    );
}

/*
 * Slightly narrower desktop/tablet:
 * Tighten spacing first rather than showing a scrollbar.
 */
@media (max-width: 1120px) {
  .pl-analytics-head,
  .pl-analytics-row {
    grid-template-columns:
      42px
      minmax(135px, 1.45fr)
      minmax(90px, 0.95fr)
      minmax(70px, 0.68fr)
      minmax(98px, 0.92fr)
      minmax(112px, 0.90fr)
      minmax(138px, 1fr) !important;

    column-gap: 8px !important;
  }

  .pl-analytics-head {
    letter-spacing: 0.035em;
  }

  .pl-logo {
    width: 40px !important;
    height: 40px !important;
  }

  .pl-mini-egg {
    width: 12px;
    height: 18px;
  }
}

/*
 * Only genuinely narrow layouts receive a minimum table
 * width and therefore horizontal scrolling.
 */
@media (max-width: 960px) {
  #pl-league {
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .pl-analytics-head,
  .pl-analytics-row {
    width: auto !important;
    min-width: 940px !important;

    grid-template-columns:
      46px
      155px
      110px
      92px
      125px
      126px
      145px !important;

    column-gap: 10px !important;
  }

  .pl-average-gauge {
    width: 76px;
    min-height: 50px;
  }

  .pl-average-gauge__svg {
    width: 66px;
    height: 35px;
  }

  .pl-average-gauge__value {
    font-size: 12px;
  }
}


/* Dodo custom horizontal scrollbar v9 */

:root {
  --dodo-scroll-pink: var(--pink, #ff165d);
  --dodo-scroll-purple: #8f52ff;
  --dodo-scroll-gold: #ffc23d;
  --dodo-scroll-track: rgba(255, 255, 255, 0.06);
  --dodo-scroll-track-border: rgba(255, 255, 255, 0.08);
  --dodo-scroll-frame: rgba(255, 255, 255, 0.10);
  --dodo-scroll-bg: rgba(10, 9, 16, 0.94);
}

/* the JS below adds this class to the real horizontal scroller */
.dodo-scroll-x {
  scrollbar-width: thin;
  scrollbar-color: var(--dodo-scroll-pink) rgba(255, 255, 255, 0.06);
  scrollbar-gutter: stable both-edges;
  padding-bottom: 8px;
}

/* Chromium / Edge / Safari */
.dodo-scroll-x::-webkit-scrollbar {
  height: 14px;
}

.dodo-scroll-x::-webkit-scrollbar-track {
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.03) 100%
    );
  border: 1px solid var(--dodo-scroll-track-border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(0,0,0,0.18);
}

.dodo-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid var(--dodo-scroll-bg);
  background:
    linear-gradient(
      90deg,
      var(--dodo-scroll-pink) 0%,
      var(--dodo-scroll-purple) 58%,
      var(--dodo-scroll-gold) 100%
    );
  box-shadow:
    0 0 10px rgba(255, 47, 134, 0.25),
    0 0 18px rgba(143, 82, 255, 0.16);
}

.dodo-scroll-x::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      90deg,
      #ff4d99 0%,
      #9b63ff 58%,
      #f5cf62 100%
    );
  box-shadow:
    0 0 12px rgba(255, 47, 134, 0.32),
    0 0 20px rgba(143, 82, 255, 0.22);
}

.dodo-scroll-x::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(
      90deg,
      #ff5ea3 0%,
      #a56bff 58%,
      #f7d771 100%
    );
}

.dodo-scroll-x::-webkit-scrollbar-corner {
  background: transparent;
}



/* Dodo direct horizontal scrollbar v10 */

/*
 * The payout league is a grid made from div elements.
 * #pl-league is the actual horizontal scrolling container.
 */

#pl-league {
  scrollbar-width: thin;

  scrollbar-color:
    #b94cff
    rgba(255, 255, 255, 0.07);
}

/* Chrome, Edge and Safari */

#pl-league::-webkit-scrollbar {
  height: 14px;

  background: transparent;
}

#pl-league::-webkit-scrollbar-track {
  margin-inline: 8px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  box-shadow:
    inset 0 1px 2px
    rgba(0, 0, 0, 0.48);
}

#pl-league::-webkit-scrollbar-thumb {
  min-width: 64px;

  background:
    linear-gradient(
      90deg,
      #ff165d 0%,
      #d43bca 32%,
      #8f52ff 68%,
      #f1bf42 100%
    );

  border:
    3px solid
    #0d0d14;

  border-radius: 999px;

  box-shadow:
    0 0 8px
    rgba(255, 47, 134, 0.30),
    0 0 14px
    rgba(143, 82, 255, 0.22);
}

#pl-league::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      90deg,
      #ff559f 0%,
      #df50d3 32%,
      #a16aff 68%,
      #f5cf63 100%
    );

  box-shadow:
    0 0 10px
    rgba(255, 47, 134, 0.42),
    0 0 18px
    rgba(143, 82, 255, 0.30);
}

#pl-league::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(
      90deg,
      #ff6baa 0%,
      #e75ddb 32%,
      #ad77ff 68%,
      #f8da78 100%
    );
}

/*
 * Remove the square browser arrow buttons that are visible
 * at both ends of the current default scrollbar.
 */

#pl-league::-webkit-scrollbar-button {
  display: none;

  width: 0;
  height: 0;
}

#pl-league::-webkit-scrollbar-corner {
  background: transparent;
}


/* Dodo payout data legal notice v1 */

.pl-data-notice {
  max-width: 980px;

  margin: 34px auto 8px;
  padding: 22px 24px;

  color: rgba(255, 255, 255, 0.60);

  font-size: 12px;
  line-height: 1.65;
  text-align: center;

  background: rgba(255, 255, 255, 0.025);

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 15px;
}

.pl-data-notice p {
  margin: 0 0 9px;
}

.pl-data-notice p:last-of-type {
  margin-bottom: 13px;
}

.pl-data-notice strong {
  color: rgba(255, 255, 255, 0.88);
}

.pl-data-notice a {
  color: #ff5ca8;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pl-data-notice a:hover,
.pl-data-notice a:focus-visible {
  color: #fff;
}


/* Plain payout disclaimer text v2 */

.pl-data-disclaimer-text {
  width: min(920px, calc(100% - 40px));

  margin:
    52px auto
    76px;

  padding: 0;

  color:
    rgba(255, 255, 255, 0.56);

  font-size: 12px;
  font-weight: 450;
  line-height: 1.7;
  text-align: center;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 700px) {
  .pl-data-disclaimer-text {
    width: calc(100% - 28px);

    margin-top: 42px;
    margin-bottom: 58px;

    font-size: 11px;
  }
}




/* DODO PROCEDURAL CENTRE SMOKE BEGIN */

body.pl-body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #020204 !important;
}

.pl-main {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: visible !important;
  background: transparent !important;
}

/*
 * One viewport-wide atmosphere for the hero/table-intro zone only.
 * It stays fixed at the top and fades before the ranked table body.
 */
.pl-atmosphere {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(430px, 54vh, 660px);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      #07080d 0%,
      rgba(4, 4, 8, 0.94) 45%,
      rgba(2, 2, 4, 0.58) 74%,
      transparent 100%
    );
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.58) 82%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to bottom,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.58) 82%,
      transparent 100%
    );
}

/* Gold remains below the smoke and is centred precisely on the viewport. */
.pl-atmosphere__gold {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 58% 34% at 50% -2%,
      rgba(255, 231, 128, 0.92) 0%,
      rgba(255, 199, 58, 0.66) 20%,
      rgba(223, 126, 13, 0.31) 43%,
      rgba(108, 57, 5, 0.13) 64%,
      transparent 84%
    ),
    radial-gradient(
      ellipse 34% 76% at 50% 18%,
      rgba(246, 177, 41, 0.20) 0%,
      rgba(124, 66, 7, 0.10) 48%,
      transparent 86%
    );
}

.pl-smoke-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(0.96);
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000 0%,
      #000 34%,
      rgba(0, 0, 0, 0.54) 64%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to bottom,
      #000 0%,
      #000 34%,
      rgba(0, 0, 0, 0.54) 64%,
      transparent 100%
    );
}

.pl-hero,
.pl-content,
.pl-content > .pl-container,
.pl-table-wrap,
#pl-league,
.pl-data-disclaimer-text {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.pl-hero,
.pl-content {
  isolation: auto !important;
  overflow: visible !important;
}

.pl-loading,
.pl-empty,
.pl-error {
  background: rgba(5, 5, 9, 0.62);
  backdrop-filter: blur(8px);
}

@media (max-width: 700px) {
  .pl-atmosphere__gold {
    background:
      radial-gradient(
        ellipse 92% 32% at 50% -1%,
        rgba(255, 228, 119, 0.78) 0%,
        rgba(255, 190, 51, 0.54) 23%,
        rgba(206, 111, 12, 0.27) 47%,
        rgba(88, 46, 5, 0.12) 66%,
        transparent 86%
      ),
      radial-gradient(
        ellipse 58% 72% at 50% 16%,
        rgba(234, 159, 31, 0.16) 0%,
        rgba(102, 53, 6, 0.08) 50%,
        transparent 88%
      );
  }

  .pl-smoke-canvas {
    opacity: 0.78;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-smoke-canvas {
    opacity: 0.28;
  }
}

/* DODO PROCEDURAL CENTRE SMOKE END */

/* DODO SHARED FOOTER RESTORE BEGIN */

/*
 * The shared footer sits outside .pl-main.
 * Keep it above the fixed procedural atmosphere and give it the
 * same clean black footer background used throughout the site.
 */
#dodo-shared-footer {
  position: relative;
  z-index: 50;
  display: block;
  isolation: isolate;
  width: 100%;
  background: #000;
}

/* DODO SHARED FOOTER RESTORE END */

/* DODO PAYOUT TABLE FONT POLISH START */

/* Body/table copy: cleaner, smaller, less chunky */
.pl-row,
.pl-row *,
.payout-league-table tbody,
.payout-league-table tbody *,
.league-table tbody,
.league-table tbody *,
.payout-table tbody,
.payout-table tbody *,
[class*="payout"] tbody,
[class*="league"] tbody {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* Normal table values */
.pl-row,
.pl-row td,
.pl-row span,
.pl-row a,
.payout-league-table tbody td,
.league-table tbody td,
.payout-table tbody td,
[class*="payout"] tbody td,
[class*="league"] tbody td {
  font-size: 13px !important;
  line-height: 18px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}

/* Firm names should still be readable, but not fat/clumsy */
.pl-firm-name,
.pl-name,
.pl-firm-title,
.firm-name,
[class*="firm-name"],
[class*="firm-title"] {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  line-height: 19px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
}

/* Rank numbers and small meta text */
.pl-rank,
.rank,
.text-xs,
[class*="rank"],
[class*="meta"],
[class*="sub"] {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-weight: 500 !important;
}

/* Money/number columns: still strong, but less blocky */
.pl-row strong,
.pl-row b,
.payout-league-table tbody strong,
.league-table tbody strong,
.payout-table tbody strong,
[class*="payout"] tbody strong,
[class*="league"] tbody strong,
.font-semibold {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
}

/* Keep headings/display titles in the existing Dodo style */
.pl-heading,
.pl-table-head,
.pl-table-head *,
.payout-league-table thead,
.payout-league-table thead *,
.league-table thead,
.league-table thead *,
.payout-table thead,
.payout-table thead *,
[class*="table-head"],
[class*="table-head"] *,
thead,
thead * {
  font-family: inherit !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}

/* Slightly more elegant row spacing with 64px badges */
.pl-row,
.payout-league-table tbody tr,
.league-table tbody tr,
.payout-table tbody tr {
  min-height: 82px !important;
}

/* DODO PAYOUT TABLE FONT POLISH END */

/* DODO RAW PREMIUM BADGES ONLY START */

/*
  Keep the real premium badge image.
  Remove added CSS tile/frame/shell/glow effects around it.
  Do not change payout data or JS.
*/

.pl-logo-wrap,
.pl-logo-frame,
.pl-logo-badge,
.pl-logo-shell,
.pl-badge-wrap,
.pl-badge-frame,
.pl-badge-shell,
.pl-badge-tile,
.badge-wrap,
.badge-frame,
.badge-shell,
.badge-tile {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.pl-logo-wrap::before,
.pl-logo-wrap::after,
.pl-logo-frame::before,
.pl-logo-frame::after,
.pl-logo-badge::before,
.pl-logo-badge::after,
.pl-logo-shell::before,
.pl-logo-shell::after,
.pl-badge-wrap::before,
.pl-badge-wrap::after,
.pl-badge-frame::before,
.pl-badge-frame::after,
.pl-badge-shell::before,
.pl-badge-shell::after,
.pl-badge-tile::before,
.pl-badge-tile::after,
.badge-wrap::before,
.badge-wrap::after,
.badge-frame::before,
.badge-frame::after,
.badge-shell::before,
.badge-shell::after,
.badge-tile::before,
.badge-tile::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

img.pl-logo,
.pl-logo img,
.pl-logo-wrap img,
.pl-logo-frame img,
.pl-logo-badge img,
.pl-logo-shell img,
.pl-badge-wrap img,
.pl-badge-frame img,
.pl-badge-shell img,
.pl-badge-tile img,
.badge-wrap img,
.badge-frame img,
.badge-shell img,
.badge-tile img {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  object-fit: contain !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  border-radius: 0 !important;
}

/* fallback initials only, not premium image tiles */
span.pl-logo {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 10px !important;
}

/* DODO RAW PREMIUM BADGES ONLY END */

