* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0d121c;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    background-color: #171f33;
    box-shadow: inset -10px -10px 0 -30px #f0f0f0;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 1000;
    transition: all .3s;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Menu Toggle Button */
.menu-toggle {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Show/hide icons based on sidebar state */
body:not(.sidebar-expanded) .arrow-icon {
    display: none;
}

body:not(.sidebar-expanded) .hamburger-icon {
    display: block;
}

body.sidebar-expanded .arrow-icon {
    display: block;
}

body.sidebar-expanded .hamburger-icon {
    display: none;
}

/* Logo */
.header-logo,
.sidebar-logo {
    height: 32px;
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s ease;
}

.header-logo svg {
    display: none;
}

@media (max-width: 768px) {
    .header-logo svg {
        display: block;
    }

    .header-logo img{
        display: none;
    }

    .sidebar {
        padding-top: 10px !important;
    }
}

.sidebar-logo {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1001;
    transform: translateX(-300px);
    opacity: 0;
}

.lang_btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

    padding: 0 5px;
    margin-bottom: 10px;
    gap: 5px;
}

.lang_btn {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #202b46;
    border-radius: 8px;
    transition: all .3s;
    font-size: 12px;
}

body.sidebar-expanded .lang_btns{
    flex-direction: row;
    padding: 0 12px;
}

.lang_btn.active {
    background-color: #202b46;
}

body.sidebar-expanded .header-logo {
    transform: translateY(-300px);
    opacity: 0;
}

body.sidebar-expanded .sidebar-logo {
    transform: translateX(0);
    opacity: 1;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #f4d03f;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Button Styles */
.btn-signup,
.btn-login {
    height: 40px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-signup {
    background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04) padding-box, #ffd560 border-box;
    border: 1px solid transparent;
    color: #1a2332;
}

.btn-signup:hover {
    background-color: #e5c136;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffd560
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-right: 16px;
}

.language-selector button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.language-selector button.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 65px;
    width: 80px;
    height: 100vh;
    background-color: #141d2b;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Expanded sidebar */
body.sidebar-expanded .sidebar {
    width: 280px;
}

body.sidebar-expanded header {
    left: 260px;
    width: calc(100% - 260px);
}

.sidebar-nav {
    padding: 20px 0;
    transform: translateY(-90px);
}

/* Special navigation items with images */
.nav-section-special {
    padding: 0 12px;
    margin-bottom: 20px;
}

.nav-item-special {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 40px;
    position: relative;
    overflow: hidden;
}

body.sidebar-expanded .nav-item-special {
    min-height: 80px;
    padding: 12px 16px;
    flex-direction: row;
}

.nav-item-special::before,
.nav-item-special::after {
    content: "";
    opacity: .15;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.nav-item-special::after {
    background: linear-gradient(180deg, rgba(27, 28, 62, 0), #947155);
    opacity: .6;
}

.nav-item-special.quests::before {
    background: url('../images/quests.webp') no-repeat 50% / cover;
}

.nav-item-special.fortunes::before {
    background: url('../images/fortune-gem.webp') no-repeat 50% / cover;
}

.nav-item-special.bazaar::before {
    background: url('../images/bazaar.webp') no-repeat 50% / cover;
}

.nav-item-special img {
    position: absolute;
    z-index: 2;
}

body.sidebar-expanded .nav-item-special.quests img {
    right: 5px;
    width: 80px;
    height: 65px;
}

body.sidebar-expanded .nav-item-special.fortunes img {
    right: -5px;
    width: 113px;
    height: 97px;
}

body.sidebar-expanded .nav-item-special.bazaar img {
    right: 0;
    width: 112px;
    height: 70px;
}

.nav-item-special.quests img {
    right: 5px;
    width: 35px;
    height: 28px;
}

.nav-item-special.fortunes img {
    right: 0;
    width: 48px;
    height: 41px;
}

.nav-item-special.bazaar img {
    right: 0;
    width: 51px;
    height: 32px;
}

.nav-item-special {
    flex-direction: row;
    justify-content: space-between;

}

.nav-item-special:hover {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateX(2px);
}

.nav-item-special img {
    width: 65px;
    object-fit: contain;
}

.nav-item-special .nav-text {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    position: relative;
}

body.sidebar-expanded .nav-item-special .nav-text {
    display: block;
}

/* Separator */
.nav-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 12px;
}

/* Regular navigation items */
.nav-section-regular {
    padding: 0 12px;
}

/* Navigation item with dropdown */
.nav-item-dropdown {
    position: relative;
    margin-bottom: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    background: #1c253c;
    border: 1px solid transparent;
    border-radius: 8px;
}

.nav-toggle {
    margin-bottom: 0;
    justify-content: space-between;
}

body.sidebar-expanded .nav-item {
    justify-content: flex-start;
    padding: 12px 16px;
}

/* Main content layout */
.main-content {
    margin-top: 80px;
    /* below header */
    margin-left: 80px;
    /* collapsed sidebar width */
    padding: 16px;
}

body.sidebar-expanded .main-content {
    margin-left: 280px;
    /* expanded sidebar width */
}

/* Hero Swiper */
.hero-swiper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 480px;
}


@media (max-width: 1024px) {
    .hero-swiper .swiper-slide {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .hero-swiper .swiper-slide {
        height: 260px;
    }
}

.hero-swiper .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
}

.hero-swiper .slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    max-width: 60%;
}

