:root {
    --site-bg: #06101b;
    --site-bg-alt: #091624;
    --site-surface: rgba(10, 18, 32, 0.82);
    --site-surface-strong: rgba(13, 23, 40, 0.96);
    --site-surface-soft: rgba(255, 255, 255, 0.04);
    --site-border: rgba(148, 163, 184, 0.14);
    --site-border-strong: rgba(56, 189, 248, 0.28);
    --site-text: #eef5ff;
    --site-muted: #9fb2cb;
    --site-brand: #38bdf8;
    --site-brand-2: #2563eb;
    --site-accent: #f59e0b;
    --site-success: #22c55e;
    --site-danger: #ef4444;
    --site-shadow: 0 30px 80px rgba(2, 8, 23, 0.45);
    --site-radius-xl: 28px;
    --site-radius-lg: 22px;
    --site-radius-md: 16px;
    --site-radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(180deg, #050b17 0%, #06101b 45%, #040814 100%);
    color: var(--site-text);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

body.site-body::before,
body.site-body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    filter: blur(22px);
}

body.site-body::before {
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.24) 0%, rgba(37, 99, 235, 0.14) 42%, transparent 74%);
}

body.site-body::after {
    bottom: -220px;
    left: -150px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 72%);
}

body.site-body--immersive {
    overflow: hidden;
}

body.sidebar-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.page-overlay {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.page-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.banner-top {
    position: sticky;
    top: 0;
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(6, 182, 212, 0.96));
    color: #fff;
    box-shadow: 0 10px 30px rgba(2, 8, 23, 0.25);
}

.banner-top p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
}

.page > .container,
.page > .container-fluid {
    position: relative;
    z-index: 1;
    width: min(100%, 1560px);
    max-width: none;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.page__navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    bottom: 20px;
    width: 300px;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 20px;
    overflow: hidden auto;
    z-index: 100;
    background: rgba(8, 15, 28, 0.82);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-xl);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(22px);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.page__navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), transparent 42%);
}

.page__navbar__logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.page__navbar__logo img {
    max-width: 155px;
    width: 100%;
    height: auto;
}

.page__navbar__logo .navbar-toggler-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
    color: var(--site-text);
}

.sidebar-highlight {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(6, 182, 212, 0.16));
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sidebar-highlight__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: #d7f5ff;
}

.sidebar-highlight strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.04rem;
    line-height: 1.35;
    color: var(--site-text);
}

.sidebar-highlight p {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.navbar_menu_list {
    margin-top: 18px;
    margin-right: 0;
}

.navbar_menu_title {
    margin: 22px 0 12px;
}

.navbar_menu_title h4 {
    margin: 0;
    padding-left: 12px;
    border-left: 2px solid rgba(56, 189, 248, 0.8);
    color: var(--site-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.navbar_menu_title p {
    margin: 10px 0 0;
    color: var(--site-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.navbar_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.navbar_list .navbar_list_links {
    margin: 0;
    padding: 0;
}

.navbar_list .navbar_list_links a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    color: var(--site-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.navbar_list .navbar_list_links a:hover {
    color: var(--site-text);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--site-border);
    transform: translateX(4px);
}

.navbar_list .navbar_list_links a img {
    width: 22px !important;
    height: 22px !important;
    margin-right: 0 !important;
    flex: none;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.15));
}

.page__content {
    position: relative;
    margin-left: 340px;
    max-width: calc(100% - 340px);
    width: calc(100% - 340px);
    padding: 20px 20px 36px 0;
}

.page__content__navbar {
    position: sticky;
    top: 20px;
    z-index: 50;
    margin: 0 0 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(8, 15, 28, 0.72);
    border: 1px solid var(--site-border);
    border-radius: 24px;
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(20px);
}

.page__content__navbar__esq {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

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

.topbar-copy span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-brand);
}

.topbar-copy strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--site-text);
}

.navbar-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
    color: var(--site-text);
}

