.game-slider-section,
.providers-section {
    position: relative;
    overflow: hidden;
}

.game-slider,
.lives-slider,
.lives-slider2,
.game-slider-two,
.random-slider-one,
.random-slider-two,
.minigames-slider {
    width: 100%;
    padding: 20px 0px 0px 0px;
}

.game-slider .swiper-slide,
.lives-slider .swiper-slide,
.lives-slider2 .swiper-slide,
.game-slider-two .swiper-slide,
.random-slider-one .swiper-slide,
.random-slider-two .swiper-slide,
.minigames-slider .swiper-slide {
    width: 185px;
}

.game-card {
    display: block;
    width: 100%;
    max-width: 224px;
    aspect-ratio: 4/3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #3b3b3b 0%, #1a1a1a 100%);
    padding: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(180, 120, 255, 0.4) 0%, rgba(255, 150, 100, 0.3) 50%, rgba(100, 200, 255, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.game-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.game-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.game-card-badge.hot {
    background: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
    color: #fff;
}

.game-card-badge.new {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
}

.game-card-badge.live {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.game-card-title {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.game-card-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.game-card-play i {
    font-size: 14px;
    color: #fff;
    margin-left: 2px;
}

.game-card:hover .game-card-play {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.game-card-provider {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.providers-section {
    margin-top: 48px;
}

.provider-slider {
    width: 100%;
    height: 156px;
    padding: 10px 0;
}

.provider-slider .swiper-slide {
    width: 160px;
}

.provider-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.provider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 150px;
    background-color: var(--bg-element-primary);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.provider-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
    background-color: var(--bg-element-secondary);
}

.provider-card img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.provider-card:hover img {
    opacity: 1;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.hero-content-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.hero-welcome-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-welcome-title .nickname-highlight {
    color: var(--accent-blue);
}

.hero-promo-text {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 450px;
}

.hero-actions-auth {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.banner-slider-section {
    display: none;
}

.banner-slider {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.banner-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
}

.banner-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 18px;
    max-width: 90%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.banner-slider .swiper-pagination-bullet-active {
    background-color: var(--accent-blue);
}

.banner-slider .swiper-button-prev,
.banner-slider .swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.2s;
}

.banner-slider .swiper-button-prev:hover,
.banner-slider .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
    font-size: 24px;
    font-weight: 800;
}

.banner-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-widget-section {
    padding-top: 0px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-element-primary);
    border: 1px solid var(--border-color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 205px;
}

.category-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-card-bg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 16px;
}

.category-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-bg {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-card-overlay {
    opacity: 1;
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--text-primary);
}

.category-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.category-card.casino .category-card-icon {
    color: var(--accent-casino-bg);
}

.category-card.live .category-card-icon {
    color: var(--accent-live-bg);
}

.category-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.category-card-arrow {
    margin-top: 16px;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.super-slider-section {
    position: relative;
    margin-top: 32px;
    padding: 0 40px;
    overflow: hidden;
}

.swiper-super-banner,
.sw-default {
    width: 100%;
    max-width: 1260px;
    height: 450px;
    margin: 0 auto;
    overflow: visible;
}

.super-banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    color: #fff;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

.swiper-super-banner .swiper-slide,
.sw-default .swiper-slide {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-super-banner .swiper-slide:not(.swiper-slide-active),
.sw-default .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.4;
}

.super-banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(0 0 0 / 66%) 0%, rgb(0 0 0 / 0%) 100%);
    z-index: 1;
}

.super-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.super-banner-content.text-center {
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.super-banner-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-transform: uppercase;
    background: var(--accent-blue);
    padding: 6px 8px;
    border-radius: 6px;
}

.super-banner-title span {
    display: block;
    font-size: 0.7em;
    font-weight: 700;
}

.super-banner-title.green {
    color: #3B82F6;
    font-size: 50px;
    text-shadow: 0 2.5px 49px #3B82F6;
    background: rgba(0, 0, 0, 0);
}

.super-banner-subtitle {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.super-banner-subtitle b {
    display: block;
    font-size: 1.4em;
}

.super-banner-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
}

.super-banner-prev,
.super-banner-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.2s;
    top: 50%;
}

.super-banner-prev:hover,
.super-banner-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.super-banner-prev {
    left: -25px;
}

.super-banner-next {
    right: -25px;
}

.super-banner-next:after,
.super-banner-prev:after {
    font-size: 24px;
    font-weight: 800;
}

.super-banner-pagination {
    bottom: 20px !important;
    position: absolute;
    width: 100%;
    left: 0;
}

.super-banner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.2s;
}

.super-banner-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-blue);
    transform: scale(1.5);
}