@media (max-width: 900px) {
    .hero-swiper .slide-content {
        max-width: 75%;
    }
}

.slide-title {
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

@media (max-width: 900px) {
    .slide-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .slide-title {
        font-size: 28px;
    }
}

.slide-title .accent {
    background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.slide-subtitle {
    margin-top: 12px;
    font-size: 16px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .9);
}

.cta-btn {
    margin-top: 24px;
    height: 48px;
    padding: 0 24px;
    max-width: 220px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 16px;
    color: #142033;
    cursor: pointer;
    background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04) padding-box, #ffd560 border-box;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 223, 87, 0.25);
}

/* Swiper navigation arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 24px;
    height: 52px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    background: #1c253c;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 2;

}

.hero-swiper .swiper-button-prev {
    border-radius: 0 5px 5px 0;
}

.hero-swiper .swiper-button-next {
    border-radius: 5px 0 0 5px;
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: 800;
}

.hero-swiper .swiper-button-prev {
    left: 0;
}

.hero-swiper .swiper-button-next {
    right: 0;
}

.hero-swiper .swiper-button-disabled {
    opacity: .4;
}

/* Swiper pagination */
.swiper-pagination {
    position: relative !important;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 4px;
    height: 4px;
    cursor: pointer;
    background: #fff !important;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #e5c136 !important;
}

body.sidebar-expanded .nav-toggle {
    justify-content: space-between;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-toggle.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

body.sidebar-expanded .nav-item-content {
    justify-content: flex-start;
}

.nav-item-content svg {
    width: 24px;
    height: 24px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

body.sidebar-expanded .nav-icon {
    margin-right: 16px;
}

.nav-text {
    display: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

body.sidebar-expanded .nav-text {
    display: block;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    min-width: 20px;
    transition: transform 0.3s ease;
    display: none;
}

body.sidebar-expanded .dropdown-arrow {
    display: block;
}

.nav-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: #1a2332;
    border-radius: 8px;
    margin: 4px 0 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0px);
    position: relative;
    max-height: 400px;
}

/* Only show dropdown in expanded sidebar */
body:not(.sidebar-expanded) .dropdown-menu {
    display: none;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding-left: 20px;
}

.dropdown-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    min-width: 18px;
}

.dropdown-text {
    font-size: 13px;
    font-weight: 400;
}

/* VIP Club special styling */
.vip-club {
    color: #f4d03f;
}

.vip-club:hover {
    background-color: rgba(244, 208, 63, 0.1);
}

/* Support section */
.sidebar-footer {
    margin-top: auto;
    padding: 20px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-label {
    display: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding: 0 16px;
}

body.sidebar-expanded .support-label {
    display: block;
}

/* Main Content */
.main-content {
    margin-left: 80px;
    margin-top: 64px;
    padding: 20px;
    min-height: calc(100vh - 64px);
    transition: margin-left 0.3s ease;
}

body.sidebar-expanded .main-content {
    margin-left: 280px;
}

/* Scrollbar styling */
.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Stats bar under hero slider */
.stats-bar {
    margin-top: 12px;
    margin-left: 50px;
    border-radius: 12px;
    padding: 18px 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.stats-bar .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    position: relative;
}

.stats-bar .stat-item::after {
    position: relative;
    display: block;
    width: 1px;
    height: 64px;
    content: "";
    background: #3e4c6e;
    transform: skew(-12deg) translateX(-50%);
}

.stats-bar .icon svg {
    display: block;
    width: 34px;
    height: 34px;
}

.stats-bar .text {
    min-width: 0;
}

.stats-bar .value {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .3px;
    color: #ffffff;
    line-height: 1.2;
}

.stats-bar .label {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap;
}

.stats-bar .label .info {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    position: relative;
    top: 2px;
}

.stat-separator {
    position: relative;
    height: 64px;
    width: 8px;
    /* больше ширина под наклон */
    flex: 0 0 8px;
}

.stat-separator::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    transform: translateX(-50%) rotate(12deg);
    transform-origin: center;
    background: #3e4c6e;
    opacity: .7;
    border-radius: 1px;
}