.navbar-toggler-icon {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

.page__content__navbar__dir {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.page__content__navbar__dir__saldo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    min-width: 164px;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
}

.page__content__navbar__dir__saldo h6 {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.75rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page__content__navbar__dir__saldo div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page__content__navbar__dir__saldo div span {
    color: var(--site-text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.page__content__navbar__dir__saldo div i {
    color: var(--site-brand);
    margin: 0;
}

.page__content__navbar__dir__notificacao {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
    color: var(--site-text);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page__content__navbar__dir__notificacao::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--site-accent);
}

.page__content__navbar__dir__btn,
.sign-in,
.profile-avatar,
.btn-primary-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.15rem;
    border-radius: 16px;
    border: 1px solid transparent;
    color: #fff;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.page__content__navbar__dir__btn,
.btn-primary-theme {
    background: linear-gradient(135deg, var(--site-brand), var(--site-brand-2));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.page__content__navbar__dir__btn:hover,
.btn-primary-theme:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.page__content__navbar__dir__btn strong,
.page__content__navbar__dir__btn span {
    color: #fff;
}

.sign-in {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--site-border);
    color: var(--site-text);
    margin-right: 0;
}

.profile-avatar {
    width: 48px;
    min-width: 48px;
    padding: 0;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
    color: var(--site-text);
}

.dropdown-menu {
    background: #081120;
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
    border-radius: 18px;
    overflow: hidden;
}

.dropdown-item {
    color: var(--site-text);
}

.dropdown-item:hover {
    background: rgba(56, 189, 248, 0.12);
    color: #fff;
}

.section-title,
.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 20px 0 14px;
}

.section-title__left,
.header-box .header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.section-title__icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.18));
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--site-brand);
    flex: none;
}

.section-title__icon i {
    font-size: 1rem;
}

.section-title__copy h4,
.header-box .header-title h4 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
}

.section-title__link,
.header-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--site-brand);
    font-weight: 700;
}

.section-title__link i,
.header-box a i {
    font-size: 0.95rem;
}

section.modelo-destaque-jogos {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
}

section.modelo-destaque-jogos .splide__slide img,
.splide__slide img {
    width: 100%;
    margin-bottom: 0;
    border-radius: 24px;
    object-fit: cover;
}

#image-carousel .splide__slide img {
    aspect-ratio: 16 / 6;
    min-height: 220px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: center;
    padding: 26px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(8, 15, 28, 0.88), rgba(7, 22, 44, 0.75));
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 30px;
    box-shadow: var(--site-shadow);
}

.home-hero--compact {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.home-hero__content h1 {
    margin: 0.35rem 0 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
}

.home-hero__content p {
    max-width: 62ch;
    color: var(--site-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d7f5ff;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.section-pill--danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.25);
    color: #ffd9d9;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-hero__visual {
    position: relative;
}

.home-hero__visual img {
    width: 100%;
    border-radius: 26px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(2, 8, 23, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.hero-stat {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--site-border);
}

.hero-stat strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    line-height: 1;
}

.hero-stat span {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--site-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-card,
.page-card--soft,
.how-works,
.about-us-description,
.support-card,
.banned-card,
.notification,
.affiliate-block,
.wallet .card,
.wallet-transactions .card,
.page__content .card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: 24px;
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(18px);
}

.page-card,
.page-card--soft,
.support-card,
.banned-card {
    padding: 24px;
}

.how-works,
.about-us-description {
    padding: 24px;
}

.how-works h2,
.about-us-description h1,
.support-card h1,
.banned-card h1 {
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.how-works p,
.about-us-description p,
.support-card p,
.banned-card p {
    color: var(--site-muted);
    line-height: 1.8;
}

.about-us-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us-description .about-us-img {
    max-width: 100%;
    margin-bottom: 8px;
}

.about-us-description .about-us-img img {
    border-radius: 24px;
    box-shadow: var(--site-shadow);
}

.support-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.support-point {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--site-border);
}

.support-point strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-point span {
    color: var(--site-muted);
}

.banned-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.banned-card .home-hero__actions {
    justify-content: center;
}

.d-steam-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.d-steam-card-wrapper {
    max-width: none;
    margin: 0;
    padding: 0;
    flex: none;
}

.d-steam-card {
    width: 100%;
    padding: 0;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--site-shadow);
    overflow: hidden;
}

