:root {
    --ink: #171337;
    --ink-2: #272052;
    --muted: #746d92;
    --paper: #f8f7ff;
    --surface: #fff;
    --line: #e7e3f6;
    --violet: #6847f5;
    --violet-2: #9179ff;
    --pink: #f04498;
    --coral: #ff775f;
    --aqua: #19c6c1;
    --yellow: #ffd452;
    --green: #19a974;
    --danger: #e84d63;
    --shadow: 0 22px 70px rgba(47, 31, 116, 0.12);
    --radius: 22px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font:
        14px/1.5 "DM Sans",
        sans-serif;
}
button,
input,
select {
    font: inherit;
}
button {
    border: 0;
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}
.app {
    min-height: 100vh;
}
.nav-shell {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 249, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(104, 71, 245, 0.08);
}
.nav {
    height: 76px;
    max-width: 1280px;
    margin: auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 7px 2px;
  background: transparent;
  color: #281a61;
}
.brand-word {
  display: inline-flex;
  align-items: baseline;
  font: 900 25px/0.9 "Manrope";
  letter-spacing: -1.4px;
  text-transform: uppercase;
}
.brand-word strong {
  font: inherit;
  color: transparent;
  background: linear-gradient(120deg, var(--violet), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}
.brand-word i {
  margin-left: 1px;
  color: var(--aqua);
  font: 900 25px/0.9 "Manrope";
  font-style: normal;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 1;
}
.nav-link {
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
    color: #665e86;
    font-weight: 700;
}
.nav-link:hover,
.nav-link.active {
    color: var(--violet);
    background: #eeeafe;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    transition: 0.2s;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--violet), #7f5eff);
    box-shadow: 0 10px 24px rgba(104, 71, 245, 0.24);
}
.btn-yellow {
    color: #332259;
    background: linear-gradient(135deg, #ffe46c, var(--yellow));
    box-shadow: 0 10px 24px rgba(255, 194, 44, 0.22);
}
.btn-ghost {
    background: #fff;
    color: #4d4372;
    border: 1px solid var(--line);
}
.btn-soft {
    background: #eeeaff;
    color: var(--violet);
}
.account-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 12px 7px 7px;
    border-radius: 13px;
}
.avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 800;
}
.wallet-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 118px;
    gap: 2px;
    background: transparent;
    color: #087c68;
    padding: 7px 10px;
    font-weight: 800;
}
.wallet-pill span {
    color: #387b6c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    white-space: nowrap;
}
.wallet-pill strong {
    color: #087c68;
    font-size: 16px;
    line-height: 1.1;
}
.balance-widget {
    display: flex;
    align-items: center;
    padding: 3px 4px 3px 3px;
    border: 1px solid #ccefe5;
    border-radius: 15px;
    background: linear-gradient(135deg, #e9fff9, #f5fffc);
    box-shadow: 0 7px 18px rgba(25, 169, 116, 0.09);
}
.balance-refresh {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    color: #0a8b72;
}
.balance-refresh svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.balance-refresh.spinning svg {
    animation: balance-spin 0.7s linear infinite;
}
@keyframes balance-spin {
    to {
        transform: rotate(360deg);
    }
}
.main {
    min-height: calc(100vh - 76px);
}
.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 28px;
}
.hero {
    padding: 48px 0 30px;
}
.hero-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #27136e, #3b1b8b 48%, #183a92);
    box-shadow: 0 30px 90px rgba(38, 20, 111, 0.22);
    position: relative;
}
.hero-copy {
    padding: 66px 46px;
    position: relative;
    z-index: 2;
    color: #fff;
}
.kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d9d0ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}
.kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 15px var(--aqua);
}
.hero h1 {
    font: 800 clamp(48px, 5vw, 72px) / 0.98 "Manrope";
    letter-spacing: -3.6px;
    margin: 20px 0;
}
.hero h1 em {
    font-style: normal;
    color: #ff8fc6;
}
.hero-sub {
    max-width: 510px;
    color: #d8d1f4;
    font-size: 17px;
    line-height: 1.65;
}
.hero-offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}
.hero-offer-pills span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #e4defa;
    font-size: 11px;
    backdrop-filter: blur(10px);
}
.hero-offer-pills b {
    color: #fff;
    font-size: 13px;
}
.hero-terms {
    margin-top: 14px;
    color: rgba(232, 226, 255, 0.66);
    font-size: 9px;
    line-height: 1.5;
}
.hero-offer-visual {
    position: relative;
    display: grid;
    align-items: center;
    padding: 38px 40px 38px 20px;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 213, 74, 0.36), transparent 25%),
        radial-gradient(circle at 22% 88%, rgba(36, 223, 196, 0.22), transparent 30%);
}
.hero-offer-visual:before,
.hero-offer-visual:after {
    content: "✦";
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 42px;
}
.hero-offer-visual:before {
    top: 28px;
    right: 32px;
}
.hero-offer-visual:after {
    bottom: 26px;
    left: 0;
    font-size: 25px;
}
.offer-board {
    position: relative;
    z-index: 1;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 255, 0.95));
    box-shadow: 0 30px 70px rgba(12, 5, 50, 0.32), inset 0 1px 0 #fff;
    color: var(--ink);
    transform: rotate(1deg);
}
.offer-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e1f5;
}
.offer-board-head span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}
.offer-board-head strong {
    padding: 8px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pink), #7a4cf5);
    color: #fff;
    font: 800 13px "Manrope";
    box-shadow: 0 8px 18px rgba(216, 55, 143, 0.22);
}
.offer-equation {
    display: grid;
    grid-template-columns: 0.8fr auto 1.25fr;
    align-items: center;
    gap: 15px;
    padding: 27px 0 22px;
}
.offer-equation small,
.wager-card span {
    display: block;
    color: #807795;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.25px;
}
.offer-equation strong {
    display: block;
    margin-top: 6px;
    font: 800 clamp(27px, 3vw, 39px) "Manrope";
    letter-spacing: -2px;
}
.equation-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ebe5ff;
    color: var(--violet);
    font-size: 20px;
    font-weight: 800;
}
.offer-result strong {
    color: var(--violet);
}
.offer-result em {
    display: inline-block;
    margin-top: 7px;
    padding: 4px 8px;
    border-radius: 7px;
    background: #e7fff8;
    color: #08745f;
    font: 800 9px "Manrope";
}
.playable-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 13px 15px;
    border-radius: 12px;
    background: #21105d;
    color: #fff;
    font-size: 11px;
}
.playable-total strong {
    color: var(--yellow);
    font: 800 15px "Manrope";
    text-align: right;
}
.wager-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 13px;
    padding: 15px;
    border: 2px solid #f1b8d9;
    border-radius: 15px;
    background: #fff6fb;
}
.wager-badge {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #f04498, #9c55ef);
    color: #fff;
    font: 800 24px "Manrope";
    box-shadow: 0 10px 22px rgba(240, 68, 152, 0.25);
}
.wager-card strong {
    display: block;
    margin-top: 3px;
    font: 800 18px "Manrope";
}
.wager-card small {
    display: block;
    margin-top: 3px;
    color: #766d88;
    font-size: 9px;
}
.offer-board-foot {
    display: flex;
    gap: 18px;
    margin-top: 16px;
    color: #4c4460;
    font-size: 10px;
    font-weight: 700;
}
.hero-visual {
    position: relative;
    background: url("/assets/vanta-hero-color.png") center/cover;
}
.hero-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #32177c 0%, transparent 30%);
}
.offer-mega {
    margin-top: 30px;
    max-width: 525px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        rgba(240, 68, 152, 0.9),
        rgba(105, 70, 245, 0.82)
    );
    box-shadow: 0 20px 45px rgba(13, 6, 54, 0.23);
}
.offer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offer-label {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 11px;
}
.offer-amount {
    font: 800 62px/0.8 "Manrope";
    color: var(--yellow);
    letter-spacing: -4px;
}
.offer-title {
    font: 800 27px "Manrope";
    margin-top: 10px;
}
.offer-facts {
    display: flex;
    gap: 0;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.offer-fact {
    padding-right: 22px;
    margin-right: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.offer-fact:last-child {
    border: 0;
}
.offer-fact strong {
    display: block;
    font-size: 19px;
    color: #fff;
}
.offer-fact span {
    font-size: 11px;
    color: #e9e3ff;
}
.hero-actions {
    display: flex;
    gap: 11px;
    margin-top: 24px;
}
.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.proof {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.proof-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #eeeaff;
    color: var(--violet);
    font-size: 17px;
}
.proof strong,
.proof span {
    display: block;
}
.proof span {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}
.section {
    padding: 48px 0;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 22px;
}
.section-head h2,
.page-head h1 {
    font: 800 34px "Manrope";
    letter-spacing: -1px;
    margin: 0;
}
.section-head p,
.page-head p {
    margin: 6px 0 0;
    color: var(--muted);
}
.text-link {
    background: none;
    color: var(--violet);
    font-weight: 800;
}
.category-row {
    display: flex;
    gap: 9px;
    overflow: auto;
    margin-bottom: 20px;
}
.category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 10px 15px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid var(--line);
    color: #6b638c;
    font-weight: 700;
}
.category small {
    min-width: 21px;
    padding: 2px 6px;
    border-radius: 20px;
    color: #857ba6;
    background: #f0edfa;
    font-size: 9px;
    text-align: center;
}
.category.active small,
.category:hover small {
    color: var(--violet);
    background: #fff;
}
.casino-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.casino-feature-strip > div {
    min-height: 76px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    column-gap: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff, #f7f4ff);
}
.casino-feature-strip > div > span {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--violet);
    background: #ece8ff;
    font-size: 17px;
}
.casino-feature-strip strong {
    font-size: 12px;
}
.casino-feature-strip small {
    color: var(--muted);
    font-size: 9px;
}
.catalog-toolbar {
    margin-bottom: 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 230px;
    gap: 10px;
}
.game-search {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #faf9ff;
}
.game-search span {
    color: var(--violet);
    font-size: 22px;
}
.game-search input,
.catalog-toolbar select {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}
.game-search button {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #7b719e;
    background: #ece8f8;
    font-size: 17px;
}
.catalog-toolbar select {
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #faf9ff;
    font-weight: 700;
}
.casino-categories {
    margin-bottom: 12px;
}
.catalog-meta {
    margin: 0 0 14px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 11px;
}
.catalog-meta strong {
    color: var(--ink);
}
.catalog-grid {
    grid-template-columns: repeat(5, 1fr);
}
.catalog-grid .game-card {
    min-height: 215px;
}
.game-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.game-favorite {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.15);
    font-size: 17px;
}
.game-favorite.saved {
    color: #ff86b9;
    background: #fff;
}
.game-play-cue {
    position: absolute;
    right: 14px;
    bottom: 17px;
    padding: 6px 8px;
    border-radius: 8px;
    opacity: 0;
    color: #2e205d;
    background: var(--yellow);
    font-size: 8px;
    font-weight: 900;
    transition: .2s;
}
.game-card:hover .game-play-cue {
    opacity: 1;
}
.load-more {
    min-width: 250px;
    margin: 24px auto 0;
    display: flex;
}
.load-more span {
    color: #8d80c8;
    font-size: 9px;
}
.catalog-empty {
    padding: 55px 20px;
    text-align: center;
}
.catalog-empty > span {
    color: var(--violet);
    font-size: 35px;
}
.catalog-empty h2 {
    margin: 8px 0 3px;
}
.catalog-empty p {
    margin: 0 0 16px;
    color: var(--muted);
}
.category.active,
.category:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.game-card {
    position: relative;
    min-height: 235px;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(40, 26, 104, 0.12);
    transition: 0.24s;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(40, 26, 104, 0.2);
}
.game-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 7, 47, 0.03) 15%, rgba(19, 9, 58, 0.2) 50%, rgba(19, 9, 58, 0.94));
}
.game-card > * {
    position: relative;
    z-index: 2;
}
.game-art {
    position: absolute !important;
    inset: 0;
    z-index: 0 !important;
    background-repeat: no-repeat;
    background-color: #2b1768;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .4s ease, filter .3s ease;
}
.game-card:hover .game-art {
    transform: scale(1.045);
    filter: saturate(1.12) contrast(1.04);
}
.game-card.g1 {
    background:
        radial-gradient(circle at 80% 25%, #5ff0d3, transparent 20%),
        linear-gradient(135deg, #087c8d, #253080);
}
.game-card.g2 {
    background:
        radial-gradient(circle at 78% 20%, #ffadcb, transparent 22%),
        linear-gradient(135deg, #b92978, #532a9e);
}
.game-card.g3 {
    background:
        radial-gradient(circle at 80% 20%, #ffdc73, transparent 20%),
        linear-gradient(135deg, #ef6a45, #7c2d9b);
}
.game-card.g4 {
    background:
        radial-gradient(circle at 80% 20%, #8ec5ff, transparent 22%),
        linear-gradient(135deg, #4055d7, #282570);
}
.game-card.g5 {
    background:
        radial-gradient(circle at 80% 20%, #f688ff, transparent 22%),
        linear-gradient(135deg, #713ed2, #301a72);
}
.game-card.g6 {
    background:
        radial-gradient(circle at 80% 20%, #94ffbc, transparent 22%),
        linear-gradient(135deg, #0a8b75, #3153b8);
}
.game-card.g7 {
    background:
        radial-gradient(circle at 80% 20%, #ffb474, transparent 22%),
        linear-gradient(135deg, #bf3d52, #6b286d);
}
.game-card.g8 {
    background:
        radial-gradient(circle at 80% 20%, #9bceff, transparent 22%),
        linear-gradient(135deg, #2e64bd, #392b8d);
}
.game-emoji {
    position: absolute;
    right: 18px;
    top: 42px;
    font-size: 68px;
    filter: drop-shadow(0 12px 14px rgba(20, 7, 65, 0.3));
}
.game-tag {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.17);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}
.game-info {
    position: absolute;
    bottom: 18px;
    left: 20px;
}
.game-info h3 {
    margin: 0;
    font-size: 17px;
}
.game-info p {
    margin: 4px 0 0;
    color: #dfd9f7;
    font-size: 11px;
}
.promo-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 15px;
}
.promo {
    min-height: 205px;
    padding: 24px;
    border-radius: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.promo.p1 {
    background: linear-gradient(120deg, #ed4c9c, #7446ec);
}
.promo.p2 {
    background: linear-gradient(120deg, #17a69f, #3b62d8);
}
.promo.p3 {
    background: linear-gradient(120deg, #ff7a56, #b43e91);
}
.promo h3 {
    font: 800 25px "Manrope";
    margin: 12px 0 7px;
}
.promo p {
    max-width: 280px;
    color: #f4eeff;
}
.promo-mark {
    position: absolute;
    right: 18px;
    bottom: -40px;
    font-size: 140px;
    opacity: 0.16;
}
.page {
    padding: 42px 0 72px;
}
.page-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 28px;
}
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 35px rgba(48, 32, 112, 0.05);
}
.dashboard {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
}
.balance-card {
    padding: 30px;
    color: #fff;
    background: linear-gradient(130deg, #6847f5, #e549a0);
    position: relative;
    overflow: hidden;
}
.balance-card:after {
    content: "✦";
    position: absolute;
    right: 30px;
    top: 4px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.12);
}
.balance-label {
    color: #e9e2ff;
}
.balance-value {
    font: 800 46px "Manrope";
    margin: 11px 0 23px;
}
.balance-meta {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}
.balance-meta strong,
.balance-meta span {
    display: block;
}
.balance-meta span {
    font-size: 11px;
    color: #e6ddff;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.stat {
    padding: 18px;
}
.stat span {
    color: var(--muted);
    font-size: 11px;
}
.stat strong {
    display: block;
    font: 800 21px "Manrope";
    margin-top: 5px;
}
.side-card {
    padding: 24px;
}
.progress {
    height: 8px;
    background: #eeeafd;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0 8px;
}
.progress div {
    height: 100%;
    width: 68%;
    background: linear-gradient(90deg, var(--aqua), var(--violet));
    border-radius: 20px;
}
.transactions {
    margin-top: 18px;
    padding: 24px;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th {
    text-align: left;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px 12px;
}
.table td {
    padding: 15px 10px;
    border-top: 1px solid #f0edf9;
}
.status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 99px;
    background: #e7fff7;
    color: #078267;
    font-size: 10px;
    font-weight: 800;
}
.status.pending {
    background: #fff4d4;
    color: #956600;
}
.upi-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}
.qr-card,
.utr-card {
    padding: 28px;
}
.qr-card {
    text-align: center;
}
.qr-card h2,
.utr-card h2 {
    margin: 12px 0 8px;
    font: 800 25px "Manrope";
}
.step-badge {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 8px;
    background: #eeeaff;
    color: var(--violet);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
.upi-qr {
    width: 244px;
    min-height: 244px;
    display: grid;
    place-items: center;
    margin: 22px auto 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(48, 32, 112, 0.08);
}
.upi-qr canvas,
.upi-qr img {
    max-width: 100%;
    height: auto !important;
}
.upi-payee {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 18px;
    color: var(--muted);
}
.upi-payee strong {
    color: var(--ink);
}
.upi-launch {
    width: 100%;
}
.secure-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 11px;
}
.utr-card > p {
    color: var(--muted);
}
.payment-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 22px 0;
    padding: 17px;
    border-radius: 14px;
    background: #f7f5ff;
}
.payment-summary span {
    color: var(--muted);
}
.pending-note {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 12px;
    background: #fff8df;
    color: #80621d;
}
.pending-note span {
    font-size: 11px;
}
.auth-page {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.auth-visual {
    background:
        linear-gradient(
            135deg,
            rgba(50, 20, 130, 0.78),
            rgba(231, 64, 150, 0.52)
        ),
        url("/assets/vanta-hero-color.png") center/cover;
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}
.auth-visual h2 {
    font: 800 46px/1 "Manrope";
    max-width: 520px;
    margin: 0 0 14px;
}
.auth-visual p {
    color: #e8e1ff;
    max-width: 480px;
    font-size: 16px;
}
.auth-form-wrap {
    display: grid;
    place-items: center;
    padding: 40px;
}
.auth-card {
    width: min(470px, 100%);
}
.auth-card h1 {
    font: 800 34px "Manrope";
    margin: 0;
}
.auth-card > p {
    color: var(--muted);
    margin: 7px 0 26px;
}
.field {
    margin-bottom: 15px;
}
.field label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #6d648f;
    margin-bottom: 7px;
}
.input {
    width: 100%;
    height: 49px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    color: var(--ink);
    outline: none;
}
.input:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(104, 71, 245, 0.09);
}
.phone-input {
    display: flex;
    align-items: center;
    height: 49px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    transition: 0.2s;
}
.phone-input:focus-within {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(104, 71, 245, 0.09);
}
.phone-prefix {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-right: 1px solid var(--line);
    background: #f5f2ff;
    color: var(--violet);
    font-weight: 800;
}
.phone-input input {
    width: 100%;
    height: 100%;
    min-width: 0;
    border: 0;
    padding: 0 13px;
    background: transparent;
    color: var(--ink);
    outline: none;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.check {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 11px;
    margin: 4px 0 17px;
}
.check input {
    accent-color: var(--violet);
}
.form-error {
    display: none;
    background: #fff0f2;
    color: #bd2943;
    border: 1px solid #ffd6dd;
    border-radius: 11px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 12px;
}
.form-error.show {
    display: block;
}
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0;
}
.method {
    padding: 16px 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    color: #6a618a;
    font-weight: 800;
}
.method.active {
    border-color: var(--violet);
    background: #eeeaff;
    color: var(--violet);
}
.payment-methods {
    grid-template-columns: repeat(2, 1fr);
}
.method span,
.method small {
    display: block;
}
.method small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}
.method.unavailable {
    position: relative;
    border-style: dashed;
    background: #f7f6fb;
    color: #9a94ad;
    cursor: not-allowed;
    opacity: 0.72;
}
.method.unavailable small {
    color: #a16e3f;
}
.method-tip {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-top: 10px;
    padding: 11px 13px;
    border-radius: 11px;
    background: #f2efff;
    color: var(--muted);
    font-size: 11px;
}
.method-tip strong {
    color: var(--violet);
}
.money-form {
    max-width: 660px;
    padding: 28px;
}
.funds-page .page-head {
    margin-bottom: 22px;
}
.deposit-flow {
    max-width: 700px;
}
.deposit-amount-step {
    margin-bottom: 0;
    padding: 20px;
    border: 1px solid #ddd6fb;
    border-radius: 17px;
    background: linear-gradient(135deg, #fbfaff, #fff);
}
.deposit-amount-step > label,
.payment-step > label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #3c335d;
    font-size: 11px;
}
.flow-step {
    width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--violet);
    font-size: 11px;
}
.limit-label {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 8px;
    color: #875b09;
    background: #fff5ca;
    font-size: 9px;
    letter-spacing: 0;
}
.amount-choices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 15px 0 10px;
}
.amount-choice {
    min-height: 49px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    color: #675e87;
    font-weight: 800;
}
.amount-choice:hover,
.amount-choice.active {
    border-color: var(--violet);
    background: #eeeaff;
    color: var(--violet);
    box-shadow: 0 6px 16px rgba(104, 71, 245, 0.12);
}
.amount-input {
    height: 56px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}
.amount-input:focus-within {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(104, 71, 245, 0.09);
}
.amount-input > span {
    padding-left: 15px;
    color: var(--violet);
    font-size: 18px;
    font-weight: 800;
}
.amount-input input {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0 13px 0 7px;
    background: transparent;
    color: var(--ink);
    font-size: 19px;
    font-weight: 800;
    outline: none;
}
.field-help {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
}
.bonus-reveal {
    overflow: hidden;
    margin: 13px 0 22px;
    border: 1px solid #dfd5ff;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(125deg, #5b3bda, #8a55ed 60%, #dc4b9a);
    box-shadow: 0 12px 30px rgba(80, 43, 179, 0.17);
}
.bonus-reveal-main {
    min-height: 112px;
    padding: 17px 19px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
}
.bonus-party {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    font-size: 21px;
}
.bonus-eyebrow {
    color: #e7dfff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.15px;
}
.bonus-reveal h2 {
    margin: 4px 0 2px;
    font: 800 20px/1.15 "Manrope", sans-serif;
}
.bonus-reveal h2 strong {
    color: var(--yellow);
}
.bonus-reveal p {
    margin: 0;
    color: #eee8ff;
    font-size: 10px;
}
.bonus-reveal p b {
    color: #fff;
}
.bonus-reveal-main > em {
    color: var(--yellow);
    font: 900 42px/1 "Manrope", sans-serif;
    font-style: normal;
    letter-spacing: -3px;
}
.bonus-reveal-rules {
    min-height: 39px;
    padding: 9px 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,.13);
    color: #f5f1ff;
    background: rgba(30,12,90,.18);
    font-size: 10px;
    font-weight: 700;
}
.bonus-reveal-rules strong {
    color: var(--yellow);
}
.payment-step {
    margin-top: 0;
}
.payment-step .payment-methods {
    margin-top: 13px;
}
.deposit-submit {
    width: 100%;
    min-height: 50px;
}
.deposit-verification-note {
    margin: 12px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: 10px;
}
.pending-resume {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 13px 15px;
    border: 1px solid #f0dfae;
    border-radius: 13px;
    background: #fff9e7;
}
.pending-resume strong,
.pending-resume span {
    display: block;
}
.pending-resume span {
    margin-top: 2px;
    color: #8a7440;
    font-size: 10px;
}
.bonus-preview {
    background: linear-gradient(120deg, #fce8f5, #eee9ff);
    border: 1px solid #ead8f3;
    padding: 15px;
    border-radius: 13px;
    margin: 15px 0;
}
.bonus-preview strong {
    color: var(--pink);
}
.offer-calculator {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #32167d, #7b3de2 55%, #e34a9b);
    color: #fff;
    box-shadow: 0 18px 45px rgba(80, 43, 179, 0.24);
}
.offer-calculator::after {
    content: "✦";
    position: absolute;
    right: -18px;
    bottom: -58px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 180px;
}
.offer-celebration-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.offer-celebration-head span,
.payment-bonus-celebration > span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.offer-celebration-head h2 {
    margin: 8px 0 0;
    font: 800 25px/1.1 "Manrope";
}
.offer-celebration-head h2 strong {
    color: var(--yellow);
}
.offer-ten-x {
    color: var(--yellow);
    font: 900 58px/0.9 "Manrope";
    letter-spacing: -4px;
}
.offer-calculator > p {
    position: relative;
    z-index: 1;
    margin: 14px 0 18px;
    color: #e8e0ff;
}
.offer-value-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}
.offer-value-grid > div {
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.09);
}
.offer-value-grid > div.highlight {
    background: rgba(255, 212, 82, 0.17);
    border-color: rgba(255, 224, 110, 0.36);
}
.offer-value-grid span,
.offer-value-grid strong {
    display: block;
}
.offer-value-grid span {
    color: #ded6fb;
    font-size: 10px;
}
.offer-value-grid strong {
    margin-top: 3px;
    font: 800 18px "Manrope";
}
.offer-value-grid .highlight strong {
    color: var(--yellow);
}
.offer-clarity {
    position: relative;
    z-index: 1;
    margin-top: 13px;
    color: #f4efff;
    font-size: 11px;
    font-weight: 700;
}
.payment-bonus-celebration {
    max-width: 900px;
    margin: 0 auto 18px;
    padding: 25px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(120deg, #ef4c9e, #6d43ef 62%, #25bbb8);
    color: #fff;
    box-shadow: 0 18px 50px rgba(80, 43, 179, 0.23);
}
.celebration-sparkles {
    margin-bottom: 5px;
    color: var(--yellow);
    font-size: 24px;
}
.payment-bonus-celebration h2 {
    margin: 8px auto 18px;
    font: 800 28px/1.15 "Manrope";
}
.payment-bonus-celebration h2 strong {
    color: var(--yellow);
}
.payment-bonus-celebration > div:last-of-type {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 8px 14px;
    align-items: center;
    max-width: 660px;
    margin: 0 auto 11px;
    padding: 13px 16px;
    border-radius: 13px;
    background: rgba(24, 10, 79, 0.2);
    text-align: left;
}
.payment-bonus-celebration small {
    color: #f0eaff;
}
.celebration-modal {
    overflow: hidden;
    max-width: 580px;
    text-align: center;
    background: linear-gradient(145deg, #321578, #7540e6 62%, #d84799);
    color: #fff;
}
.celebration-modal::before {
    content: "✦  🎉  ✦";
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 32px;
}
.celebration-modal .modal-icon {
    display: none;
}
.celebration-modal h2 {
    color: var(--yellow);
    font-size: 34px;
}
.celebration-modal > p {
    color: #fff;
}
.celebration-copy > p {
    color: #eee8ff;
}
.celebration-copy > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}
.celebration-copy span {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #e7dfff;
    font-size: 10px;
}
.celebration-copy strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 17px;
}
.sports-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 18px;
}
.sports-hero {
    min-height: 210px;
    margin-bottom: 18px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    border-radius: 25px;
    color: #fff;
    background:
        radial-gradient(circle at 83% 15%, rgba(34,217,184,.42), transparent 25%),
        radial-gradient(circle at 70% 100%, rgba(240,68,152,.4), transparent 28%),
        linear-gradient(125deg, #241061, #5b34cb 58%, #703ede);
    box-shadow: 0 18px 50px rgba(48, 25, 125, .2);
}
.sports-hero .kicker {
    color: #70f0d5;
}
.sports-hero h1 {
    margin: 8px 0;
    font: 800 39px/1.05 "Manrope", sans-serif;
    letter-spacing: -1.5px;
}
.sports-hero p {
    max-width: 680px;
    margin: 0;
    color: #ded6fb;
}
.sports-pulse {
    flex: 0 0 170px;
    padding: 19px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
}
.sports-pulse > span,
.sports-pulse strong,
.sports-pulse small {
    display: block;
}
.sports-pulse > span {
    color: #9ff6df;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.sports-pulse > span i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: #4ff0aa;
    box-shadow: 0 0 0 5px rgba(79,240,170,.12);
}
.sports-pulse strong {
    margin: 7px 0 -2px;
    color: var(--yellow);
    font: 900 42px "Manrope", sans-serif;
}
.sports-pulse small {
    color: #ded6fb;
}
.sports-categories {
    padding-bottom: 2px;
}
.sports-section-head {
    margin: 25px 0 13px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.sports-section-head h2 {
    margin: 0;
    font: 800 24px "Manrope", sans-serif;
}
.sports-section-head p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 10px;
}
.market-refresh {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
}
.match-list {
    display: grid;
    gap: 12px;
}
.match {
    padding: 20px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.match:hover {
    transform: translateY(-2px);
    border-color: #cfc5fb;
    box-shadow: 0 16px 40px rgba(48,32,112,.1);
}
.match.is-live {
    border-left: 4px solid #21c88d;
}
.match-head,
.teams,
.odds,
.slip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.match-head {
    color: var(--muted);
    font-size: 11px;
}
.match-head > div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.match .game-tag {
    color: var(--violet);
    background: #eeeaff;
}
.sport-symbol {
    font-size: 16px;
}
.match-time.live {
    color: #0b9a6c;
    font-weight: 900;
}
.teams {
    margin: 18px 0;
}
.team {
    flex: 1;
}
.team:last-child {
    text-align: right;
}
.team strong,
.team span {
    display: block;
}
.team span {
    font-size: 10px;
    color: var(--muted);
}
.match-centre {
    min-width: 105px;
    text-align: center;
}
.match-centre span,
.match-centre b {
    display: block;
}
.match-centre span {
    color: #9b94b5;
    font-size: 9px;
    font-weight: 800;
}
.match-centre b {
    margin-top: 3px;
    color: var(--violet);
    font-size: 10px;
}
.odds button {
    flex: 1;
    border: 1px solid var(--line);
    background: #faf9ff;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
}
.odds button:hover {
    border-color: var(--violet);
    background: #f0edff;
}
.odds small,
.odds b {
    display: block;
}
.market-foot {
    margin-top: 11px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
}
.market-foot button {
    color: var(--violet);
    background: transparent;
    font-weight: 800;
}
.slip-count {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--violet);
    font-size: 10px;
    font-weight: 900;
}
.odds small {
    color: var(--muted);
}
.odds b {
    margin-top: 2px;
    color: var(--violet);
}
.bet-slip {
    padding: 22px;
    height: max-content;
    position: sticky;
    top: 95px;
}
.empty {
    text-align: center;
    padding: 30px 10px;
    color: var(--muted);
}
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(24, 15, 61, 0.65);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    padding: 20px;
}
.modal {
    width: min(450px, 100%);
    padding: 28px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(18, 8, 58, 0.35);
    position: relative;
}
.modal-close {
    position: absolute;
    right: 16px;
    top: 13px;
    background: #f2effb;
    color: #6a6188;
    width: 32px;
    height: 32px;
    border-radius: 10px;
}
.modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
}
.modal h2 {
    font: 800 27px "Manrope";
    margin: 17px 0 8px;
}
.modal p {
    color: var(--muted);
}
.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.modal-actions .btn {
    flex: 1;
}
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 150;
    background: var(--ink);
    color: #fff;
    padding: 13px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.25s;
    pointer-events: none;
}
.toast.show {
    opacity: 1;
    transform: none;
}
.footer {
    padding: 38px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.mobile-nav {
    display: none;
}
.skeleton {
    animation: pulse 1.3s infinite;
    background: #eeeafd;
    border-radius: 10px;
}
@keyframes pulse {
    50% {
        opacity: 0.48;
    }
}
.chat-launch {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    min-width: 154px;
    height: 62px;
    padding: 0 19px 0 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #6847f5 0%, #f04498 100%);
    box-shadow: 0 18px 45px rgba(80, 48, 190, 0.34);
    transition: transform 0.2s, box-shadow 0.2s;
}
.chat-launch:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(80, 48, 190, 0.42);
}
.chat-launch > svg,
.chat-agent > svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.chat-launch > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}
.chat-launch strong {
    font-size: 14px;
}
.chat-launch small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 700;
}
.chat-launch > i {
    position: absolute;
    top: 8px;
    right: 9px;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #30d596;
}
.chat-panel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    width: min(390px, calc(100vw - 28px));
    max-height: min(680px, calc(100vh - 44px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(104, 71, 245, 0.13);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(38, 20, 100, 0.25);
    animation: chat-arrive 0.24s ease-out;
}
@keyframes chat-arrive {
    from { opacity: 0; transform: translateY(14px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
    min-height: 82px;
    padding: 16px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background:
        radial-gradient(circle at 80% 0, rgba(255,255,255,.18), transparent 38%),
        linear-gradient(135deg, #5436da, #7b57f7 58%, #e84b9a);
}
.chat-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-agent > svg {
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.17);
}
.chat-agent > span {
    display: flex;
    flex-direction: column;
}
.chat-agent strong {
    font: 800 16px "Manrope", sans-serif;
}
.chat-agent small {
    margin-top: 3px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    font-weight: 700;
}
.chat-agent small i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 4px;
    border-radius: 50%;
    background: #54edac;
}
#chat-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.14);
    font-size: 24px;
    line-height: 1;
}
.chat-body {
    min-height: 155px;
    padding: 19px 16px 8px;
    overflow-y: auto;
    background: linear-gradient(180deg, #faf9ff, #fff);
}
.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 11px;
}
.chat-message p {
    max-width: 82%;
    margin: 0;
    padding: 11px 13px;
    border-radius: 8px 17px 17px 17px;
    color: #40375f;
    background: #f0edfb;
    font-size: 12px;
    line-height: 1.5;
}
.chat-message.user {
    justify-content: flex-end;
}
.chat-message.user p {
    border-radius: 17px 8px 17px 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), #8b68ff);
}
.chat-avatar {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    font: 800 11px "Manrope", sans-serif;
}
.chat-actions {
    max-height: 260px;
    padding: 9px 14px 13px;
    overflow-y: auto;
    background: #fff;
}
.chat-reply,
.chat-payment {
    width: 100%;
    min-height: 57px;
    margin-top: 7px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 15px;
    color: #352c59;
    background: #fff;
    transition: border-color .18s, transform .18s, background .18s;
}
.chat-reply:hover,
.chat-payment:hover {
    transform: translateY(-1px);
    border-color: #b8aaf7;
    background: #faf9ff;
}
.chat-reply.primary {
    border-color: #d9d1ff;
    background: linear-gradient(135deg, #f3f0ff, #fff3fa);
}
.chat-reply > span:first-child {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--violet);
    background: #ece8ff;
    font-size: 15px;
    font-weight: 900;
}
.chat-reply > span:nth-child(2),
.chat-payment > span {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.chat-reply strong,
.chat-payment strong {
    font-size: 12px;
}
.chat-reply small,
.chat-payment small {
    margin-top: 2px;
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chat-reply b {
    color: #9b8fc6;
    font-size: 21px;
}
.chat-payment em {
    flex: 0 0 auto;
    font-style: normal;
}
.chat-loading {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}
.chat-loading i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet);
    animation: chat-bounce .8s infinite alternate;
}
.chat-loading i:nth-child(2) { animation-delay: .15s; }
.chat-loading i:nth-child(3) { animation-delay: .3s; margin-right: 6px; }
@keyframes chat-bounce { to { transform: translateY(-5px); opacity: .45; } }
.chat-footer {
    padding: 10px 14px 12px;
    border-top: 1px solid #f1eef9;
    color: #8b84a3;
    background: #fff;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-offer-visual {
        padding: 0 42px 42px;
    }
    .offer-board {
        transform: none;
    }
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-grid,
    .dashboard,
    .sports-layout {
        grid-template-columns: 1fr;
    }
    .upi-layout {
        grid-template-columns: 1fr;
    }
    .auth-page {
        grid-template-columns: 1fr;
    }
    .auth-visual {
        display: none;
    }
    .bet-slip {
        position: static;
    }
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-links {
        display: none;
    }
    .proof-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .chat-launch {
        right: 14px;
        bottom: calc(91px + env(safe-area-inset-bottom));
        min-width: 54px;
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 18px;
    }
    .chat-launch > span {
        display: none;
    }
    .chat-launch > svg {
        width: 25px;
        height: 25px;
    }
    .chat-panel {
        right: 10px;
        bottom: calc(88px + env(safe-area-inset-bottom));
        width: calc(100vw - 20px);
        max-height: calc(100vh - 110px - env(safe-area-inset-bottom));
        border-radius: 23px;
    }
    .chat-header {
        min-height: 74px;
        padding: 13px 14px;
    }
    .chat-body {
        min-height: 125px;
    }
    .chat-actions {
        max-height: 235px;
    }
    .container {
        padding: 0 16px;
    }
    .nav {
        height: 66px;
        padding: 0 16px;
        gap: 12px;
    }
  .brand-word,
  .brand-word i {
    font-size: 22px;
  }
    .nav-actions {
        margin-left: auto;
    }
    .nav-actions .btn-ghost,
    .account-btn {
        display: none;
    }
    .balance-widget {
        padding: 2px 3px;
    }
    .wallet-pill {
        min-width: 106px;
        padding: 5px 7px;
    }
    .wallet-pill span {
        display: block;
        font-size: 6.5px;
        letter-spacing: 0.15px;
    }
    .wallet-pill strong {
        font-size: 13px;
    }
    .balance-refresh {
        width: 31px;
        height: 31px;
    }
    .hero {
        padding-top: 18px;
    }
    .hero-grid {
        min-height: auto;
        border-radius: 23px;
    }
    .hero-copy {
        padding: 35px 22px;
    }
    .hero h1 {
        font-size: 46px;
        letter-spacing: -2.5px;
    }
    .hero-sub {
        font-size: 14px;
    }
    .hero-offer-pills {
        margin-top: 20px;
    }
    .hero-offer-visual {
        padding: 0 14px 20px;
    }
    .offer-board {
        padding: 20px 17px;
        border-radius: 20px;
    }
    .offer-board-head {
        padding-bottom: 15px;
    }
    .offer-equation {
        gap: 8px;
        padding: 21px 0 17px;
    }
    .offer-equation strong {
        font-size: 27px;
        letter-spacing: -1.6px;
    }
    .equation-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .playable-total {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
    .playable-total strong {
        text-align: left;
    }
    .wager-card {
        padding: 12px;
        gap: 11px;
    }
    .wager-badge {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
    .wager-card strong {
        font-size: 15px;
    }
    .offer-board-foot {
        justify-content: space-between;
        gap: 8px;
    }
    .offer-mega {
        padding: 18px;
    }
    .offer-amount {
        font-size: 48px;
    }
    .offer-title {
        font-size: 22px;
    }
    .offer-fact {
        padding-right: 13px;
        margin-right: 13px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-visual {
        min-height: 260px;
    }
    .proof-strip {
        grid-template-columns: 1fr 1fr;
    }
    .proof {
        padding: 13px;
    }
    .game-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .catalog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .game-card {
        min-height: 190px;
        padding: 14px;
    }
    .game-favorite {
        width: 28px;
        height: 28px;
    }
    .game-play-cue {
        display: none;
    }
    .game-emoji {
        font-size: 50px;
    }
    .game-info {
        left: 14px;
        bottom: 14px;
    }
    .game-info h3 {
        max-width: 130px;
        font-size: 14px;
    }
    .casino-feature-strip {
        display: flex;
        overflow-x: auto;
    }
    .casino-feature-strip > div {
        flex: 0 0 235px;
    }
    .catalog-toolbar {
        grid-template-columns: 1fr;
    }
    .catalog-meta {
        display: block;
    }
    .catalog-meta span {
        display: block;
        margin-top: 2px;
    }
    .load-more {
        width: 100%;
    }
    .sports-hero {
        min-height: auto;
        padding: 27px 22px;
        display: block;
    }
    .sports-hero h1 {
        font-size: 33px;
    }
    .sports-pulse {
        margin-top: 20px;
        padding: 13px 15px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }
    .sports-pulse > span {
        grid-column: 1 / -1;
    }
    .sports-pulse strong {
        font-size: 31px;
    }
    .sports-section-head {
        align-items: start;
    }
    .market-refresh {
        display: none;
    }
    .match {
        padding: 16px;
    }
    .teams {
        gap: 5px;
    }
    .team strong {
        font-size: 12px;
    }
    .match-centre {
        min-width: 74px;
    }
    .odds {
        gap: 6px;
    }
    .odds button {
        padding: 9px 7px;
    }
    .odds small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 8px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .page-head {
        display: block;
    }
    .page-head .btn {
        margin-top: 16px;
    }
    .stat-grid {
        grid-template-columns: 1fr;
    }
    .balance-value {
        font-size: 36px;
    }
    .balance-meta {
        gap: 15px;
    }
    .method-grid {
        grid-template-columns: 1fr;
    }
    .amount-choices {
        grid-template-columns: repeat(2, 1fr);
    }
    .deposit-amount-step {
        padding: 17px 15px;
    }
    .bonus-reveal-main {
        min-height: 104px;
        padding: 15px;
        grid-template-columns: auto 1fr;
    }
    .bonus-party {
        width: 38px;
        height: 38px;
    }
    .bonus-reveal-main > em {
        display: none;
    }
    .bonus-reveal h2 {
        font-size: 17px;
    }
    .bonus-reveal-rules {
        flex-direction: column;
        gap: 3px;
        padding: 9px 15px;
    }
    .field-row {
        grid-template-columns: 1fr;
    }
    .auth-form-wrap {
        padding: 30px 18px;
    }
    .table th:nth-child(2),
    .table td:nth-child(2) {
        display: none;
    }
    .footer-row {
        display: block;
    }
    .footer-links {
        margin-top: 14px;
        flex-wrap: wrap;
    }
    .modal-actions {
        flex-direction: column;
    }
    .mobile-nav {
        position: fixed;
        display: flex;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        right: 10px;
        z-index: 60;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(15px);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 8px;
        box-shadow: 0 15px 40px rgba(38, 20, 100, 0.2);
    }
    .mobile-nav button {
        flex: 1;
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 15px;
        background: transparent;
        color: #7b7397;
        padding: 5px 3px;
        font-size: 10px;
        font-weight: 800;
    }
    .mobile-nav button.active {
        background: #eeeaff;
        color: var(--violet);
    }
    .mobile-nav svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .qr-card,
    .utr-card {
        padding: 22px 18px;
    }
    .upi-qr {
        width: 230px;
        min-height: 230px;
    }
    .offer-calculator {
        padding: 20px 17px;
    }
    .offer-ten-x {
        font-size: 48px;
    }
    .offer-value-grid {
        grid-template-columns: 1fr;
    }
    .payment-bonus-celebration {
        padding: 22px 16px;
    }
    .payment-bonus-celebration > div:last-of-type {
        grid-template-columns: 1fr auto;
    }
    .celebration-copy > div {
        grid-template-columns: 1fr;
    }
    .footer {
        padding-bottom: 118px;
    }
}