@media (max-width: 1024px) {
    .stats-bar {
        gap: 12px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        flex-wrap: wrap;
        row-gap: 12px;
        column-gap: 16px;
        margin-left: 0;
    }
}

/* Features grid under stats bar */
.features-grid {
    margin-top: 40px;
}

/* Make Swiper inside features-grid behave as carousel */
.features-grid .swiper {
    overflow: visible;
    /* allow floating icons to show */
}

.features-grid .swiper-slide {
    height: auto;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    background-image: url("../images/feature-card-bg.png");
    background-color: #131b2b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: center;
    padding: 16px;
}

/* subtle pattern like in reference */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.06), transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.03), transparent 45%);
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(244, 208, 63, 0.25);
}

.feature-card:hover .feature-icon {
    top: -50px;
}

.feature-icon {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.feature-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Games section */
.games-section {
    margin-top: 28px;
}

.games-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.games-title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    color: #fff;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.games-title span {
    font-size: 16px;
}

.games-viewall {
    color: #ffd54d;
    font-size: 13px;
    text-decoration: none;
}

.games-swiper {
    overflow: visible;
}

.game-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #0f1624;
    border: 1px solid rgba(255, 255, 255, .06);
}


.game-cover {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 2;
}

.swiper-slide:hover .game-overlay {
    opacity: 1;
}

.game-card.overlay-visible .game-overlay {
    opacity: 1;
    pointer-events: auto;
}

.overlay-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    background: transparent;
}

.game-overlay .favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: inline-flex;
}

.game-overlay .favorite-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.game-overlay .game-info {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
}

.game-overlay .game-info .title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
}

.game-overlay .game-info .provider {
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
}

a{
    text-decoration: none;
}

.btn-play {
    padding: 15px 46px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.btn-play:hover {
    border-color: #ffe45b;
}

.link-try {
    color: #ffe45b;
    font-size: 13px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .game-cover {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .game-cover {
        height: 180px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    /* slides per view управляется Swiper брейкпоинтами */
}

@media (max-width: 992px) {
    .feature-title {
        font-size: 13px;
        margin-top: 40px
    }
}

@media (max-width: 768px) {
    /* slides per view управляется Swiper брейкпоинтами */
}

@media (max-width: 420px) {
    .feature-card {
        min-height: 88px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 16px;
    }

    .language-selector {
        display: none;
    }

    .btn-signup,
    .btn-login {
        padding: 0 16px;
        font-size: 13px;
    }

    .sidebar {
        width: 0;
        transform: translateX(-100%);
    }

    body.sidebar-expanded .sidebar {
        width: 280px;
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    body.sidebar-expanded .main-content {
        margin-left: 0;
    }

    /* Hide dropdown on mobile when sidebar is collapsed */
    body:not(.sidebar-expanded) .dropdown-menu {
        display: none !important;
    }
}

/* Promotions section */
.promotions-section {
    margin-top: 40px;
}

.promotions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 12px;
}

.promotions-header .section-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .3px;
}

.promotions-header .view-all {
    color: #ffe45b;
    text-decoration: none;
    font-size: 13px;
}

.promotions-header .view-all:hover {
    text-decoration: underline;
}

.promotions-swiper .swiper-slide {
    height: auto;
}

.promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    max-width: 320px;
    min-height: 350px;
    overflow: hidden;
    cursor: pointer;
    background-color: #1c253c;
    border-radius: 12px;
}

.mt-20 {
    margin-top: 25px;
}


.promo-card img {
    z-index: 3;
    min-height: 150px;
    max-height: 166px;
}

.promo-content {

    gap: 8px;
    z-index: 2;
    padding: 10px;
    background-color: #1c253c;
}

.promo-title {
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    white-space: normal;
    color: #fff;
    position: relative;
    padding-right: 20px;
}

.promo-title svg {
    position: absolute;
    right: -5px;
    top: 0;
}

.promo-btn {
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 10px;
    background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04) padding-box, #ffd560 border-box;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    width: 100%;
    transform: translateY(40px);
}

.promo-btn:hover {
    border-color: #ffe45b;
}