.d-steam-card::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.95;
    transform: none;
    background-image: linear-gradient(180deg, rgba(2, 6, 23, 0.1) 0%, rgba(2, 6, 23, 0.48) 100%);
}

.d-steam-card:hover,
.d-steam-card:focus {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 50px rgba(2, 8, 23, 0.42);
}

.inner-loop-elementos {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 0;
    aspect-ratio: 3 / 4;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--site-shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-loop-elementos:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.inner-loop-elementos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.caixa-loop-elementos {
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.futbol {
    width: 100%;
    height: auto;
    min-height: 240px;
    position: relative;
}

.futbol .fulbol-card {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    border-radius: 24px;
    background: rgba(8, 15, 28, 0.85);
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
    overflow: hidden;
}

.futbol .futbol-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.futbol .futbol-content {
    padding: 16px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.5));
}

.futbol .futbol-content .box-1 .box-title,
.futbol .futbol-content .box-1 .box-action,
.bt3733,
.futbol .futbol-content .box-1 .box-title p {
    color: #fff;
}

.futbol-result .futbol-result-left,
.futbol-result .futbol-result-right {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-bet {
    height: 36px;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-bet.is-today {
    background: rgba(34, 197, 94, 0.88);
}

.soccer {
    position: relative;
    min-height: calc(100vh - 180px);
    padding: 24px;
}

.soccer-bg {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.soccer-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.9));
}

.soccer-container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    padding: 24px;
}

.soccer-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #d7f5ff;
    font-family: 'Space Grotesk', sans-serif;
    flex-wrap: wrap;
}

.soccer-date h2 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.soccer-team {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 1.4fr) 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(8, 15, 28, 0.68);
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(14px);
}

.soccer-info {
    text-align: center;
}

.soccer-info h2 {
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.soccer-info p {
    margin-bottom: 0;
    color: var(--site-muted);
}

.soccer-form {
    margin-top: 24px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(8, 15, 28, 0.72);
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
}

.soccer-bets {
    margin-top: 24px;
}

.soccer-award {
    margin-top: 24px;
}

.soccer .alert-info {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
    color: var(--site-text);
}

.game-fullscreen {
    margin-bottom: 24px;
}

.game-details,
.stats-and-social {
    margin-top: 24px;
}

.game-details__title {
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.game-details__description,
.basic-game-stats {
    padding: 20px;
    border-radius: 24px;
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
}

.basic-game-stats__header {
    margin-bottom: 12px;
    color: var(--site-muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.basic-game-stats__numbers {
    list-style: none;
    padding: 0;
    margin: 0;
}

.basic-game-stats__numbers li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.basic-game-stats__numbers li:last-child {
    border-bottom: 0;
}

.bet-category-list {
    padding: 0 4px 8px;
    display: flex;
    gap: 12px;
}

.bet-category-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--site-border);
    color: var(--site-muted);
    white-space: nowrap;
}

.bet-category-active .bet-category-item,
.bet-category-item:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.18));
    color: var(--site-text);
    border-color: rgba(56, 189, 248, 0.28);
}

.card {
    color: var(--site-text);
    overflow: hidden;
}

.card-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--site-border);
    padding: 1rem 1.25rem;
}

.card-body {
    background: transparent;
}

.table {
    --bs-table-color: var(--site-text);
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
    --bs-table-hover-bg: rgba(56, 189, 248, 0.08);
    color: var(--site-text);
    margin-bottom: 0;
}

.table > :not(caption) > * > * {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.12);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: var(--site-text);
}

.table-hover > tbody > tr:hover > * {
    color: #fff;
}

