/* =========================================================
RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
min-height: 100vh;
background: #050505;
color: #f5f5f5;
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
overflow-x: hidden;
}

a {
color: inherit;
text-decoration: none;
}

button,
a {
-webkit-tap-highlight-color: transparent;
}

img {
display: block;
max-width: 100%;
}

/* =========================================================
BACKGROUND
========================================================= */

body::before {
content: "";
position: fixed;
inset: 0;
z-index: -5;
pointer-events: none;
background:
radial-gradient(circle at 50% -10%, rgba(255,255,255,0.09), transparent 38%),
radial-gradient(circle at 10% 40%, rgba(255,255,255,0.025), transparent 30%),
radial-gradient(circle at 90% 65%, rgba(255,255,255,0.025), transparent 30%),
#050505;
}

body::after {
content: "";
position: fixed;
inset: 0;
z-index: -4;
pointer-events: none;
opacity: 0.16;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
mix-blend-mode: overlay;
}

.ambient {
position: fixed;
pointer-events: none;
z-index: -3;
border-radius: 50%;
filter: blur(100px);
opacity: 0.14;
}

.ambient-one {
width: 500px;
height: 500px;
top: 5%;
left: -250px;
background: #ffffff;
animation: floatOne 14s ease-in-out infinite alternate;
}

.ambient-two {
width: 450px;
height: 450px;
right: -250px;
top: 35%;
background: #ffffff;
animation: floatTwo 17s ease-in-out infinite alternate;
}

@keyframes floatOne {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(130px, 90px, 0);
}
}

@keyframes floatTwo {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(-100px, -70px, 0);
}
}

/* =========================================================
CONTAINER
========================================================= */

.container {
width: min(1180px, calc(100% - 40px));
margin: 0 auto;
}

/* =========================================================
HEADER
========================================================= */

.site-header {
position: sticky;
top: 0;
z-index: 100;
height: 78px;
border-bottom: 1px solid rgba(255,255,255,0.07);
background: rgba(5,5,5,0.72);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}

.header-inner {
position: relative;
width: min(1320px, calc(100% - 40px));
height: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}

.brand {
display: inline-flex;
align-items: center;
width: fit-content;
font-size: 15px;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.brand-vip {
color: #ffffff;
}

.brand-gambler {
margin-left: 6px;
color: #858585;
font-weight: 600;
}

.brand-mark {
width: 7px;
height: 7px;
margin-right: 10px;
border-radius: 50%;
background: #ffffff;
box-shadow: 0 0 14px rgba(255,255,255,0.6);
}

/* =========================================================
NAVIGATION
========================================================= */

.main-nav {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
justify-content: center;
gap: 42px;
white-space: nowrap;
}

.main-nav a {
position: relative;
padding: 8px 0;
color: #777777;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
color: #ffffff;
transform: translateY(-1px);
}

.main-nav a::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
width: 0;
height: 1px;
background: #ffffff;
transform: translateX(-50%);
transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
width: 100%;
}

.header-right {
display: flex;
justify-content: flex-end;
}

.header-pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 13px;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 100px;
color: #8b8b8b;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-pill:hover {
color: #ffffff;
border-color: rgba(255,255,255,0.18);
background: rgba(255,255,255,0.025);
}

.header-pill-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: #bdbdbd;
box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* =========================================================
HERO
========================================================= */

.hero {
position: relative;
min-height: 750px;
padding-top: 55px;
display: flex;
align-items: center;
overflow: hidden;
}

.hero::before {
content: "";
position: absolute;
left: 50%;
top: 50%;
width: 850px;
height: 500px;
transform: translate(-50%, -50%);
background: radial-gradient(ellipse, rgba(255,255,255,0.085), transparent 68%);
filter: blur(20px);
pointer-events: none;
}

.hero::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: linear-gradient(to bottom, rgba(5,5,5,0), rgba(5,5,5,0.85));
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
text-align: center;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 9px;
margin-bottom: 25px;
color: #8a8a8a;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
animation: heroFade 0.8s ease both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
content: "";
width: 24px;
height: 1px;
background: #555555;
}