@media (max-width: 992px) {
    .promo-card {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .promo-card {
        height: 180px;
    }
}

footer {
    background-color: #000;
    margin-top: 20px;
    border-radius: 10px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 32px;
    gap: 10px;
}

.footer_wrapper .t-icon {
    width: 72px;
    height: 16px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    opacity: .35;
}

footer .divider {
    width: calc(100% - 10px);
    height: 1px;
    background-color: #fff;
    opacity: .3;
    margin: 0 auto;
}

/* Review Section */
.review-section {
    margin-top: 60px;
    padding: 0 20px;
}

.review-section a{
    text-decoration: underline;
    color: #ffd54d;
}

.review-container {

    margin: 0 auto;
    background: linear-gradient(135deg, rgba(28, 37, 60, 0.8) 0%, rgba(20, 29, 43, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.review-content {
    color: #ffffff;
    line-height: 1.7;
    position: relative;
}

.review-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.review-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #ffffff;
}

.review-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #ffe88a;
}

.review-content p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.review-content ul,
.review-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.85);
}

.review-content li {
    margin-bottom: 8px;
}

.review-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.review-content table td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.review-content table tr:first-child td {
    background: rgba(255, 191, 4, 0.1);
    font-weight: 600;
    color: #ffffff;
}

/* Expandable content */
.review-expandable {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.review-section.expanded .review-expandable {
    max-height: none;
    opacity: 1;
}

/* Gradient overlay for collapsed state */
.review-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(20, 29, 43, 0.95));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.review-section.expanded .review-content::after {
    opacity: 0;
}

/* Toggle button */
.review-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px auto 0;
    padding: 12px 32px;
    background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04);
    border: none;
    border-radius: 10px;
    color: #1a2332;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 191, 4, 0.3);
}

.review-toggle-btn .btn-icon {
    transition: transform 0.3s ease;
}

.review-section.expanded .review-toggle-btn .btn-icon {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .review-container {
        padding: 24px 20px;
    }

    .review-content h1 {
        font-size: 24px;
    }

    .review-content h2 {
        font-size: 20px;
    }

    .review-content h3 {
        font-size: 18px;
    }

    .review-content p,
    .review-content li {
        font-size: 14px;
    }

    .review-content table {
        font-size: 12px;
    }

    .review-content table td {
        padding: 8px;
    }

    /* Horizontal scroll for tables on mobile */
    .review-content {
        overflow-x: auto;
    }

  
}

@media (max-width: 480px) {
    .review-section {
        margin-top: 40px;
        padding: 0 12px;
    }

    .review-container {
        padding: 20px 16px;
    }

    .review-toggle-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .slide-subtitle{
        display: none;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 84px;
        /* space for bottom nav */
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 70px;
        background: #141d2b;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 4px;
        padding-bottom: env(safe-area-inset-bottom);
        z-index: 1100;
    }

    .mobile-bottom-nav .mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        height: 100%;
        position: relative;
        font-size: 12px;
    }

    .mobile-bottom-nav .mobile-nav-item .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .mobile-bottom-nav .mobile-nav-item .label {
        font-size: 11px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-bottom-nav .mobile-nav-item.active,
    .mobile-bottom-nav .mobile-nav-item:active {
        color: #fff;
    }

    .mobile-bottom-nav .mobile-nav-item.active .label {
        color: #fff;
    }

    /* Primary (center) item */
    .mobile-bottom-nav .nav-item--primary {
        transform: translateY(-14px);
        color: #1a2332;
    }

    .mobile-bottom-nav .nav-item--primary .icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(133deg, #ffbf04, #ffe88a 50%, #ffbf04) padding-box, #ffd560 border-box;
        border: 1px solid transparent;
        box-shadow: 0 6px 18px rgba(255, 191, 4, 0.35);
        color: #1a2332;
    }

    .mobile-bottom-nav .nav-item--primary svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 600px){
    .hero-swiper .slide-content {
        max-width: 100%;
    }

    .sidebar-nav{
        transform: translateY(-40px);
    }

    .main-content{
        padding: 5px;
    }

    .cta-btn {
        margin-top: 15px;
    }

    table.table-wrap {
        border: 0;
    }

    table.table-wrap tr.title {
        display: none;
    }

    table.table-wrap td.colored {
        background: rgba(255, 191, 4, 0.1);
        color: #fff;
    }

    table.table-wrap td.colored p {
        color: #fff;
    }

    table.table-wrap thead {
        display: none;
    }

    table.table-wrap tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #ddd;
        border-right: 1px solid #FFAF29;
    }

    table.table-wrap td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #ccc;
        border-right: 1px solid transparent;
    }

    table.table-wrap td:last-child {
        border-bottom: 0;
    }

    table.table-wrap td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }
}