.page-link {
    color: var(--site-text);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
    border-radius: 12px;
}

.page-link:focus {
    box-shadow: none;
}

.page-link:hover {
    color: #fff;
    background-color: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.24);
}

.active > .page-link,
.page-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--site-brand), var(--site-brand-2));
    border-color: transparent;
}

.pagination {
    gap: 8px;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--site-border);
    color: var(--site-text);
}

.input-group-text button {
    padding: 0;
    color: var(--site-text);
    background: transparent;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.input-group-text button:hover {
    color: #fff;
}

.form-control,
.form-select {
    background: rgba(4, 10, 18, 0.8) !important;
    border: 1px solid var(--site-border) !important;
    color: var(--site-text) !important;
    border-radius: 14px;
}

.form-control::placeholder {
    color: rgba(159, 178, 203, 0.72);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.1);
}

.btn-primary-theme:hover,
.btn-success:hover,
.btn-outline-success:hover {
    filter: brightness(1.05);
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--site-brand-2);
    --bs-btn-border-color: var(--site-brand-2);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--site-brand-2);
    --bs-btn-hover-border-color: var(--site-brand-2);
    --bs-btn-focus-shadow-rgb: 37, 99, 235;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--site-brand-2);
    --bs-btn-active-border-color: var(--site-brand-2);
    --bs-btn-disabled-bg: var(--site-brand-2);
    --bs-btn-disabled-border-color: var(--site-brand-2);
}

.btn-outline-success {
    --bs-btn-color: var(--site-brand);
    --bs-btn-border-color: var(--site-brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--site-brand);
    --bs-btn-hover-border-color: var(--site-brand);
    --bs-btn-active-bg: var(--site-brand);
    --bs-btn-active-border-color: var(--site-brand);
}

.btn-outline-light {
    --bs-btn-color: var(--site-text);
    --bs-btn-border-color: var(--site-border);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.08);
    --bs-btn-hover-border-color: var(--site-border);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.08);
    --bs-btn-active-border-color: var(--site-border);
}

.btn-outline-light,
.btn-outline-success,
.btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.15rem;
    border-radius: 16px;
    font-weight: 700;
}

.select_amount {
    width: 100%;
    padding: 10px 15px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--site-text);
    border: 1px solid var(--site-border);
}

.text-primary {
    color: var(--site-brand) !important;
}

.mr-2 {
    margin-right: 10px;
}

.w-full {
    width: 100%;
}

.hidden-mobile {
    display: initial;
}

.footer {
    margin-top: 3rem;
    padding: 28px 20px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
    gap: 20px;
}

.footer-brand,
.footer-links,
.footer-community {
    padding: 22px;
    border-radius: 24px;
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    box-shadow: var(--site-shadow);
}

.footer-brand__row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-logo {
    max-width: 160px;
    width: auto;
}

.footer-age {
    width: 40px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.footer-links h5,
.footer-community h5 {
    margin: 0 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    padding: 0.45rem 0;
    color: var(--site-muted);
}

.footer-links a:hover {
    color: var(--site-text);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 16px;
}

.footer-social a {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
}

.footer-social img {
    width: 20px;
    height: 20px;
}

.footer-copy {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.wallet .card,
.wallet-transactions .card {
    border-radius: 24px;
}

.wallet .balance h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.affiliate-block {
    padding: 20px;
}

.notification {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--site-brand);
    background: rgba(8, 15, 28, 0.72);
}

.notification .notification-time {
    color: #6ee7b7;
}

.accordion-item {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    background: transparent;
    color: var(--site-text);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--site-text);
    background: rgba(56, 189, 248, 0.08);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 189, 248, 0.08);
}

.playgame {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 28%), #030814;
}

.playgame .playgame-body {
    width: 100%;
    height: 100%;
}

.game-full {
    width: 100%;
    height: 100%;
    border: none;
}

.login-wrap {
    margin-top: auto;
    flex: none;
    padding: 20px;
}

