@import url("https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i|Nunito:300,300i,400,400i,600,600i,700,700i,800,800i,900,900i|Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900|Spline+Sans|Qwigley");

:root {
    --bg: #08080b;
    --surface: #111116;
    --surface-2: #17171d;
    --surface-3: #1f1f27;
    --text: #f8f7ff;
    --muted: #a9a6b8;
    --soft: #747083;
    --line: rgba(255, 255, 255, 0.11);
    --purple: #8e5cff;
    --purple-2: #c5a8ff;
    --cyan: #18d7ff;
    --green: #26d07c;
    --danger: #ff5367;
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Spline Sans";
    line-height: 1.5;
}

body::selection {
    background: var(--purple);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 50;
    transform: translateY(-160%);
    border-radius: 8px;
    background: #fff;
    color: #08080b;
    padding: 10px 14px;
    font-weight: 700;
}

.skip-link:focus {
    transform: translateY(0);
}

.plp-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 8, 11, 0) 0, rgba(8, 8, 11, 0.96) 31rem),
        radial-gradient(circle at 15% 18%, rgba(142, 92, 255, 0.14), transparent 24rem),
        linear-gradient(180deg, #0b0b10 0, #08080b 100%);
}

.plp-header {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    min-height: 64px;
    max-width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    /* padding: 0 40px; */
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.brand-mark img {
    width: 110px;
    height: auto;
    /* max-height: 48px; */
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #eef0ff;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(20, 18, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.desktop-nav a {
    position: relative;
    padding: 7px 14px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.desktop-nav a:first-child {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.desktop-nav a:first-child::after {
    content: none;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-size: 13px;
}

.signin-link {
    color: var(--muted);
}

.signin-link:hover,
.signin-link:focus {
    color: var(--text);
}

.primary-btn,
.outline-btn,
.lock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

.primary-btn {
    min-width: 220px;
    padding: 0 28px;
    background: linear-gradient(135deg, #9c67ff, #6f42d8);
    color: #fff;
    box-shadow: 0 16px 38px rgba(142, 92, 255, 0.32);
}

.primary-btn.compact {
    min-width: 146px;
    min-height: 40px;
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: .3px;
    border-radius: 10px;
    box-shadow: none;
}

.outline-btn {
    min-width: 190px;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #fff;
}

.primary-btn:hover,
.primary-btn:focus,
.outline-btn:hover,
.outline-btn:focus,
.lock-btn:hover,
.lock-btn:focus {
    transform: translateY(-1px);
}

.hero-section {
    --hero-bg-image: url("../images/pl-hero-bg.webp");
    --hero-bg-position: center center;
    --hero-bg-size: cover;
    position: relative;
    display: grid;
    place-items: center;
    min-height: 760px;
    padding: 120px 24px 115px;
    overflow: hidden;
    text-align: center;
    /* background:
        radial-gradient(circle at 50% 43%, rgba(142, 92, 255, 0.28), transparent 20rem),
        linear-gradient(180deg, #08080b 0, #08080b 100%); */
}

/* .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 8, 11, 0.34) 0, rgba(8, 8, 11, 0.24) 43%, rgba(8, 8, 11, 0.96) 100%),
        linear-gradient(90deg, rgba(8, 8, 11, 0.76) 0, rgba(8, 8, 11, 0.14) 50%, rgba(8, 8, 11, 0.76) 100%),
        radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.06), transparent 16rem),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 72px);
    pointer-events: none;
} */

.hero-section::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    background: var(--hero-bg-image) var(--hero-bg-position) / var(--hero-bg-size) no-repeat;
    filter: contrast(1.04) brightness(1.06) saturate(1.03);
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.hero-content img {
    width: 70px;
    height: auto;
}

.rewards-section .section-heading p::after{
    display: none;
}
.sub-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ede5ff;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "Spline Sans";
}

.contest-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    /* background: rgba(142, 92, 255, 0.22); */
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    /* font-family: "Spline Sans", "Spline Sans Neue", Arial, sans-serif; */
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.68px;
}

.contest-pill img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-content h1 {
    margin: 5px 0;
    color: #C9ADFF;
    text-align: center;
    font-family: "Spline Sans";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 90.909% */
    letter-spacing: -0.44px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: #FFF;
    font-family: "Spline Sans";
    font-size: 172px;
    font-style: normal;
    font-weight: 900;
    line-height: 140px;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.hero-content p {
    width: min(520px, 100%);
    margin: 0 auto;
    color: #FFF;
    font-size: 16px;
    /* text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62); */
    font-family: "Spline Sans";
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.joined-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    font-family: "Spline Sans";
}

.avatar-stack {
    display: inline-flex;
    align-items: center;
}

.avatar-stack span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-left: -9px;
    border: 2px solid #15151b;
    border-radius: 50%;
    background: var(--surface-2);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #33333d, #0e0e13);
}

.avatar-stack span:nth-child(2) {
    background: linear-gradient(135deg, #252d3e, #0b0b10);
}

.avatar-stack span:nth-child(3) {
    background: linear-gradient(135deg, var(--purple), #7a43d7);
}

.contest-disclaimer {
    width: min(640px, 100%);
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.45;
    font-family: "Spline Sans";
}

.prediction-section,
.rewards-section,
.terms-section,
.partners-section {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.prediction-section {
    padding: 58px 0 10px;
}

.section-heading {
    margin-bottom: 34px;
    text-align: center;
}

.section-heading.align-left {
    text-align: left;
}

.section-heading p,
.section-kicker {
    margin: 0 0 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading h2,
.partners-content h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-heading.align-left h2 {
    display: none;
}

.section-heading p::after,
.section-kicker::after {
    content: "";
    display: block;
    width: 86px;
    height: 2px;
    margin-top: 7px;
    background: linear-gradient(90deg, #fff, var(--purple));
}

.section-heading:not(.align-left) p::after {
    margin-right: auto;
    margin-left: auto;
}

.section-heading span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.prediction-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.social-icons {
    display: flex;
    gap: 10px;
    /* Spacing between icons */
  }

.social-icons {
    position: relative;
    left: 0;
    /* bottom: 20px; */
    /* -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px); */
    /* opacity: 0; */
    /* padding: 0px 10px; */
    width: 100%;
  }
  
  .social-icons:hover {
    opacity: 1;
    /* -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    transition: all 0.5s ease 500ms;
    -moz-transition: all 0.5s ease 500ms;
    -webkit-transition: all 0.5s ease 500ms;
    -ms-transition: all 0.5s ease 500ms;
    -o-transition: all 0.5s ease 500ms; */
  }
  
   .social-icons li {
    position: relative;
    margin: 0px 3px 7px;
    display: inline-block;
  }
  
  .social-icons li a {
    position: relative;
    color: #ffffff;
    font-size: 14px;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
 .social-icons li a:hover {
    background: #ffffff;
    color: #75717b;
  }
  

@media (min-width: 641px) {
    .prediction-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 1.12fr);
        gap: 24px;
        align-items: start;
    }
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rank-card,
.club-panel,
.reward-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
        rgba(19, 19, 25, 0.86);
    box-shadow: var(--card-shadow);
}

.rank-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 200px;
    padding: 22px 16px 20px;
    border-radius: 16px;
    overflow: hidden;
}

.rank-card.is-featured {
    border: 2px solid rgba(159, 107, 255, 0.95);
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.35),
        0 18px 48px rgba(91, 33, 182, 0.32),
        inset 0 0 48px rgba(124, 58, 237, 0.12);
}

.winner-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    border-bottom-left-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 92, 255, 0.38), rgba(255, 255, 255, 0.06));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.slot-empty {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slot-drop-label {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.14px;
    text-transform: uppercase;
    opacity: 0.5;
}

.drop-circle {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    width: 75px;
    height: 75px;
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.42);
    font-size: 20px;
}

/* Wide dash spacing (border dashed does not expose gap length). */
.drop-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.34) 0deg 8deg,
        transparent 8deg 24deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.drop-circle > * {
    position: relative;
    z-index: 1;
}

.slot-team {
    align-self: center;
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 92px;
}

.team-badge {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: var(--team-color, var(--purple));
    color: #101015;
    font-weight: 900;
    box-shadow: 0 0 26px color-mix(in srgb, var(--team-color, var(--purple)) 38%, transparent);
    overflow: hidden;
}

.team-badge img,
.club-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-name {
    color: #fff;
    font-weight: 700;
}

.clear-slot {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    cursor: pointer;
}

.rank-card h3 {
    margin: 18px 0 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

.rank-card.is-drag-over {
    border-color: var(--cyan);
    background: rgba(24, 215, 255, 0.08);
}

.club-panel {
    align-self: start;
    width: 100%;
    padding: 28px;
    border-radius: 16px;
}

.club-panel h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 15px;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}


@media (min-width: 768px) {
    .club-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.club-chip {
    display: grid;
    gap: 9px;
    justify-items: center;
    min-height: 98px;
    padding: 13px 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    color: #fff;
    cursor: grab;
}

.club-chip .club-logo {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #111116;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 0 18px color-mix(in srgb, var(--team-color, var(--purple)) 28%, transparent);
}

.club-chip strong {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

.club-chip.is-selected,
.club-chip:focus {
    border-color: var(--purple-2);
    box-shadow: 0 0 0 3px rgba(142, 92, 255, 0.22);
}

.club-chip.is-touch-dragging {
    border-color: var(--cyan);
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(24, 215, 255, 0.22), 0 0 0 3px rgba(24, 215, 255, 0.18);
    opacity: 0.96;
}

.club-chip.is-used {
    opacity: 0.42;
}

.mobile-drag-ghost {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1200;
    transform: translate(-50%, -120%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(7, 9, 14, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 0 2px color-mix(in srgb, var(--ghost-color, var(--cyan)) 35%, transparent);
    pointer-events: none;
}

.mobile-drag-ghost__badge {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--ghost-color, var(--cyan)) 26%, rgba(255, 255, 255, 0.03));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.mobile-drag-ghost__badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.mobile-drag-ghost__name {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.prediction-actions {
    width: 100%;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.prediction-actions .lock-btn {
    display: flex;
    width: min(720px, 100%);
    margin: 0;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    background: linear-gradient(90deg, #2ef0ff, #0a8cff);
    color: #050508;
    font-size: 18px;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 36px rgba(10, 140, 255, 0.28);
}

.prediction-status {
    min-height: 22px;
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-align: center;
}

.prediction-status.is-success {
    color: var(--green);
}

.prediction-status.is-error {
    color: var(--danger);
}

.rewards-section {
    padding: 48px 0 86px;
}

.reward-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    align-items: end;
}

.reward-card {
    position: relative;
    min-height: 430px;
    padding: 52px 44px 42px;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reward-card.purple {
   background-image: url(../images/landing/premier-league/reward-1.svg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.reward-card.cyan {
    background-image: url(../images/landing/premier-league/reward-2.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reward-card.silver {
    background-image: url(../images/landing/premier-league/reward-3.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reward-index {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}

.reward-card > i {
    color: var(--accent);
    font-size: 34px;
}

.reward-card h3 {
    margin: 30px 0 4px;
    color: #fff;
    font-size: 16px;
}

.reward-card h4 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 20px;
    line-height: 1.18;
}

.reward-card p {
    margin: 0;
    color: #d8d5e0;
    font-size: 15px;
}

.reward-card ul {
    display: grid;
    gap: 10px;
    margin: 34px 0 0;
    padding: 0;
    color: var(--soft);
    font-size: 13px;
    list-style: none;
}

.reward-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;

}

.reward-card li i {
    color: var(--accent);
}

.section-separator {
    position: relative;
    width: min(960px, calc(100% - 48px));
    height: 86px;
    margin: -18px auto 8px;
}

.section-separator::before,
.section-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 54px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24));
}

.section-separator::before {
    left: 0;
}

.section-separator::after {
    right: 0;
    transform: rotate(180deg);
}

.section-separator span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 66px;
    height: 34px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(197, 168, 255, 0.3);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(24, 215, 255, 0.26), transparent 58%),
        rgba(12, 12, 18, 0.94);
    box-shadow: 0 0 32px rgba(142, 92, 255, 0.28);
}

.section-separator span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow:
        -18px 0 0 rgba(142, 92, 255, 0.85),
        18px 0 0 rgba(197, 168, 255, 0.75),
        0 0 18px rgba(24, 215, 255, 0.8);
}

.terms-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-top: 0;
    padding: 0 0 82px;
}

.terms-copy {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(142, 92, 255, 0.16), rgba(24, 215, 255, 0.055)),
        rgba(255, 255, 255, 0.034);
}

.terms-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.05;
    text-transform: uppercase;
}

.terms-copy p:not(.section-kicker) {
    margin: 18px 0 0;
    color: #d9d6e4;
    font-size: 15px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.terms-grid article {
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.032);
}

.terms-grid i {
    color: var(--cyan);
    font-size: 20px;
}

.terms-grid h3 {
    margin: 16px 0 8px;
    color: #fff;
    font-size: 15px;
}

.terms-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.partners-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 72px;
    align-items: center;
    padding: 78px 0 86px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.partners-media {
    overflow: hidden;
    border: 1px solid rgba(142, 92, 255, 0.26);
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(142, 92, 255, 0.18);
}

.partners-media img {
    width: 100%;
    aspect-ratio: 1.58 / 1;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.08) brightness(0.88);
}

.partners-content > p:not(.section-kicker) {
    max-width: 640px;
    margin: 22px 0 30px;
    color: #d9d6e4;
    font-size: 16px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.service-list article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.032);
}