.hero-title {
max-width: 1100px;
margin: 0 auto;
font-size: clamp(58px, 9vw, 124px);
line-height: 0.86;
letter-spacing: -0.065em;
font-weight: 900;
color: #f7f7f7;
text-transform: uppercase;
animation: heroTitle 1s cubic-bezier(.16,1,.3,1) both;
}

.hero-title-line {
display: block;
white-space: nowrap;
}

.hero-title-line:nth-child(2),
.hero-title-line:nth-child(3) {
color: transparent;
background: linear-gradient(180deg, #ffffff 0%, #9c9c9c 45%, #454545 100%);
-webkit-background-clip: text;
background-clip: text;
}

.hero-description {
max-width: 540px;
margin: 34px auto 0;
color: #858585;
font-size: 15px;
line-height: 1.75;
font-weight: 400;
animation: heroFade 1s 0.15s ease both;
}

.hero-actions {
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
margin-top: 35px;
animation: heroFade 1s 0.3s ease both;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-width: 170px;
height: 48px;
padding: 0 20px;
border-radius: 8px;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.13em;
text-transform: uppercase;
transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button-primary {
color: #050505;
background: #f3f3f3;
}

.button-primary:hover {
background: #ffffff;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255,255,255,0.08);
}

.button-secondary {
color: #dddddd;
border: 1px solid rgba(255,255,255,0.12);
background: rgba(255,255,255,0.025);
}

.button-secondary:hover {
border-color: rgba(255,255,255,0.25);
background: rgba(255,255,255,0.06);
transform: translateY(-2px);
}

.hero-note {
margin-top: 70px;
color: #494949;
font-size: 9px;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
animation: heroFade 1s 0.45s ease both;
}

@keyframes heroTitle {
from {
opacity: 0;
transform: translateY(35px) scale(0.97);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}

@keyframes heroFade {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* =========================================================
SECTION
========================================================= */

.section {
position: relative;
padding: 105px 0;
}

.section-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 38px;
}

.section-label {
margin-bottom: 12px;
color: #666666;
font-size: 9px;
font-weight: 800;
letter-spacing: 0.22em;
text-transform: uppercase;
}

.section-title {
color: #f2f2f2;
font-size: clamp(30px, 4vw, 48px);
line-height: 1;
letter-spacing: -0.04em;
font-weight: 800;
}

.section-title span {
color: #666666;
}

.section-link {
display: inline-flex;
align-items: center;
gap: 9px;
color: #8a8a8a;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
transition: color 0.2s ease;
}

.section-link:hover {
color: #ffffff;
}

.section-link-arrow {
font-size: 15px;
transition: transform 0.2s ease;
}

.section-link:hover .section-link-arrow {
transform: translateX(4px);
}

/* =========================================================
LEADERBOARD WRAPPER
========================================================= */

.leaderboard-card {
position: relative;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.075);
border-radius: 18px;
background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.leaderboard-card::before {
content: "";
position: absolute;
width: 500px;
height: 500px;
left: 50%;
top: -320px;
transform: translateX(-50%);
background: radial-gradient(circle, rgba(255,255,255,0.09), transparent 70%);
pointer-events: none;
}

.leaderboard-top {
position: relative;
z-index: 1;
padding: 35px 40px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid rgba(255,255,255,0.055);
}

.leaderboard-name {
font-size: 22px;
font-weight: 800;
letter-spacing: -0.02em;
}

.leaderboard-name span {
color: #777777;
font-weight: 500;
}

.leaderboard-total {
text-align: right;
}

.leaderboard-total-value {
color: #ffffff;
font-size: 20px;
font-weight: 800;
}

.leaderboard-total-label {
margin-top: 3px;
color: #5c5c5c;
font-size: 8px;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
}

/* =========================================================
PODIUM
========================================================= */

.podium {
position: relative;
z-index: 1;
min-height: 400px;
padding: 50px 50px 0;
display: flex;
align-items: flex-end;
justify-content: center;
gap: 20px;
}

.podium-player {
position: relative;
width: 220px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.podium-player.first {
width: 270px;
margin-bottom: 0;
}

.podium-player.second {
width: 250px;
}

.podium-player.third {
width: 210px;
}

.podium-avatar-wrap {
position: relative;
margin-bottom: 18px;
}

.podium-player.first .podium-avatar-wrap {
margin-bottom: 21px;
}

.podium-avatar {
width: 72px;
height: 72px;
border-radius: 50%;
object-fit: cover;
border: 2px solid rgba(255,255,255,0.1);
filter: grayscale(100%);
}

.podium-player.first .podium-avatar {
width: 92px;
height: 92px;
border-color: rgba(255,255,255,0.38);
box-shadow:
0 0 0 7px rgba(255,255,255,0.025),
0 0 45px rgba(255,255,255,0.08);
}

.podium-number {
position: absolute;
right: -5px;
bottom: -2px;
width: 25px;
height: 25px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: #111111;
background: #bcbcbc;
border: 3px solid #111111;
font-size: 9px;
font-weight: 900;
}

.podium-player.first .podium-number {
width: 29px;
height: 29px;
background: #ffffff;
}

.podium-username {
color: #e7e7e7;
font-size: 14px;
font-weight: 800;
}

.podium-stat {
margin-top: 10px;
}

.podium-stat-label {
color: #666666;
font-size: 8px;
font-weight: 800;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.podium-wagered {
margin-top: 5px;
color: #b5b5b5;
font-size: 15px;
line-height: 1.1;
font-weight: 800;
letter-spacing: -0.025em;
}

.podium-base {
width: 100%;
height: 90px;
margin-top: 22px;
display: flex;
justify-content: center;
align-items: flex-start;
padding-top: 18px;
border: 1px solid rgba(255,255,255,0.07);
border-bottom: 0;
border-radius: 12px 12px 0 0;
background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
}

.podium-player.second .podium-base {
height: 115px;
}

.podium-player.first .podium-base {
height: 135px;
background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.018));
}

.podium-base-prize {
color: #b5b5b5;
font-size: 26px;
line-height: 1;
font-weight: 900;
letter-spacing: -0.04em;
}

.podium-player.first .podium-base-prize {
color: #ffffff;
font-size: 32px;
font-weight: 900;
}

.podium-player.third .podium-base-prize {
color: #777777;
font-size: 22px;
font-weight: 900;
}

/* =========================================================
COUNTDOWN
========================================================= */

.countdown-section {
position: relative;
z-index: 2;
padding: 35px 40px;
border-top: 1px solid rgba(255,255,255,0.055);
border-bottom: 1px solid rgba(255,255,255,0.055);
text-align: center;
}

.countdown-label {
color: #626262;
font-size: 9px;
font-weight: 800;
letter-spacing: 0.22em;
text-transform: uppercase;
}

.countdown {
display: flex;
justify-content: center;
align-items: center;
gap: 13px;
margin-top: 14px;
}

.countdown-unit {
min-width: 70px;
}

.countdown-value {
color: #f0f0f0;
font-variant-numeric: tabular-nums;
font-size: 28px;
line-height: 1;
font-weight: 800;
letter-spacing: -0.04em;
}

.countdown-unit-label {
margin-top: 7px;
color: #4d4d4d;
font-size: 7px;
font-weight: 800;
letter-spacing: 0.15em;
text-transform: uppercase;
}

.countdown-separator {
align-self: flex-start;
margin-top: 1px;
color: #333333;
font-size: 20px;
font-weight: 800;
}

/* =========================================================
LEADERBOARD TABLE
========================================================= */
.leaderboard-table {
  position: relative;
  z-index: 1;
  padding: 12px 24px 24px;
}

.table-row {
  min-height: 66px;
  display: grid;
grid-template-columns: 70px 220px 180px 140px;
justify-content: space-between;
  align-items: center;
  justify-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row:not(.table-header):hover {
  background: rgba(255,255,255,0.025);
}

.table-header {
  min-height: 40px;
  color: #4f4f4f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-align: center;
}

.table-header > div {
  width: 100%;
  text-align: center;
}

.table-place {
  width: 100%;
  color: #666666;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.table-user {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.table-avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.table-username {
  min-width: 0;
  max-width: 100%;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.table-wagered {
  width: 100%;
  color: #858585;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.table-prize {
  width: 100%;
  color: #d0d0d0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.table-prize.no-prize {
  color: #4f4f4f;
  font-weight: 600;
}

.leaderboard-disclaimer {
margin: 0 40px 28px;
padding-top: 18px;
border-top: 1px solid rgba(255,255,255,0.045);
color: #454545;
font-size: 8px;
line-height: 1.6;
letter-spacing: 0.02em;
text-align: center;
}

/* =========================================================
OFFERS
========================================================= */

.offers-grid {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: 20px;
}

.offer-card {
position: relative;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 16px;
background: #0b0b0b;
transition:
transform 0.3s cubic-bezier(.16,1,.3,1),
border-color 0.3s ease,
box-shadow 0.3s ease;
}

.offer-card:hover {
transform: translateY(-5px);
border-color: rgba(255,255,255,0.15);
box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.offer-image {
position: relative;
aspect-ratio: 16 / 6;
overflow: hidden;
background: #111111;
}

.offer-image img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%);
transition:
transform 0.6s cubic-bezier(.16,1,.3,1),
filter 0.4s ease;
}

.offer-card:hover .offer-image img {
transform: scale(1.04);
filter: grayscale(70%);
}

.offer-image::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 45%, rgba(5,5,5,0.75));
}

.offer-tag {
position: absolute;
left: 18px;
top: 18px;
z-index: 2;
padding: 7px 10px;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 6px;
color: #d8d8d8;
background: rgba(0,0,0,0.55);
backdrop-filter: blur(10px);
font-size: 8px;
font-weight: 800;
letter-spacing: 0.15em;
text-transform: uppercase;
}

.offer-content {
padding: 28px;
}

.offer-title-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.offer-title {
color: #f2f2f2;
font-size: 24px;
font-weight: 850;
letter-spacing: -0.025em;
}

.offer-status {
display: inline-flex;
align-items: center;
gap: 6px;
color: #707070;
font-size: 8px;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
}

.offer-status-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: #bdbdbd;
box-shadow: 0 0 7px rgba(255,255,255,0.35);
}

.offer-description {
margin-top: 10px;
color: #6e6e6e;
font-size: 13px;
line-height: 1.65;
}

.offer-benefits {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px 25px;
margin-top: 23px;
}

.offer-benefit {
display: flex;
align-items: center;
gap: 9px;
color: #999999;
font-size: 11px;
font-weight: 600;
}

.benefit-check {
flex-shrink: 0;
width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 50%;
color: #cfcfcf;
font-size: 8px;
}

.offer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
margin-top: 27px;
padding-top: 21px;
border-top: 1px solid rgba(255,255,255,0.055);
}