.iziModal {
    border-radius: 28px !important;
    overflow: hidden;
}

.iziModal .iziModal-content,
.iziModal .modal-content {
    background: var(--site-surface-strong) !important;
    border: 1px solid var(--site-border);
}

.iziModal .iziModal-header {
    background: rgba(8, 15, 28, 0.94) !important;
    border-bottom: 1px solid var(--site-border);
    color: var(--site-text);
}

.line-text .t {
    color: var(--site-muted);
}

.login-with-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--site-border);
    color: var(--site-text);
}

.login-with-google-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.form-login {
    padding: 24px;
    height: calc(100% - 100px);
}

.relative {
    position: relative;
}

.loading-spinner {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.65);
    position: absolute;
    z-index: 99;
    inset: 0;
}

.spinner {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 60px;
    width: 60px;
    margin: 0 auto;
    animation: rotation 0.6s infinite linear;
    border-left: 6px solid rgba(88, 175, 16, 0.15);
    border-right: 6px solid rgba(88, 175, 16, 0.15);
    border-bottom: 6px solid rgba(88, 175, 16, 0.15);
    border-top: 6px solid rgba(56, 189, 248, 1);
    border-radius: 100%;
    z-index: 999;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.ui-button {
    width: auto;
    min-width: 9.375rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 14px;
    font-size: 0.875rem;
    font-weight: 700;
}

.ui-button.s-conic2 {
    color: #fff;
    background: linear-gradient(135deg, var(--site-brand), var(--site-brand-2));
}

.card-primary,
.card-secundary {
    border: 1px solid var(--site-border);
    border-radius: 18px;
    background: rgba(8, 15, 28, 0.72);
}

.page__content .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.page__content .container,
.page__content .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.header-box .header-title i {
    color: var(--site-brand) !important;
}

.text-money {
    font-family: 'Space Grotesk', sans-serif;
}

.table-dark {
    --bs-table-bg: rgba(8, 15, 28, 0.72);
    --bs-table-border-color: rgba(148, 163, 184, 0.12);
}

@media (max-width: 1100px) {
    .navbar-toggler {
        display: inline-flex;
    }

    .page__navbar {
        top: 16px;
        left: 16px;
        bottom: 16px;
        width: min(320px, calc(100vw - 32px));
        transform: translateX(-112%);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .page__navbar.is-open {
        transform: translateX(0);
    }

    .page__navbar__logo .navbar-toggler-close {
        display: inline-flex;
    }

    .page__content {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        padding: 16px;
    }

    .page > .container,
    .page > .container-fluid {
        width: 100%;
        padding: 0 16px 32px;
    }

    .page__content__navbar {
        top: 12px;
        flex-wrap: wrap;
        padding: 12px 14px;
    }

    .topbar-copy {
        display: none;
    }

    .home-hero {
        grid-template-columns: 1fr;
        padding: 20px;
    }

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

    .support-points {
        grid-template-columns: 1fr;
    }

    .d-steam-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page__content__navbar__dir {
        width: 100%;
        justify-content: space-between;
    }

    .page__content__navbar__dir__saldo {
        min-width: 0;
        flex: 1;
    }

    .hidden-mobile {
        display: none;
    }

    .d-steam-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer {
        margin-top: 24px;
        padding: 20px 16px 32px;
    }
}

@media (max-width: 520px) {
    .page__content {
        padding: 12px;
    }

    .page__content__navbar {
        padding: 10px 12px;
    }

    .page__content__navbar__dir {
        gap: 8px;
    }

    .page__content__navbar__dir__btn,
    .sign-in,
    .profile-avatar {
        min-height: 44px;
        padding: 0 0.9rem;
        border-radius: 14px;
    }

    .page__content__navbar__dir__saldo {
        padding: 0.6rem 0.8rem;
    }

    .d-steam-cards {
        grid-template-columns: 1fr;
    }

    .home-hero__content h1 {
        font-size: 2rem;
    }

    .footer {
        padding: 18px 12px 28px;
    }
}