.service-list article > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--purple-2);
}

.service-list h3 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 15px;
}

.service-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.service-points {
    display: grid;
    gap: 6px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.service-points li {
    position: relative;
    padding-left: 14px;
    color: #d8d4e5;
    font-size: 12px;
    line-height: 1.35;
}

.service-points li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(24, 215, 255, 0.55);
}

.plp-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 38px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}
/* 
.plp-footer div:first-child {
    display: grid;
    gap: 4px;
} */

.plp-footer strong {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.plp-footer span,
.plp-footer a {
    font-size: 15px;
}

.plp-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.plp-footer a:hover,
.plp-footer a:focus {
    color: #fff;
}
/* 
.footer-icons {
    display: flex;
    gap: 12px;
} */

/* .footer-icons span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface-2);
    color: #fff;
} */

body.is-modal-open {
    overflow: hidden;
}

.prediction-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.prediction-modal[hidden] {
    display: none;
}

.prediction-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 6, 0.78);
    backdrop-filter: blur(14px);
}

.prediction-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 34px;
    border: 1px solid rgba(197, 168, 255, 0.26);
    border-radius: 8px;
    background:
        radial-gradient(circle at 16% 0, rgba(142, 92, 255, 0.2), transparent 18rem),
        linear-gradient(180deg, rgba(24, 24, 34, 0.98), rgba(10, 10, 15, 0.98));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    cursor: pointer;
}