.offer-disclaimer {
max-width: 620px;
color: #444444;
font-size: 8px;
line-height: 1.55;
}

.offer-button {
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 145px;
height: 42px;
padding: 0 18px;
border-radius: 6px;
color: #090909;
background: #eeeeee;
font-size: 8px;
font-weight: 900;
letter-spacing: 0.12em;
text-transform: uppercase;
transition: background 0.2s ease, transform 0.2s ease;
}

.offer-button:hover {
background: #ffffff;
transform: translateY(-1px);
}

/* =========================================================
SMALL BRAND STATEMENT
========================================================= */

.statement {
padding: 70px 0 110px;
text-align: center;
}

.statement-line {
width: 50px;
height: 1px;
margin: 0 auto 25px;
background: #444444;
}

.statement-text {
max-width: 720px;
margin: 0 auto;
color: #4e4e4e;
font-size: clamp(18px, 3vw, 28px);
line-height: 1.4;
letter-spacing: -0.025em;
font-weight: 600;
}

.statement-text strong {
color: #888888;
font-weight: 700;
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
border-top: 1px solid rgba(255,255,255,0.06);
background: #040404;
}

.footer-inner {
min-height: 150px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.footer-brand {
color: #777777;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.footer-links {
display: flex;
align-items: center;
gap: 28px;
}

.footer-links a {
color: #4f4f4f;
font-size: 9px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color 0.2s ease;
}

.footer-links a:hover {
color: #bdbdbd;
}

.footer-socials {
display: flex;
align-items: center;
gap: 18px;
}

.footer-social {
color: #4f4f4f;
font-size: 9px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color 0.2s ease;
}

.footer-social:hover {
color: #ffffff;
}

.footer-copy {
color: #373737;
font-size: 8px;
letter-spacing: 0.04em;
}

/* =========================================================
SCROLL REVEAL
========================================================= */

.reveal {
opacity: 0;
transform: translateY(25px);
transition:
opacity 0.8s ease,
transform 0.8s cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* =========================================================
AGE / JURISDICTION VERIFICATION
========================================================= */

html.verification-active,
html.verification-active body {
overflow: hidden;
}

.verification-overlay {
position: fixed;
inset: 0;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background:
radial-gradient(circle at 50% 35%, rgba(255,255,255,0.045), transparent 35%),
rgba(5,5,5,0.97);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}

.verification-card {
width: min(100%, 520px);
padding: 42px;
border: 1px solid rgba(255,255,255,0.09);
border-radius: 16px;
background: linear-gradient(
180deg,
rgba(255,255,255,0.055),
rgba(255,255,255,0.018)
);
box-shadow:
0 30px 100px rgba(0,0,0,0.55),
0 0 0 1px rgba(255,255,255,0.015);
text-align: center;
}

.verification-mark {
width: 54px;
height: 54px;
margin: 0 auto 24px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255,255,255,0.14);
border-radius: 50%;
color: #ffffff;
background: rgba(255,255,255,0.045);
font-size: 20px;
font-weight: 900;
}

.verification-eyebrow {
margin-bottom: 10px;
color: #777777;
font-size: 9px;
font-weight: 900;
letter-spacing: 0.18em;
text-transform: uppercase;
}

.verification-title {
margin: 0;
color: #ffffff;
font-size: clamp(28px, 5vw, 38px);
line-height: 1;
font-weight: 900;
letter-spacing: -0.04em;
}

.verification-description {
max-width: 430px;
margin: 18px auto 0;
color: #999999;
font-size: 13px;
line-height: 1.7;
}

.verification-checks {
margin-top: 28px;
display: flex;
flex-direction: column;
gap: 10px;
text-align: left;
}

.verification-check {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 14px 15px;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 10px;
background: rgba(255,255,255,0.025);
}

.verification-check-icon {
flex: 0 0 auto;
width: 19px;
height: 19px;
margin-top: 1px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255,255,255,0.18);
border-radius: 5px;
color: #ffffff;
font-size: 11px;
font-weight: 900;
}