.searhCompilation {
    display: flex;
    margin: 20px auto 0;
    max-width: 100%;
    object-fit: contain;
}

.jackpotBlock {
    display: grid;
    grid-template-columns: auto 245px;
    height: 100px;
    position: relative;
    width: 100%;
}

.jackpotBlock:after {
    background-color: #2692fa29;
    border-radius: 25px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1;
}

.jackpotBlock.start {
    grid-gap: 10px;
    align-items: center;
    background: url(/images/fonts/casesSection.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    box-shadow: 14px 0 12px 0 #0a0e1b40;
    grid-template-columns: 200px 1fr auto;
    height: 180px;
    margin: 32px auto 10px auto;
    max-width: 1300px;
    padding: 0 35px;
    transition: transform .3s ease;
}

.jackpotBlock.start:before {
    border-radius: 25px;
    content: "";
    height: calc(100%);
    left: 0;
    position: absolute;
    top: 0;
    width: calc(100%);
    z-index: 1;
    background: linear-gradient(137deg, #000000d9, #0000006b, #000000b5);
}

.jackpotBlock.start .centerImage {
    height: 100%;
    margin: auto;
    position: relative;
    width: 100%;
    z-index: 2;
}

.jackpotBlock.start .centerImage .jacpotCompilation {
    bottom: -10px;
    left: -15px;
    object-fit: contain;
    position: absolute;
    width: 200px;
}

.jackpotBlock.start .centerImage .jacpotCompilation.secondary {
    display: none;
}

.jackpotBlock.start .jackpotBtnNy {
    filter: none;
    height: 115px;
    width: 200px;
}

.jackpotBtnNy {
    align-items: center;
    cursor: pointer;
    display: flex;
    filter: drop-shadow(0 0 10px rgba(121, 158, 216, .5));
    height: 60px;
    justify-content: center;
    position: relative;
    transition: transform .1s ease, filter .15s ease;
    width: 300px;
    z-index: 1;
}

.jackpotBlock.start .jackpotBtnNy .nyText {
    font-size: 24px;
    padding-bottom: 18px;
}

.jackpotBtnNy .nyText.p {
    -webkit-text-fill-color: #0000;
    font-weight: 900;
    font-family: 'Inter';
    background: #ffffff;
    background-clip: text;
    text-transform: uppercase;
    -webkit-background-clip: text;
}

.nyText {
    -webkit-text-fill-color: #0000;
    background: linear-gradient(180deg, #005799, #1370b7);
    background-clip: text;
    -webkit-background-clip: text;
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    text-align: center;
}

.jackpotBtnNy .nyText {
    padding-bottom: 8px;
    transform: rotate(-3.467deg);
}

.jackpotBtnNy .btnBody {
    height: 100%;
    top: 0;
    width: 100%;
    z-index: -1;
}

.jackpotBtnNy .abs,
.jackpotBtnNy .btnBody {
    left: 0;
    position: absolute;
}

.jackpotBlock.start .title {
    position: relative;
    transition: transform .3s ease;
    width: 100%;
    z-index: 3;
}

.jackpotBlock.start .title h1 {
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 12px black;
}

.jackpotBlock.start .title span {
    color: #3097fa;
    font-size: 56px;
    font-weight: 900;
    text-align: center;
}

.jackpotBlock.start .title span b {
    color: #fff;
}

.jackpotBlock.start .title p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding-top: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 12px black;
}

.jackpotBlock.start .title .subimg {
    position: absolute;
    right: 40px;
    top: -23px;
    width: 150px;
}

.VIP {
    max-width: 1322px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--content-padding);
    padding-right: var(--content-padding);
    display: contents;
    align-items: center;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    justify-content: center;
    width: 100%;
}

.VIP .levels {
    margin-top: 32px;
    position: relative;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.VIP .levels:hover,
.jackpotBlock:hover {
    transform: scale(1.025);
}

.VIP .levelsWrap:before {
    background: linear-gradient(137deg, #000000d9, #000000f0, #000000f0);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 0;
    opacity: 0.75;
}

.VIP .levels:after {
    border-radius: 40px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 6px;
    width: 100%;
}

.VIP .levels .levelsWrap {
    background: var(--before-gradient);
    border-radius: 40px;
    height: 100%;
    overflow: hidden;
    padding: 40px 60px 50px 120px;
    position: relative;
    width: 100%;
    background: url(/images/promos/levelsBg.jpg?v=4);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.VIP .levels .levelsWrap .lTitle {
    font-size: 28px;
    font-weight: 900;
    z-index: 1;
    position: relative;
}

.VIP .levels .levelsWrap .lDesc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    max-width: 550px;
    padding: 10px 0;
    position: relative;
}

.VIP .levels .levelsWrap .map {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
}

.VIP .levels .levelsWrap .map .l {
    align-items: center;
    background: linear-gradient(180deg, #31416d, #253050);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding-bottom: 100%;
    position: relative;
    width: 100%;
}

.VIP .levels .levelsWrap .map .l.act:after {
    opacity: 1;
}

.VIP .levels .levelsWrap .map .l.act .lbtn {
    color: #fff;
}

.VIP .levels .levelsWrap .map .l.act img {
    opacity: 1;
    transform: translateY(0);
}

.VIP .levels .levelsWrap .map .l .lbtn {
    color: #8b98ad;
    font-size: 26px;
    font-weight: 900;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: color .15s ease;
    z-index: 1;
}

.VIP .levels .levelsWrap .map .l img {
    opacity: 0;
    position: absolute;
    top: 50px;
    transform: translateY(100%);
    transition: transform .15s ease, opacity .15s ease;
    width: 100%;
    z-index: 3;
}

.VIP .levels .levelHero {
    right: 10px;
    position: absolute;
    bottom: -15px;
    max-width: 200px;
    z-index: 1;
}

.VIP .levels .levelStar {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 2;
    max-width: 118px;
}

.VIP .levels .info {
    max-width: 470px;
    position: absolute;
    right: 30px;
    top: 160px;
    transform: translateY(-100%);
    z-index: 2;
}

.VIP .levels .info .swiper-slide {
    opacity: 0;
    transition: opacity .3s ease;
}

.VIP .levels .info .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.VIP .levels .info .item .itemBlock {
    padding-bottom: 79%;
    position: relative;
}

.VIP .levels .info .item .itemBlock .itemUi {
    left: 50%;
    padding-bottom: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.VIP .levels .info .item .itemBlock .itemUi .top {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 2.447px 7.34px #00000096;
    text-transform: uppercase;
}

.VIP .levels .info .item .itemBlock .itemUi .items {
    align-items: center;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.VIP .levels .info .item .itemBlock .itemUi .items .rewardItem {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 900;
    justify-content: center;
    text-shadow: 0 5.64px 5.64px #0000004d;
}

.VIP .levels .info .item .itemBlock .itemUi .items .rewardItem .tTitle {
    font-size: 14px;
    text-transform: uppercase;
}

.VIP .levels .info .item .itemBlock .levelBack {
    height: 100%;
    left: 0;
    object-fit: contain;
    position: absolute;
    top: 0;
    width: 100%;
}

.VIP .levels .info .levelItemImg {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.VIP .levels .info .levelItemImg .levelArrow {
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s ease;
}

.VIP .levels .info .levelItemImg .levelBottle {
    height: 300px;
    transform: rotate(-35deg);
}

.hero-dashboard-section {
    padding: 32px 5%;
}

.hero-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    align-items: stretch;
}

.hero-banner-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-banner-wrapper .swiper-super-banner {
    height: 420px;
    max-width: 100%;
}

.hero-banner-wrapper .super-banner-slide {
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-banner-wrapper .super-banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #09090b 0%, rgba(9, 9, 11, 0.95) 25%, rgba(9, 9, 11, 0.4) 60%, transparent 100%);
    z-index: 1;
    border-radius: 24px;
}

.hero-banner-wrapper .super-banner-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    width: 100%;
    max-width: 90%;
}

.hero-banner-wrapper .super-banner-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 12px;
    text-align: left;
    background: none;
    padding: 0;
    border-radius: 0;
    text-shadow: none;
}

.hero-banner-wrapper .super-banner-title span,
.hero-banner-wrapper .super-banner-title em {
    color: #71717a;
    font-style: normal;
}

.hero-banner-wrapper .super-banner-text {
    font-size: 14px;
    color: #a1a1aa;
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-banner-wrapper .banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-banner-wrapper .btn-banner-primary {
    padding: 8px 12px;
    background: #fff;
    color: #000;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-banner-wrapper .btn-banner-primary:hover {
    background: #e4e4e7;
    transform: translateY(-2px);
}

.hero-banner-wrapper .btn-banner-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-banner-wrapper .btn-banner-link:hover {
    color: #a1a1aa;
}

.hero-banner-wrapper .btn-banner-link i {
    font-size: 18px;
}

.banner-exclusive-badge {
    --badge-color: #ffc107;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: color-mix(in srgb, var(--badge-color) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--badge-color) 30%, transparent);
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--badge-color);
    width: fit-content;
    margin-bottom: 16px;
}

.banner-exclusive-badge i {
    font-size: 12px;
    color: var(--badge-color);
}

.hero-banner-wrapper .btn-banner-secondary {
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-banner-wrapper .btn-banner-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.super-banner-default {
    background: url('/images/banners/default-casino.jpg') center/cover no-repeat,
        linear-gradient(135deg, #18181b 0%, #09090b 100%);
}

.swiper-banner-pagination {
    bottom: 16px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.swiper-banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-banner-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.hero-sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-tournament {
    background: #18181b;
    border: 1px solid #27272a;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #71717a;
    width: fit-content;
    margin-bottom: 10px;
}

.hero-card-badge i {
    font-size: 12px;
    color: #ffc107;
}

.hero-card-badge.light {
    background: rgba(0, 0, 0, 0.06);
    color: #52525b;
}

.hero-card-badge.light i {
    color: #52525b;
}

.hero-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.hero-card-prize {
    font-size: 13px;
    color: #71717a;
}

.hero-card-prize strong {
    color: #22c55e;
    font-weight: 700;
}

.hero-card-action {
    margin-top: auto;
    padding-top: 16px;
}

.hero-card-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #3f3f46;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    transition: all 0.2s ease;
}

.hero-card:hover .hero-card-btn {
    background: #27272a;
    border-color: #52525b;
}

.hero-card-participants {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.participants-avatars {
    display: flex;
}

.participant-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: 2px solid #18181b;
    margin-left: -10px;
}

.participant-avatar:first-child {
    margin-left: 0;
}

.participants-count {
    font-size: 12px;
    color: #71717a;
    font-weight: 600;
    background: #27272a;
    padding: 4px 8px;
    border-radius: 99px;
}

.hero-card-rewards {
    background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%);
    color: #18181b;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
}

.hero-card-rewards .hero-card-content {
    flex: 1;
}

.hero-card-rewards .hero-card-title {
    color: #18181b;
    font-size: 16px;
}

.hero-card-rewards .hero-card-timer {
    color: #71717a;
    font-size: 12px;
    margin-top: 2px;
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4d4d8 0%, #a1a1aa 100%);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero-card-icon i {
    font-size: 24px;
    color: #52525b;
}

.hero-card-arrow {
    padding: 10px 20px;
    border-radius: 10px;
    background: #18181b;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.hero-card-arrow i {
    font-size: 20px;
}

.hero-card-rewards:hover .hero-card-arrow {
    background: #27272a;
    transform: translateX(2px);
}

.hall-of-fame-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 32px;
    background: transparent;
    align-items: start;
    margin-top: 20px;
}

.hof-podium-card {
    background: #0f1218;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    min-height: 600px;
}

.hof-podium-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hof-card-header {
    padding: 24px;
    text-align: center;
}

.hof-period-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hof-tabs {
    display: flex;
    background: #1a1e26;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.hof-tab {
    flex: 1;
    padding: 10px;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hof-tab.active {
    background: #2d3748;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hof-podium-area {
    padding: 0 24px 32px;
    flex: 1;
}

.hof-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    height: 250px;
}

.hof-podium-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    position: relative;
    transition: transform 0.3s ease;
}

.hof-podium-item:hover {
    transform: translateY(-5px);
}

.hof-podium-first {
    width: 130px;
}

.hof-podium-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.hof-podium-first .hof-podium-image {
    aspect-ratio: 1/1.2;
    border: 2px solid #eab308;
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.2);
}

.hof-podium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hof-place-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    z-index: 5;
    border: 2px solid #0f1218;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hof-podium-first .hof-place-badge {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.hof-podium-second .hof-place-badge {
    background: linear-gradient(135deg, #94a3b8, #475569);
}

.hof-podium-third .hof-place-badge {
    background: linear-gradient(135deg, #d97706, #92400e);
}

.hof-podium-amount-tag {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hof-podium-nick {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.hof-mini-slider {
    background: #0a0c10;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hof-slider-container {
    overflow: hidden;
}

.hof-slider {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.hof-slider:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        
        transform: translateX(-50%);
    }
}

.hof-slider-item {
    text-decoration: none;
    text-align: center;
    width: 65px;
}

.hof-slider-item img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 6px;
}

.hof-slider-nick {
    display: block;
    font-size: 10px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hof-slider-amount {
    display: block;
    font-size: 10px;
    color: #10b981;
    font-weight: 700;
}

.hof-live-column {
    display: flex;
    flex-direction: column;
    background: #0f1218;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hof-column-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.hof-live-table-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hof-table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    padding: 0 20px;
    margin-bottom: 12px;
}

.hof-table-header span {
    font-size: 11px;
    font-weight: 800;
    color: #475569;
    letter-spacing: 1px;
}

.hof-table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

#hof-live-table {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.hof-table-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.hof-td-game {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.hof-td-game img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.hof-td-player {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 14px;
}

.hof-td-time {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.hof-td-coef {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 14px;
}

.hof-td-bet {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 14px;
}

.hof-td-win-badge {
    background: #10b981;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.hof-skeleton .skeleton-box {
    background: linear-gradient(90deg, #1a1e26 25%, #242a35 50%, #1a1e26 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.dashboard-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding: 20px 0 0 0;
}

.dashboard-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.member-label {
    font-size: 11px;
    font-weight: 700;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1;
}

.dashboard-header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    justify-content: center;
}

.vip-progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.vip-label {
    font-size: 10px;
    font-weight: 700;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.vip-track-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: space-around;
}

.vip-rank-name {
    font-size: 12px;
    font-weight: 600;
    color: #71717a;
}

.vip-rank-name.current {
    color: #ffffff;
}

.vip-progress-track {
    flex-grow: 1;
    height: 6px;
    background: #27272a;
    border-radius: 99px;
    overflow: hidden;
    max-width: 150px;
}

.vip-progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 99px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.live-dot-pulsate {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 8px #10b981, 0 0 16px rgba(16, 185, 129, 0.5);
    animation: pulse-glow-live 2s ease-in-out infinite;
}

@keyframes pulse-glow-live {

    0%,
    100% {
        box-shadow: 0 0 8px #10b981, 0 0 16px rgba(16, 185, 129, 0.5), 0 0 0 0 rgba(16, 185, 129, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 12px #10b981, 0 0 24px rgba(16, 185, 129, 0.6), 0 0 0 6px rgba(16, 185, 129, 0);
        transform: scale(1.1);
    }
}

.hof-card-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hof-card-title-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hof-period-subtitle {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.section-icon-fame {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 12px;
    width: 44px;
    height: 44px;
}

.section-icon-live {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.live-dot-animated {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
}

@keyframes live-pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-box {
    background: linear-gradient(90deg, #27272a 0%, #3f3f46 50%, #27272a 100%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.hof-skeleton .hof-podium-image {
    background: linear-gradient(90deg, #27272a 0%, #3f3f46 50%, #27272a 100%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    display: inline-block;
    width: 80px;
    height: 16px;
    background: linear-gradient(90deg, #27272a 0%, #3f3f46 50%, #27272a 100%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text-sm {
    display: inline-block;
    width: 50px;
    height: 12px;
    background: linear-gradient(90deg, #27272a 0%, #3f3f46 50%, #27272a 100%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.hof-skeleton .hof-podium-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.hof-skeleton.hof-slider-item {
    pointer-events: none;
}

.hof-skeleton.hof-table-row {
    pointer-events: none;
}

.game-card-skeleton {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1e1e24 0%, #16161a 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}


.swiper-wrapper.skeleton-loading {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    overflow: hidden;
    width: 100%;
}

.swiper-wrapper.skeleton-loading .swiper-slide {
    flex: 0 0 auto;
    width: 185px;
    
}

@media (max-width: 1440px) {
    .swiper-wrapper.skeleton-loading .swiper-slide {
        width: 165px;
    }
}

.hof-skeleton .skeleton-box {
    background: linear-gradient(90deg, #1e1e24 25%, #27272a 50%, #1e1e24 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@media (max-width: 1690px) {
    .hero-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-sidebar-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-banner-wrapper .swiper-super-banner {
        height: 380px;
    }

    .hero-banner-wrapper .super-banner-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero-banner-wrapper .super-banner-text {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 1440px) {

    .game-slider .swiper-slide,
    .lives-slider .swiper-slide,
    .game-slider-two .swiper-slide {
        width: 165px;
    }

    .hero-banner-wrapper .swiper-super-banner {
        height: 340px;
    }

    .hero-banner-wrapper .super-banner-content {
        padding: 32px;
    }

    .hero-banner-wrapper .super-banner-title {
        font-size: 26px;
    }

    .hero-banner-wrapper .btn-banner-primary {
        padding: 10px 20px;
    }

    .hall-of-fame-content {
        grid-template-columns: 1fr;
    }

    .hof-podium-card {
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 1440px) and (min-width: 1025px) {

    .hof-th-time,
    .hof-td-time {
        display: none;
    }

    .hof-table-header,
    .hof-table-row {
        grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1250px) {
    .jackpotBlock.start .title .subimg {
        display: none;
    }
}

@media (max-width: 1100px) {
    .VIP .levels .levelsWrap .lDesc {
        max-width: 100%;
    }

    .VIP .levels .levelsWrap .map .l img {
        left: -30px;
        max-width: 55px;
        top: 0;
        transform: translateY(10%);
    }

    .VIP .levels .levelHero {
        display: none;
    }

    .VIP .levels .info {
        right: 50%;
        top: 0;
        transform: translate(50%, -100%);
    }

    .VIP .levels {
        margin-top: 16px;
    }

    .jackpotBlock.start:before {
        border-radius: 20px;
    }

    .jackpotBlock.start {
        background-repeat: no-repeat;
        background-size: cover;
        grid-template-columns: 1fr;
        height: auto !important;
        padding-bottom: 15px;
    }

    .jackpotBlock.start .centerImage .jacpotCompilation {
        bottom: auto !important;
        left: 50% !important;
        max-width: none;
        top: 0px !important;
        transform: translateX(-50%) rotate(-5deg) !important;
        width: 200px !important;
    }

    .jackpotBlock.start .centerImage .jacpotCompilation.firstly {
        display: none;
    }

    .jackpotBlock.start .centerImage .jacpotCompilation.secondary {
        display: inline;
        display: initial;
    }

    .jackpotBlock.start .jackpotBtnNy {
        height: 75px;
        margin: 0 auto;
        width: 150px;
    }

    .jackpotBlock.start .jackpotBtnNy .nyText {
        font-size: 18px;
        padding-bottom: 16px;
    }

    .jackpotBlock.start .title {
        align-items: center;
        display: flex;
        flex-direction: column;
        padding-top: 155px;
    }

    .jackpotBlock.start .title h1 {
        font-size: 26px !important;
    }

    .jackpotBlock.start .title p {
        display: block;
    }

    .jackpotBlock.start .title span {
        font-size: 28px !important;
    }
}

@media (max-width: 1024px) {
    .hall-of-fame-content {
        grid-template-columns: 1fr;
    }

    .hof-table-header,
    .hof-table-row {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding: 10px;
    }

    .hof-th-time,
    .hof-th-coef,
    .hof-th-bet,
    .hof-td-time,
    .hof-td-coef,
    .hof-td-bet {
        display: none;
    }

    .hof-table-row {
        padding: 8px 12px;
    }

    .hof-td-game {
        font-size: 11px;
        gap: 8px;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
    }

    .hof-td-game img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .hof-td-game span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hof-td-player {
        font-size: 11px;
        gap: 4px;
        justify-content: flex-end;
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hof-td-player i {
        display: none;
    }

    .hof-td-win-badge {
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 6px;
        min-width: 70px;
    }
}

@media (max-width: 992px) {
    .super-slider-section {
        padding: 0;
    }

    .swiper-super-banner,
    .sw-default {
        height: 350px;
    }

    .super-banner-title {
        font-size: 24px;
    }

    .super-banner-subtitle {
        font-size: 32px;
    }

    .super-banner-title.green {
        font-size: 72px;
    }

    .super-banner-text {
        font-size: 13px;
    }

    .super-banner-prev,
    .super-banner-next {
        display: none;
    }

    .btn-lg {
        padding: 10px 14px;
        font-size: 12px;
    }

    .super-banner-slide {
        border-radius: 0px;
    }

    .super-slider-section {
        margin-top: 0px;
    }

    .hero-banner-wrapper .swiper-super-banner {
        height: 300px;
    }

    .hero-banner-wrapper .super-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card-title {
        font-size: 20px;
    }

    .category-card-icon {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .banner-slider {
        height: 350px;
        border-radius: 0;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-slider .swiper-button-prev,
    .banner-slider .swiper-button-next {
        display: none;
    }

    .banner-slider-section {
        margin-top: 0px;
        max-width: 100%;
    }

    .banner-slide::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 100%);
    }

    .hero-dashboard-section {
        padding: 16px;
    }

    .hero-dashboard-grid {
        gap: 16px;
    }

    .hero-sidebar-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-banner-wrapper .swiper-super-banner {
        height: 260px;
    }

    .hero-banner-wrapper .super-banner-content {
        padding: 20px 16px;
    }

    .hero-banner-wrapper .super-banner-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .hero-banner-wrapper .super-banner-text {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .banner-exclusive-badge {
        margin-bottom: 8px !important;
        font-size: 9px;
        padding: 4px 8px;
    }

    .hero-banner-wrapper .banner-actions {
        gap: 8px;
    }

    .hero-banner-wrapper .btn-banner-primary {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    .hero-banner-wrapper .btn-banner-link {
        font-size: 12px !important;
    }

    .hero-card {
        padding: 16px;
        border-radius: 16px;
    }

    .hero-card-title {
        font-size: 16px;
    }

    .hero-card-icon {
        width: 42px;
        height: 42px;
    }

    .hero-card-icon i {
        font-size: 20px;
    }

    .dashboard-header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 35px 16px 20px 16px;
    }

    .dashboard-header-left {
        align-items: center;
        width: 100%;
    }

    .dashboard-title {
        font-size: 24px;
        text-align: center;
    }

    .dashboard-header-right {
        width: 100%;
        justify-content: center;
    }

    .vip-progress-container {
        width: 100%;
        max-width: 400px;
        align-items: stretch;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .vip-track-row {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .VIP .levels:after {
        border-radius: 25px;
        top: 10px;
    }

    .VIP .levels .levelsWrap {
        border-radius: 25px;
        padding: 25px;
    }

    .VIP .levels .levelsWrap .lTitle {
        font-size: 22px;
        padding-left: 55px;
    }

    .VIP .levels .levelsWrap .lDesc {
        font-size: 12px;
        padding-bottom: 30px;
        padding-left: 55px;
        padding-top: 5px;
    }

    .VIP .levels .levelStar {
        max-width: 80px;
    }

    .VIP .levels .info .item {
        padding: 0 30px;
    }

    .VIP .levels .info .item .itemBlock .itemUi {
        padding-bottom: 35px;
    }

    .VIP .levels .info .item .itemBlock .itemUi .items .rewardItem {
        font-size: 18px;
    }

    .jackpotBlock.start {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {

    .swiper-super-banner,
    .sw-default {
        height: 250px;
    }

    .super-banner-content {
        padding: 20px;
        gap: 12px;
    }

    .super-banner-title {
        font-size: 16px;
    }

    .super-banner-subtitle {
        font-size: 22px;
    }

    .super-banner-title.green {
        font-size: 52px;
    }

    .super-banner-text {
        font-size: 12px;
    }

    .super-banner-content .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .super-banner-content {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .hero-banner-wrapper .swiper-super-banner {
        height: 240px;
    }

    .hero-banner-wrapper .super-banner-title {
        font-size: 18px;
        text-align: center;
    }

    .hof-table-header {
        display: none;
    }

    .hof-td-game {
        font-size: 10px;
    }

    .hof-td-game img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 390px) {
    .header-block.center {
        display: none;
    }
}