.prediction-modal h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.modal-intro {
    margin: 14px 0 22px;
    color: #d9d6e4;
}

.modal-picks {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.modal-pick {
    min-height: 82px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.modal-pick span {
    display: block;
    color: var(--purple-2);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-pick strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}

.prediction-entry-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid-full {
    grid-column: 1 / -1;
}

.prediction-entry-form label {
    display: grid;
    gap: 8px;
}

.prediction-entry-form label > span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.prediction-entry-form em {
    color: var(--muted);
    font-style: normal;
    font-weight: 500;
}

.prediction-entry-form input[type="text"],
.prediction-entry-form input[type="email"],
.prediction-entry-form input[type="tel"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.prediction-entry-form input:focus {
    border-color: var(--purple-2);
    box-shadow: 0 0 0 3px rgba(142, 92, 255, 0.2);
}

.consent-check {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    color: var(--muted);
    font-size: 13px;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--purple);
}

.prediction-entry-form .consent-check > span {
    color: var(--muted);
    font-weight: 500;
}

.modal-submit {
    width: 100%;
}

.modal-submit:disabled {
    cursor: progress;
    opacity: 0.68;
}

.prediction-form-status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.prediction-form-status.is-success {
    color: var(--green);
}

.prediction-form-status.is-error {
    color: var(--danger);
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 26px;
    }

    .header-actions {
        gap: 18px;
    }

    .club-panel {
        width: 100%;
        justify-self: center;
    }

    .partners-section {
        gap: 46px;
    }
}

@media (max-width: 900px) {
    .plp-header {
        grid-template-columns: 1fr auto;
        min-height: 68px;
        /* padding: 0 18px; */
    }

    .desktop-nav,
    .signin-link {
        display: none;
    }

    .brand-mark img {
        width: 104px;
        /* max-height: 52px; */
    }

    .hero-section {
        --hero-bg-image: none;
        --hero-bg-position: center top;
        --hero-bg-size: cover;
        min-height: 690px;
        padding: 112px 20px 72px;
        background:
            radial-gradient(circle at 50% 42%, rgba(142, 92, 255, 0.24), transparent 18rem),
            linear-gradient(180deg, #08080b 0, #08080b 100%);
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px;
    }

    .reward-grid,
    .terms-section,
    .partners-section {
        grid-template-columns: 1fr;
    }

    .reward-grid {
        gap: 26px;
    }

    /* Keep stacked reward cards in ranking order on mobile/tablet. */
    .reward-card.purple {
        order: 1;
    }

    .reward-card.cyan {
        order: 2;
    }

    .reward-card.silver {
        order: 3;
    }

    .terms-section {
        margin-top: 0;
        padding-bottom: 72px;
    }

    .partners-section {
        padding-top: 72px;
    }

    .partners-media {
        order: 2;
    }

    .partners-content {
        order: 1;
    }

    .plp-footer {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .plp-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .plp-page {
        background:
            linear-gradient(180deg, rgba(8, 8, 11, 0) 0, #08080b 24rem),
            linear-gradient(180deg, #0b0b10 0, #08080b 100%);
    }

    .brand-mark img {
        width: 96px;
    }

    .primary-btn.compact {
        min-width: 124px;
        min-height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }

    .hero-section {
        --hero-bg-position: center top;
        --hero-bg-size: cover;
        display: block;
        min-height: 620px;
        padding: 122px 20px 58px;
        text-align: left;
        background:
            radial-gradient(circle at 50% 33%, rgba(142, 92, 255, 0.2), transparent 15rem),
            linear-gradient(180deg, #08080b 0, #08080b 100%);
    }

    .hero-section::before {
        background:
            linear-gradient(180deg, rgba(8, 8, 11, 0.34) 0, rgba(8, 8, 11, 0.24) 42%, rgba(8, 8, 11, 0.96) 100%),
            linear-gradient(90deg, rgba(8, 8, 11, 0.78), rgba(8, 8, 11, 0.18) 52%, rgba(8, 8, 11, 0.68)),
            repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 64px);
    }

    .contest-pill {
        min-height: 28px;
        padding: 0 12px;
        font-size: 14px;
    }

    .hero-content h1 {
        margin-top: 18px;
        font-size: 42px;
    }

    .hero-content p {
        margin: 0;
        font-size: 14px;
        text-align: center;
    }

    .hero-content img {
        width: 50px;
        height: auto;
    }
    .contest-disclaimer {
        margin: 22px 0 0;
        font-size: 11px;
    }

    .hero-actions {
        align-items: flex-start;
        margin-top: 26px;
    }

    .joined-proof {
        display: none;
    }

    .primary-btn {
        min-width: 185px;
        min-height: 46px;
        padding: 0 22px;
        font-size: 16px;
    }

    .prediction-section,
    .rewards-section,
    .terms-section,
    .partners-section {
        width: min(100% - 32px, 520px);
    }

    .prediction-actions {
        max-width: 100%;
        margin-top: 22px;
    }

    .prediction-section {
        padding: 0;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .section-heading:not(.align-left) p::after {
        margin-left: 0;
    }

    .section-heading h2,
    .partners-content h2 {
        font-size: 28px;
    }

    .section-heading.align-left h2 {
        display: block;
    }

    .section-heading.align-left p {
        display: none;
    }

    .prediction-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ranking-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ranking-grid .rank-card[data-slot="1"] {
        order: 1;
    }

    .ranking-grid .rank-card[data-slot="2"] {
        order: 2;
    }

    .ranking-grid .rank-card[data-slot="3"] {
        order: 3;
    }

    .ranking-grid .rank-card[data-slot="4"] {
        order: 4;
    }

    .rank-card {
        grid-template-columns: 0px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 6px;
        align-items: center;
        min-height: 94px;
        padding: 14px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    }

    .winner-tag,
    .drop-circle {
        display: none;
    }

    .rank-card h3 {
        display: block;
        grid-column: 2;
        margin: 0;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .rank-number {
        grid-row: 1 / span 2;
        width: 44px;
        height: 44px;
        margin: 0;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 14px;
    }

    .slot-empty,
    .slot-team {
        grid-column: 2;
        align-self: center;
        justify-items: start;
        min-height: 0;
        padding-left: 8px;
    }

    .slot-empty {
        color: #757184;
        font-size: 12px;
        gap: 0;
    }

    .slot-team {
        grid-template-columns: 42px minmax(0, 1fr) 30px;
        align-items: center;
        gap: 11px;
    }

    .team-badge {
        width: 42px;
        height: 42px;
        font-size: 11px;
    }

    .team-name {
        font-size: 16px;
        font-weight: 700;
        overflow: hidden;
        max-width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .club-panel {
        padding: 20px;
    }

    .club-panel h3 {
        font-size: 14px;
        text-transform: uppercase;
    }

    .club-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .club-chip {
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        justify-items: start;
        min-height: 56px;
        padding: 10px;
    }

    .club-chip .club-logo {
        width: 36px;
        height: 36px;
        font-size: 9px;
    }

    .club-chip strong {
        font-size: 12px;
        text-align: left;
    }

    .lock-btn {
        min-height: 46px;
        font-size: 14px;
    }

    .rewards-section {
        padding: 54px 0 62px;
    }

    .section-separator {
        width: min(100% - 32px, 520px);
        height: 64px;
        margin: -14px auto 0;
    }

    .section-separator span {
        width: 58px;
        height: 30px;
    }

    .section-heading span {
        font-size: 13px;
    }

    .reward-card {
        min-height: 0;
        padding: 68px 28px 34px;
        /* text-align: center; */
    }

    .reward-index {
        top: 14px;
        right: 18px;
        font-size: 38px;
    }

    .reward-card ul {
        width: fit-content;
        /* margin-right: auto;
        margin-left: auto; */
        text-align: left;
    }

    .terms-section {
        gap: 18px;
        margin-top: 0;
        padding: 0 0 62px;
    }

    .terms-copy {
        padding: 22px;
    }

    .terms-copy h2 {
        font-size: 24px;
    }

    .terms-copy p:not(.section-kicker) {
        font-size: 13px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .terms-grid article {
        min-height: 0;
        padding: 18px;
    }

    .terms-grid h3 {
        margin-top: 12px;
        font-size: 13px;
    }

    .partners-section {
        gap: 30px;
        padding: 62px 0 70px;
    }

    .partners-content > p:not(.section-kicker) {
        margin: 18px 0 26px;
        font-size: 14px;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-list article {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .service-list article > span {
        width: 34px;
        height: 34px;
    }

    .service-list h3 {
        font-size: 12px;
    }

    .service-list p {
        font-size: 12px;
    }

    .service-points {
        gap: 5px;
        margin-top: 8px;
    }

    .service-points li {
        font-size: 11px;
    }

    .outline-btn {
        width: 100%;
        min-height: 46px;
        font-size: 12px;
    }

    .partners-media img {
        aspect-ratio: 1 / 0.68;
    }

    .plp-footer {
        padding: 30px 18px;
        text-align: left;
    }

    .plp-footer nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 18px;
    }

    .prediction-modal {
        padding: 14px;
    }

    .prediction-modal__dialog {
        max-height: calc(100vh - 28px);
        padding: 28px 18px 22px;
    }

    .prediction-modal h2 {
        font-size: 24px;
        padding-right: 46px;
    }

    .modal-picks,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-pick {
        min-height: 0;
    }
}