.verification-check-text {
color: #c9c9c9;
font-size: 12px;
line-height: 1.5;
}

.verification-actions {
margin-top: 24px;
display: flex;
flex-direction: column;
gap: 10px;
}

.verification-button {
width: 100%;
min-height: 48px;
border: 0;
border-radius: 9px;
cursor: pointer;
font-family: inherit;
font-size: 11px;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
transition:
transform 0.2s ease,
opacity 0.2s ease,
background 0.2s ease;
}

.verification-button-primary {
color: #080808;
background: #ffffff;
}

.verification-button-primary:hover {
transform: translateY(-1px);
opacity: 0.92;
}

.verification-button-secondary {
color: #777777;
background: transparent;
}

.verification-button-secondary:hover {
color: #aaaaaa;
}

.verification-blocked {
display: none;
margin-top: 22px;
padding: 14px 16px;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 9px;
color: #999999;
background: rgba(255,255,255,0.025);
font-size: 11px;
line-height: 1.6;
}

.verification-card.is-blocked .verification-checks,
.verification-card.is-blocked .verification-actions {
display: none;
}

.verification-card.is-blocked .verification-blocked {
display: block;
}

/* =========================================================
FOOTER CONTACT
========================================================= */

.footer-inner {
position: relative;
}

.footer-brand-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-brand {
color: #ffffff;
}

.footer-brand-copy {
margin-top: 7px;
color: #555555;
font-size: 10px;
line-height: 1.4;
}

.footer-navigation {
margin-left: auto;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-end;
gap: 64px;
}

/*
ONLY MENU AND SOCIALS ARE CENTERED.
CONTACT REMAINS RIGHT-ALIGNED.
*/

.footer-menu {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-menu .footer-contact-label {
width: 100%;
text-align: center;
}

.footer-menu .footer-contact-links {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 5px;
}

.footer-contact {
display: flex;
flex-direction: column;
align-items: flex-end;
text-align: right;
}

.footer-contact-label {
margin-bottom: 9px;
color: #555555;
font-size: 8px;
font-weight: 900;
letter-spacing: 0.16em;
text-transform: uppercase;
}

.footer-contact-links {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 5px;
}

.footer-contact-link {
color: #999999;
font-size: 11px;
text-decoration: none;
transition: color 0.2s ease;
}

.footer-contact-link:hover {
color: #ffffff;
}

/* =========================================================
VERIFICATION / CONTACT RESPONSIVE
========================================================= */

@media (max-width: 700px) {
.verification-card {
padding: 32px 24px;
}

.footer-navigation {
margin-left: 0;
width: 100%;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 32px 24px;
}

.footer-menu {
align-items: center;
text-align: center;
}

.footer-menu .footer-contact-label {
text-align: center;
}

.footer-menu .footer-contact-links {
align-items: center;
text-align: center;
}

.footer-contact {
align-items: flex-start;
text-align: left;
}

.footer-contact-links {
align-items: flex-start;
}
}

@media (max-width: 480px) {
.verification-overlay {
padding: 16px;
}

.verification-card {
padding: 28px 20px;
border-radius: 13px;
}

.verification-title {
font-size: 29px;
}

.verification-description {
font-size: 12px;
}

.footer-navigation {
grid-template-columns: 1fr;
gap: 24px;
}
}

/* =========================================================
RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {
.header-inner {
width: min(1320px, calc(100% - 40px));
}

.main-nav {
gap: 20px;
}

.header-right {
display: none;
}

.hero {
min-height: 650px;
padding-top: 45px;
}

.podium {
padding-left: 20px;
padding-right: 20px;
gap: 8px;
}

.podium-player {
width: 180px;
}

.podium-player.first {
width: 220px;
}

.podium-player.second {
width: 200px;
}

.podium-player.third {
width: 170px;
}

.table-row {
grid-template-columns: 55px minmax(0, 1fr) 130px 100px;
}
}

/* =========================================================
RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {
.container {
width: min(100% - 28px, 1180px);
}

.site-header {
height: 68px;
}

.header-inner {
width: calc(100% - 28px);
}

.brand {
font-size: 12px;
letter-spacing: 0.1em;
}

.brand-gambler {
margin-left: 4px;
}

.main-nav {
gap: 14px;
}

.main-nav a {
font-size: 9px;
letter-spacing: 0.08em;
}

.hero {
min-height: 610px;
padding-top: 35px;
}

.hero-title {
font-size: clamp(48px, 15vw, 85px);
letter-spacing: -0.07em;
}

.hero-description {
padding: 0 10px;
font-size: 13px;
}

.hero-actions {
flex-direction: column;
}

.button {
width: min(260px, 100%);
}

.section {
padding: 75px 0;
}

.section-header {
align-items: flex-start;
flex-direction: column;
gap: 18px;
}

.leaderboard-top {
padding: 25px 22px;
flex-direction: column;
align-items: flex-start;
gap: 12px;
}

.leaderboard-total {
text-align: left;
}

.podium {
min-height: 350px;
padding: 45px 10px 0;
align-items: flex-end;
gap: 5px;
}

.podium-player {
width: 31%;
}

.podium-player.second {
width: 34%;
}

.podium-player.first {
width: 38%;
}

.podium-player.third {
width: 28%;
}

.podium-avatar {
width: 58px;
height: 58px;
}

.podium-player.first .podium-avatar {
width: 76px;
height: 76px;
}

.podium-username {
font-size: 11px;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.podium-stat-label {
font-size: 6px;
}

.podium-wagered {
font-size: 10px;
}

.podium-base {
height: 72px;
padding-top: 14px;
}

.podium-player.second .podium-base {
height: 94px;
}

.podium-player.first .podium-base {
height: 110px;
}

.podium-base-prize {
font-size: 20px;
}

.podium-player.first .podium-base-prize {
font-size: 25px;
}

.podium-player.third .podium-base-prize {
font-size: 17px;
}

.countdown-section {
padding: 30px 15px;
}

.countdown {
gap: 5px;
}

.countdown-unit {
min-width: 58px;
}

.countdown-value {
font-size: 22px;
}

.countdown-separator {
font-size: 15px;
}

.leaderboard-table {
padding: 8px 8px 15px;
}

.table-row {
  grid-template-columns: 35px minmax(0, 1fr) 100px 75px;
  padding: 0 8px;
  justify-items: center;
}

.table-header {
font-size: 7px;
}

.table-avatar {
width: 30px;
height: 30px;
}

.table-username {
font-size: 10px;
}

.table-wagered,
.table-prize {
font-size: 10px;
}

.leaderboard-disclaimer {
margin: 0 22px 22px;
font-size: 7px;
}

.offers-grid {
grid-template-columns: 1fr;
}

.offer-image {
aspect-ratio: 16 / 8;
}

.offer-benefits {
grid-template-columns: 1fr;
}

.footer-inner {
padding: 35px 0;
flex-direction: column;
align-items: flex-start;
}

.footer-links {
flex-wrap: wrap;
gap: 15px 22px;
}

.footer-socials {
flex-wrap: wrap;
gap: 15px 20px;
}
}

/* =========================================================
RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
.main-nav {
gap: 10px;
}

.main-nav a {
font-size: 8px;
}

.brand-mark {
display: none;
}

.hero-title {
letter-spacing: -0.075em;
}

.podium {
padding-left: 4px;
padding-right: 4px;
}

.podium-avatar {
width: 50px;
height: 50px;
}

.podium-player.first .podium-avatar {
width: 68px;
height: 68px;
}

.podium-number {
width: 21px;
height: 21px;
font-size: 7px;
}

.podium-player.first .podium-number {
width: 24px;
height: 24px;
}

.podium-stat-label {
font-size: 6px;
}

.podium-wagered {
font-size: 8px;
}

.podium-base {
height: 62px;
padding-top: 12px;
}

.podium-player.second .podium-base {
height: 80px;
}

.podium-player.first .podium-base {
height: 96px;
}

.podium-base-prize {
font-size: 16px;
}

.podium-player.first .podium-base-prize {
font-size: 20px;
}

.podium-player.third .podium-base-prize {
font-size: 14px;
}

.table-row {
  grid-template-columns: 30px minmax(0, 1fr) 85px 65px;
  justify-items: center;
}

.table-wagered,
.table-prize {
font-size: 9px;
}

.table-header {
font-size: 6px;
letter-spacing: 0.1em;
}

.offer-content {
padding: 22px;
}

.offer-title {
font-size: 21px;
}

.offer-bottom {
align-items: flex-start;
flex-direction: column;
}

.offer-disclaimer {
max-width: 100%;
}

.offer-button {
width: 100%;
}
}

/* =========================================================
   FINAL MOBILE HEADER + FOOTER OVERRIDES
   ========================================================= */

@media (max-width: 700px) {

  /* =========================
     HEADER
     ========================= */

  .site-header {
    height: auto;
    min-height: 105px;
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: 105px;
    height: auto;
    padding: 14px 0 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  /* VIP Gambler gets its own centered row */
  .brand {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    display: inline-block;
  }

  /* Navigation gets its own centered row underneath */
  .main-nav {
    position: static;
    transform: none;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
    white-space: nowrap;
  }

  .main-nav a {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  /* Hide the desktop right-side pill */
  .header-right {
    display: none;
  }


  /* =========================
     HERO TEXT SCALING
     ========================= */

  .hero-description {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;

    font-size: 11px;
    line-height: 1.6;
  }

}


@media (max-width: 480px) {

  /* =========================
     SMALL MOBILE HEADER
     ========================= */

  .site-header {
    min-height: 100px;
  }

  .header-inner {
    min-height: 100px;
    padding: 13px 0 11px;
    gap: 6px;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .brand-mark {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  /* Keep the hero description compact on narrow phones */
  .hero-description {
    max-width: 310px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.55;
  }


  /* =========================
     FOOTER
     ========================= */

  .footer-inner {
    width: 100%;
    padding: 35px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    gap: 28px;
  }

  /* VIP Gambler + copyright gets its own centered row */
  .footer-brand-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand-copy {
    text-align: center;
  }

  /* Menu / socials / contact remain centered */
  .footer-navigation {
    width: 100%;
    margin-left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 24px;
    text-align: center;
  }

  .footer-menu,
  .footer-contact {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-menu .footer-contact-label,
  .footer-contact-label {
    width: 100%;
    text-align: center;
  }

  .footer-menu .footer-contact-links,
  .footer-contact-links {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}