/* Common Styles */
@font-face {
    font-family: 'Paperlogy';
    src: url('fonts/Paperlogy-5Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('fonts/Paperlogy-7Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('fonts/Paperlogy-9Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --bg-color: #050505;
    --header-bg: rgba(0, 0, 0, 0.88);
    --primary-gold: #d4af37;
    --primary-teal: #3da78e;
    --text-color: #ffffff;
    --card-bg: #1e1f26;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Paperlogy', 'Arita-dotum-Medium', 'GmarketSansMedium', var(--bs-font-sans-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: #d4af37;
    color: #000;
}

.text-outline {
    text-shadow:
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            2px 2px 0 #000,
            0px 3px 5px rgba(0, 0, 0, 0.8);
}

body.modal-open {
    overflow: hidden;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    pointer-events: none;
}

.sidebar-overlay.active {
    display: block;
    pointer-events: auto;
}


a {
    text-decoration: none;
    color: inherit;
}

.reaslo-bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.reaslo-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.reaslo-stage-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.reaslo-header-base-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.reaslo-stage-container {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.reaslo-stage-base {
    width: 100%;
    height: auto;
    display: block;
}

.reaslo-stage-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
}

.reaslo-stage-on {
    animation: reaslo-stage-on 6s infinite;
}

.reaslo-stage-three {
    animation: reaslo-stage-three 6s infinite;
}

.reaslo-stage-two {
    animation: reaslo-stage-two 6s infinite;
}

.reaslo-curtains {
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    object-fit: fill;
    z-index: 50;
    opacity: 0.9;
    pointer-events: none;
}

.reaslo-floating {
    animation: reaslo-floating-curtains 6s ease-in-out infinite;
}

@keyframes reaslo-floating-curtains {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes reaslo-stage-on {
    0%, 14% { opacity: 0; }
    15%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

@keyframes reaslo-stage-three {
    0%, 59% { opacity: 0; }
    60%, 70% { opacity: 1; }
    71%, 100% { opacity: 0; }
}

@keyframes reaslo-stage-two {
    0%, 79% { opacity: 0; }
    80%, 90% { opacity: 1; }
    91%, 100% { opacity: 0; }
}

.reaslo-hero {
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reaslo-subtitle-container {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.9) 50%, transparent 100%);
    padding: 8px 40px;
    width: 100%;
    max-width: 900px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.reaslo-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    color: #fff;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.main-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 24px;
    position: relative;
    z-index: 1;
}

.main-page.pc {
    margin-top: -18px;
    padding-top: 0;
}

.reaslo-header-brand {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 30px rgba(0, 0, 0, 1));
}

/* Header */
.header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    overflow-x: clip;
    overflow-y: visible;
    --reaslo-header-bar-offset: 58px;
    min-height: calc(var(--reaslo-header-bar-offset) + min(240px, 40vh) + 32px);
}

.header-auth {
    position: absolute;
    top: var(--reaslo-header-bar-offset);
    left: 0;
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px max(16px, calc((100vw - 1248px) / 2));
    z-index: 30;
    pointer-events: none;
}

.header-auth > * {
    pointer-events: auto;
}

.header-auth:has(.header-user-stats) {
    padding-left: max(20px, calc((100vw - 1700px) / 2));
    padding-right: max(20px, calc((100vw - 1700px) / 2));
    top: calc(var(--reaslo-header-bar-offset) + 55px);
}

.header-left-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-user-id {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
}

.lv-icon {
    height: 16px;
    filter: brightness(0.9);
}

.user-nick {
    font-weight: 500;
}

.header-letter-icon {
    color: #888;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    padding-top: 5px;
}

.header-letter-icon:hover {
    color: #fff;
}

.header-top-buttons {
    display: flex;
    gap: 4px;
}

.header-top-buttons button {
    height: 28px;
    padding: 0 12px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.h-btn-charge {
    background: #249fb0;
}

.h-btn-withdraw {
    background: #b03434;
}

.h-btn-history {
    background: #3b445b;
}

.h-btn-partner {
    background: #2196F3 !important;
}

.header-user-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    margin-left: auto;
    flex-shrink: 0;
}

.h-stat-item {
    font-weight: 500;
    white-space: nowrap;
}

.h-blue-val {
    color: #4da9ff;
    margin: 0 4px;
    font-weight: 700;
}

.h-btn-convert {
    height: 24px;
    padding: 0 8px;
    background: #d32f2f;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 4px;
}

.h-btn-convert:hover {
    background: #f44336;
}

.h-logout-link {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    margin-left: 10px;
    white-space: nowrap;
}

.h-logout-link:hover {
    color: var(--primary-gold);
}

.header-container::before {
    content: none;
}

.header-container::after {
    content: none;
}

.header-nav {
    min-height: 72px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px max(16px, calc((100vw - 1248px) / 2));
    position: absolute;
    top: var(--reaslo-header-bar-offset);
    left: 0;
    width: 100%;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.header-nav .header-menu-left,
.header-nav .header-menu-right {
    flex: 1;
}

.header-right-section {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.header-auth > .header-right-section {
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    transform: translateX(calc(-50% + 420px));
    justify-content: center;
    margin: 0;
    z-index: 35;
    gap: 10px;
}

.header-auth > .header-right-section .btn-login,
.header-auth > .header-right-section .btn-join {
    height: 36px;
    padding: 0 22px;
    font-size: 14px;
    line-height: 36px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    width: 100%;
}

.header-menu-left {
    justify-self: end;
}

.header-menu-left a:first-child {
    margin-left: 70px;
}

.header-menu-left a:nth-child(2) {
    margin-right: 70px;
}

.header-menu-right {
    justify-self: start;
}

.header-logo {
    justify-self: center;
}

.header-menu a {
    font-size: 15px;
    font-weight: 700;
    color: #ccc;
    transition: color 0.2s;
    line-height: 1.1;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}

.header-menu a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-menu a:hover::after {
    opacity: 1;
}

.header-menu a small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

.header-menu a:hover {
    color: var(--primary-gold);
}

.header-logo {
    flex: 0 0 auto;
    text-align: center;
    width: auto;
    max-width: min(720px, 58vw);
    position: relative;
    z-index: 40;
}

.header-logo img {
    height: 65px;
}

.header-logo .reaslo-header-brand {
    height: auto;
    max-height: min(195px, 32vh);
    width: auto;
    max-width: min(720px, 90vw);
    object-fit: contain;
}

.main-banner {
    background: #0f1116;
}

.main-banner .slide img,
.main-banner .slide video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.btn-login, .btn-join {
    height: 28px;
    padding: 0 14px;
    border-radius: 0;
    font-weight: bold;
    cursor: pointer;
    border: none;
    font-size: 12px;
    line-height: 28px;
}

.btn-login {
    background-color: var(--primary-gold);
    color: #000;
}

.btn-join {
    background-color: #2b2f34;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Banner */
.main-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-page.pc .main-banner-jackpot {
    overflow: visible;
    display: flex;
    justify-content: center;
    padding: 0 max(16px, calc((100vw - 1248px) / 2));
    background: transparent;
}

.main-page.pc .main-banner-jackpot .jackpot-banner {
    margin: 0 auto;
    flex-shrink: 0;
}

.main-banner img, .main-banner video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.main-banner .slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-banner .slide img,
.main-banner .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Provider Carousel */
.provider-carousel-container {
    padding: 24px 0 10px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-flow: wrap;
    width: 100%;
    justify-content: center;
}

.banner-logos-container {
    display: none;
}

.logo-item {
    flex: 0 0 auto;
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 180px;
    /*max-height: 60px;*/
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(1.1);
}

@media (max-width: 960px) {
    .banner-logos-container {
        padding: 10px 0;
        margin-bottom: 15px;
    }

    .logo-item {
        width: 160px;
        height: 60px;
    }

    .logo-item img {
        max-width: 130px;
        max-height: 45px;
    }
}

.carousel-row {
    display: flex;
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.carousel-track {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    white-space: normal;
    padding: 0;
    justify-content: center;
    width: 100%;
    animation: none !important;
    transform: none !important;
}

.carousel-item {
    flex: 0 0 auto;
}

.carousel-item img {
    width: 124px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    filter: saturate(0.9);
    opacity: 0.8;
    transition: opacity 0.2s, filter 0.2s;
    margin-left: 24px;
    margin-right: 24px;
}

.carousel-item:hover img {
    opacity: 0.9;
    filter: saturate(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.scroll-left .carousel-track {
    animation: scroll-left 40s linear infinite;
}

.scroll-right .carousel-track {
    animation: scroll-right 40s linear infinite;
}

/* Category Boxes */
.category-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    /*padding: 40px 20px;*/
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.main-page.pc .category-section {
    max-width: 684px;
    width: 100%;
    padding: 12px 16px 8px;
    margin-top: 0;
    box-sizing: border-box;
    gap: 16px;
}

.main-page.pc .category-card {
    flex: 0 1 313px;
    padding: 11px;
    border-radius: 20px;
}

.main-page.pc .category-card::before {
    inset: 5px;
    border-radius: 16px;
}

.main-page.pc .category-card::after {
    border-radius: 20px;
}

.main-page.pc .reaslo-card-shell {
    padding: 13px 13px 14px;
    border-radius: 16px;
}

.main-page.pc .reaslo-card-title {
    min-height: 40px;
    font-size: 22px;
    padding: 2px 7px 5px;
}

.main-page.pc .reaslo-card-media {
    max-width: 306px;
    max-height: 396px;
    padding: 5px;
    border-radius: 11px;
}

.main-page.pc .reaslo-card-media::after {
    inset: 5px;
    border-radius: 7px;
}

.main-page.pc .reaslo-card-desc {
    margin-top: 13px;
    min-height: 49px;
    font-size: 20px;
}

.main-page.pc .reaslo-card-action {
    margin-top: 7px;
    height: 38px;
    font-size: 15px;
}

.main-page.pc .reaslo-card-arrow {
    font-size: 16px;
}

.main-page.pc .category-card:hover {
    transform: translateY(-9px);
}

.category-card {
    flex: 0 1 348px;
    border-radius: 22px;
    overflow: visible;
    position: relative;
    cursor: pointer;
    padding: 12px;
    min-height: 0;
    background:
            radial-gradient(circle at top, rgba(255, 173, 68, 0.2), transparent 45%),
            linear-gradient(180deg, rgba(65, 19, 6, 0.98), rgba(26, 7, 3, 0.96));
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.78), 0 0 22px rgba(255, 140, 58, 0.2);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.9), 0 0 28px rgba(255, 182, 84, 0.28);
}

.category-card::before,
.category-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.category-card::before {
    inset: 6px;
    border-radius: 18px;
    background:
            radial-gradient(circle, rgba(255, 246, 190, 0.98) 0 4px, rgba(255, 164, 46, 0.95) 4px 7px, transparent 7px) top center / 24px 18px repeat-x,
            radial-gradient(circle, rgba(255, 246, 190, 0.98) 0 4px, rgba(255, 164, 46, 0.95) 4px 7px, transparent 7px) bottom center / 24px 18px repeat-x,
            radial-gradient(circle, rgba(255, 246, 190, 0.98) 0 4px, rgba(255, 164, 46, 0.95) 4px 7px, transparent 7px) left center / 18px 24px repeat-y,
            radial-gradient(circle, rgba(255, 246, 190, 0.98) 0 4px, rgba(255, 164, 46, 0.95) 4px 7px, transparent 7px) right center / 18px 24px repeat-y;
    filter: drop-shadow(0 0 6px rgba(255, 171, 61, 0.85)) drop-shadow(0 0 12px rgba(255, 140, 58, 0.55));
    z-index: 2;
}

.category-card::after {
    inset: 0;
    border-radius: 22px;
    border: 2px solid rgba(255, 177, 74, 0.65);
    box-shadow: inset 0 0 0 2px rgba(85, 22, 3, 0.7), 0 0 18px rgba(255, 122, 36, 0.22);
    z-index: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.35s ease;
}

.category-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.category-card:hover .reaslo-card-media video {
    transform: translate(-50%, -50%) scale(1.1);
    filter: saturate(1.05);
}

.category-card-slot {
    --reaslo-card-main: #ff6d1b;
    --reaslo-card-main-soft: rgba(255, 109, 27, 0.8);
    --reaslo-card-bg-top: rgba(99, 31, 9, 0.98);
    --reaslo-card-bg-bottom: rgba(28, 8, 3, 0.96);
    --reaslo-card-button-top: #d63f2e;
    --reaslo-card-button-bottom: #8c1d17;
    background:
            radial-gradient(circle at top, rgba(255, 173, 68, 0.22), transparent 45%),
            linear-gradient(180deg, var(--reaslo-card-bg-top), var(--reaslo-card-bg-bottom));
}

.category-card-pacchinko {
    --reaslo-card-main: #b961ff;
    --reaslo-card-main-soft: rgba(185, 97, 255, 0.8);
    --reaslo-card-bg-top: rgba(58, 18, 93, 0.98);
    --reaslo-card-bg-bottom: rgba(19, 5, 34, 0.96);
    --reaslo-card-button-top: #8d2dd8;
    --reaslo-card-button-bottom: #5b1796;
    background:
            radial-gradient(circle at top, rgba(185, 97, 255, 0.24), transparent 45%),
            linear-gradient(180deg, var(--reaslo-card-bg-top), var(--reaslo-card-bg-bottom));
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.78), 0 0 22px rgba(185, 97, 255, 0.26);
}

.category-card-pacchinko::before {
    background:
            radial-gradient(circle, rgba(244, 223, 255, 0.98) 0 4px, rgba(190, 114, 255, 0.95) 4px 7px, transparent 7px) top center / 24px 18px repeat-x,
            radial-gradient(circle, rgba(244, 223, 255, 0.98) 0 4px, rgba(190, 114, 255, 0.95) 4px 7px, transparent 7px) bottom center / 24px 18px repeat-x,
            radial-gradient(circle, rgba(244, 223, 255, 0.98) 0 4px, rgba(190, 114, 255, 0.95) 4px 7px, transparent 7px) left center / 18px 24px repeat-y,
            radial-gradient(circle, rgba(244, 223, 255, 0.98) 0 4px, rgba(190, 114, 255, 0.95) 4px 7px, transparent 7px) right center / 18px 24px repeat-y;
    filter: drop-shadow(0 0 6px rgba(180, 99, 255, 0.85)) drop-shadow(0 0 12px rgba(126, 74, 237, 0.55));
}

.category-card-pacchinko::after {
    border-color: rgba(191, 120, 255, 0.7);
    box-shadow: inset 0 0 0 2px rgba(40, 8, 67, 0.72), 0 0 18px rgba(185, 97, 255, 0.22);
}

.reaslo-card-shell {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background:
            linear-gradient(180deg, rgba(26, 6, 4, 0.36), rgba(0, 0, 0, 0.22) 8%, rgba(0, 0, 0, 0.6) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 10%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.reaslo-card-title {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2px 8px 6px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.reaslo-card-media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    max-width: 340px;
    max-height: 440px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
    padding: 6px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.reaslo-card-media video {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    transform: translate(-50%, -50%) scale(1.06);
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.35s ease;
}

.reaslo-card-media::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

.reaslo-card-desc {
    margin-top: 14px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 6px;
}

.reaslo-card-action {
    margin-top: 8px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 900;
    background: linear-gradient(180deg, var(--reaslo-card-button-top), var(--reaslo-card-button-bottom));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1), 0 6px 12px rgba(0, 0, 0, 0.35);
}

.reaslo-card-arrow {
    font-size: 18px;
    transform: translateY(1px);
}

.category-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.category-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.btn-start {
    background: linear-gradient(#fff4c2, #e7c97a);
    padding: 8px 18px;
    border-radius: 0;
    color: #111;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

/* Progressive Jackpot */
.jackpot-banner {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
    max-width: 1200px;
    border-radius: 0;
    background: transparent;
    border: none;
}

.jackpot-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.jackpot-inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 26px;
}

.jackpot-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jackpot-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.jackpot-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jackpot-amount {
    display: flex;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-gold);
    gap: 5px;
}

.jackpot-currency {
    margin-right: 10px;
    color: #d7b86a;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Jackpot spinning animation logic */
.jackpot-digits {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #ffd37c;
    font-weight: 900;
    font-size: 44px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.jackpot-digit {
    overflow: hidden;
    height: 52px;
    width: 28px;
    background: transparent;
    border-radius: 0;
    border: none;
}

.digit-container {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.digit-container span {
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #070707;
    padding: 50px 0;
    text-align: center;
}

footer.reaslo-footer {
    position: relative;
    width: 100%;
    padding: 30px 10px 50px;
    background-image: var(--reaslo-footer-bg);
    background-size: cover;
    background-position: bottom center;
    border-top: 3px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.9);
    z-index: 10;
}

footer.reaslo-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 0;
    pointer-events: none;
}

.reaslo-footer > * {
    position: relative;
    z-index: 1;
}

.reaslo-vendor-title {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 18px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.reaslo-footer-mob .reaslo-vendor-title {
    padding: 25px 0 12px;
    font-size: 22px;
}

.reaslo-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reaslo-footer-content.mob {
    padding: 20px;
}

.reaslo-lang-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.reaslo-lang-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    padding: 8px 20px;
    font-family: inherit;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    font-size: 13px;
}

.reaslo-lang-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.reaslo-footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.reaslo-footer-copy.mob {
    font-size: 12px;
    margin-top: 10px;
}

.footer-logo img {
    height: auto;
    max-height: 48px;
    width: auto;
    max-width: 200px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-vendor-title {
    font-size: 18px;
    margin-bottom: 30px;
    color: #888;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-partners img {
    height: 30px;
    opacity: 0.5;
}

.footer-lang {
    margin-bottom: 20px;
}

.footer-copyright {
    color: #555;
    font-size: 14px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-box.auth-modal {
    width: 560px;
    max-width: calc(100vw - 40px);
    max-height: 92vh;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #0b1426 0%, #081225 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.auth-titlebar {
    height: 46px;
    background: #0a1222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.auth-tabs {
    display: flex;
    gap: 0;
    padding: 0 24px;
    height: 46px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
}

.auth-tab {
    flex: 1 1 0;
    height: 46px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-size: 14px;
}

.auth-tab.active {
    color: #f1c84c;
    border-bottom-color: #f1c84c;
}

.auth-panel {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px 48px 34px;
}

.auth-panel-login {
    overflow-y: hidden;
}

.modal-logo {
    text-align: center;
    margin: 26px 0 10px;
    flex: 0 0 auto;
}

.modal-logo img {
    height: 56px;
}

.auth-panel p {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.auth-field-row {
    margin-bottom: 12px;
}

.auth-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.auth-inline {
    display: flex;
    gap: 10px;
}

.auth-inline > input,
.auth-inline > select {
    flex: 1 1 auto;
    min-width: 0;
}

.auth-side-btn {
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #2b2f34;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
}

.auth-select {
    height: 42px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0;
    padding: 0 10px;
}

.modal-box {
    background: var(--card-bg);
    width: 400px;
    border-radius: 0;
    padding: 0;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.modal-form input {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0 16px;
    margin-bottom: 12px;
    color: #fff;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 14px;
}

.modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.modal-form input:focus {
    outline: none;
    border-color: #2d7cff;
    box-shadow: 0 0 0 2px rgba(45, 124, 255, 0.25);
}

.modal-form button {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    background: #249fb0;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
}

.modal-form button:active {
    transform: translateY(1px);
}

@media (max-width: 960px) {
    .modal-box.auth-modal {
        width: 520px;
    }

    .auth-panel {
        padding: 0 22px 26px;
    }
}

.pc {
    display: block !important;
}

.mob {
    display: none !important;
}

@media (max-width: 960px) {
    .pc {
        display: none !important;
    }

    .mob {
        display: block !important;
    }
}

/* Mobile sidebars must remain closed until JS opens them */
#sidebar.mob,
#sidebar-right.mob {
    display: none !important;
}

#sidebar.mob.active,
#sidebar-right.mob.active {
    display: flex !important;
}

#container, #contents, #main_content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent;
}

@media (min-width: 961px) {
    #container:has(.main-page.pc) {
        margin-top: -72px;
        position: relative;
        z-index: 2;
    }

    #container:has(.main-page.pc) #main_content {
        margin-top: 36px;
        position: relative;
        z-index: 1;
    }
}

/* Casino & Slot Pages */
.sub_content_arr {
    padding: 30px max(16px, calc((100vw - 1248px) / 2));
    min-height: 80vh;
}

.sub_content_arr .submain-img {
    display: none;
}

.sub_content_arr .companys {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
}

.sub_content_arr .companys h6 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 26px 0;
    padding: 0;
    text-shadow: none;
}

.sub_content_arr .companys h6 small {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 10px;
}

.sub_content_arr .companys ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub_content_arr .companys li {
    width: 100%;
    padding: 0;
    margin: 0;
    float: none;
    display: block;
}

.sub_content_arr .companys-title,
.sub_content_arr .companys-title2 {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #1a1d24;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    border-radius: 0;
}

.sub_content_arr .companys-title:hover,
.sub_content_arr .companys-title2:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sub_content_arr .companys-title img,
.sub_content_arr .companys-title2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sub_content_arr .companys-title:hover img,
.sub_content_arr .companys-title2:hover img {
    transform: scale(1.05);
}

.sub_content_arr .companys-title span,
.sub_content_arr .companys-title2 span {
    display: none;
}

.sub_content_arr .companys-title2 a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Mobile Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #16202f;
    z-index: 10001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
}

.sidebar-user-section {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-user-section.guest {
    cursor: pointer;
    background: #131313;
}

.sidebar-user-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #232a35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.sidebar-user-lvl img {
    height: 20px;
    display: block;
}

.sidebar-username {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.sidebar-user-section.guest i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-user-stats {
    margin-top: 15px;
}

.sidebar-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.sidebar-stat-row:last-child {
    border-bottom: none;
}

.sidebar-stat-row .label {
    font-size: 13px;
    color: #3da78e;
}

.sidebar-stat-row .val {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

.sidebar-stat-row .val i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.sidebar-logout-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    cursor: pointer;
}

.sidebar-logout-row i {
    font-size: 16px;
}

.sidebar-menu-container {
    flex: 1;
    overflow-y: auto;
}

.sidebar-group-label {
    padding: 15px 15px 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    background: #080f1c;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-accordion {
    margin-top: 0;
}

.sidebar-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.sidebar-acc-header i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.sidebar-acc-item.active .sidebar-acc-header {
    color: #3da78e;
}

.sidebar-acc-item.active .sidebar-acc-header i {
    transform: rotate(180deg);
}

.sidebar-acc-content {
    max-height: 0;
    overflow: hidden;
    background: #111823;
    transition: max-height 0.3s ease-out;
}

.sidebar-acc-item.active .sidebar-acc-content {
    max-height: 500px;
}

.sidebar-acc-inner {
    padding: 5px 0;
}

.sidebar-acc-content a {
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}


/* Small Desktop/Tablet */
@media (max-width: 1280px) and (min-width: 961px) {
    .header-stats-group {
        gap: 12px;
    }

    .header-stat-label {
        font-size: 11px;
    }

    .header-stat-value {
        font-size: 13px;
    }

    .header-action-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header-nickname {
        font-size: 13px;
    }

    .header-convert-btn {
        padding: 3px 8px;
        font-size: 10px;
    }

    .header-logout-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 960px) {
    /*body {*/
    /*    padding-bottom: 70px;*/
    /*}*/
    .header-container {
        padding: 0;
    }

    .header-auth,
    .header-nav {
        display: none !important;
    }

    .header-menu {
        display: none;
    }

    .header-logo img {
        height: 30px;
    }

    .category-section {
        flex-direction: column;
        align-items: center;
    }

    .main-banner {
        margin-bottom: -40px;
        height: auto;
        overflow: visible;
    }

    .category-card {
        width: min(100%, 400px);
        min-height: 0;
        padding: 14px;
    }

    .reaslo-card-shell {
        min-height: 0;
        padding: 14px 14px 16px;
    }

    .reaslo-card-title {
        min-height: 48px;
        font-size: 24px;
        padding-bottom: 8px;
    }

    .reaslo-card-media {
        max-width: min(340px, 100%);
        max-height: min(440px, 56vw);
    }

    .reaslo-card-desc {
        min-height: 46px;
        font-size: 18px;
    }

    .reaslo-card-action {
        height: 50px;
        font-size: 20px;
    }

    .main-banner::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 140px;
        background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, #050505 100%);
        pointer-events: none;
        z-index: 2;
    }

    .main-banner .slide {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .main-banner img,
    .main-banner video,
    .main-banner .slide img,
    .main-banner .slide video {
        position: relative;
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        object-fit: contain;
        object-position: top center;
        transform: scale(2.4);
        transform-origin: top center;
    }

    .category-section {
        position: relative;
        z-index: 2;
    }

    .jackpot-amount {
        font-size: 24px;
    }

    .provider-carousel-container {
        padding: 10px 0 6px;
    }

    .carousel-item {
        flex: 0 0 33.333%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-item img {
        width: 96px;
        height: auto;
        margin: 8px 0;
    }

    .jackpot-banner {
        height: auto;
        width: 100%;
        max-width: none;
    }

    .jackpot-inner {
        padding: 0 14px;
    }

    .jackpot-title {
        font-size: 14px;
    }

    .jackpot-digits {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .jackpot-digit {
        height: 26px;
        width: 14px;
    }

    .digit-container span {
        height: 26px;
        line-height: 26px;
    }

    .footer-partners img {
        height: 20px;
    }

    .mobile-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #1a1b22;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        border-top: 1px solid #333;
        z-index: 1000;
    }

    .mobile-nav-item {
        text-align: center;
        font-size: 10px;
        color: #888;
    }

    .mobile-nav-item i {
        font-size: 20px;
        display: block;
        margin-bottom: 5px;
    }

    .mobile-nav-item.active {
        color: var(--primary-gold);
    }

    .sub_content_arr {
        padding: 20px 15px;
    }

    .sub_content_arr .companys h6 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .sub_content_arr .companys h6 small {
        font-size: 14px;
        margin-left: 8px;
    }

    .sub_content_arr .companys ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sub_content_arr .companys-title:hover,
    .sub_content_arr .companys-title2:hover {
        transform: none;
    }

    .hader_arr {
        position: sticky;
        top: 0;
        z-index: 1002;
        height: 56px !important;
        background: rgba(5, 5, 5, 0.96) !important;
        padding: 0 14px !important;
    }

    .hader_arr.mob {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        column-gap: 10px;
    }

    .hader_arr.mob .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: center;
        margin: 0 !important;
        min-width: 0;
        position: relative;
        z-index: 1;
    }

    .hader_arr.mob .topbtn-arr {
        display: flex !important;
        justify-content: flex-end;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        position: relative;
        z-index: 1;
    }

    .hader_arr.mob .topbtn-arr button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        white-space: nowrap !important;
    }

    .hader_arr .left-togle {
        font-size: 24px !important;
        color: #fff !important;
        position: relative;
        z-index: 9999;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .hader_arr .navbar-brand img {
        height: 28px !important;
    }

    .hader_arr .topbtn-arr {
        gap: 10px !important;
        align-items: center;
    }

    .hader_arr .topbtn-arr button {
        background: transparent !important;
        color: #fff !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        line-height: 1;
    }

    .hader_arr .topbtn-arr button.partner-btn {
        background: #2196F3 !important;
        color: #fff !important;
        padding: 5px 10px !important;
        border-radius: 4px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
    }

    .hader_arr .topbtn-arr .login-modal {
        color: var(--primary-gold) !important;
    }

    .top-info-mm {
        height: auto !important;
        background: #0f1116 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 6px 8px !important;
    }

    .top-info-mm ul {
        justify-content: space-between !important;
        gap: 6px !important;
        height: auto !important;
    }

    .top-info-mm li {
        flex: 1 1 0;
        text-align: center;
    }

    .top-info-mm li a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 11px !important;
        color: #cbd0d6 !important;
    }

    .top-info-mm li a i {
        color: var(--primary-gold);
    }

    .top-info-mm li a span {
        color: #fff;
        font-weight: 700;
    }

    .mobile-nav {
        height: 60px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        align-items: center;
    }

    .mobile-nav-item {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .mobile-nav-item i {
        margin-bottom: 0;
        font-size: 18px;
    }

    footer.pc {
        display: block !important;
    }

    footer.mob {
        display: none !important;
    }

    footer.pc .vendor-title {
        padding-top: 24px !important;
        padding-bottom: 12px !important;
        font-size: 20px !important;
    }

    footer.pc .footer-content {
        padding: 26px 16px 20px !important;
    }

    footer.pc .footer-logo img {
        height: 32px !important;
    }

    footer.pc .footer-lang > div,
    footer.pc .reaslo-lang-row {
        gap: 8px !important;
    }

    footer.pc .footer-lang button,
    footer.pc .reaslo-lang-btn {
        font-size: 12px !important;
        padding: 4px 8px !important;
    }

    footer.pc .footer-copyright {
        font-size: 12px !important;
    }
}

/* BBS / Letter / QnA Modern Styles */
.sub_content_arr {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
    padding: 60px 16px 100px;
    min-height: 80vh;
    background-color: #0a1424;
}

.page-header-modern {
    margin-bottom: 30px;
}

.page-header-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-align: left;
}

.page-header-modern .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.sub-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.bbs-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    gap: 0;
    background: rgba(0, 0, 0, 0.2);
}

.bbs-tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.bbs-tab:last-child {
    border-right: none;
}

.bbs-tab.active {
    color: var(--primary-gold);
    font-weight: 700;
}

.bbs-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
}

.bbs-list-modern {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Increased margin between items */
}

.bbs-item {
    background: #16202f;
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 12px;
}

.bbs-item:hover {
    background: #1c2a3d;
}

.bbs-item-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 6px;
}

.bbs-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.bbs-checkbox.active {
    background: #289caf;
    border-color: #289caf;
}

.bbs-checkbox i {
    color: #fff;
    font-size: 12px;
    display: none;
}

.bbs-checkbox.active i {
    display: block;
}

.bbs-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.bbs-badge.read {
    background: #b03434;
}

.bbs-badge.unread {
    background: #289caf;
}

.bbs-badge.status-wait {
    background: #555;
}

.bbs-badge.status-done {
    background: #289caf;
}

.bbs-badge.status-checked {
    background: #3b445b;
}

.bbs-title {
    flex: 1;
    font-size: 14px;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bbs-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.bbs-content-box {
    display: none;
    padding: 24px 16px;
    background: #0d1a2d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd0d6;
    line-height: 1.6;
    font-size: 14px;
}

.bbs-content-box img {
    max-width: 100%;
    height: auto;
}

.bbs-actions {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.bbs-actions button, .bbs-actions a {
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #3b445b;
}

.btn-delete-all {
    background: #b03434 !important;
}

.btn-write {
    background: #289caf !important;
}

.btn-account-ask {
    background: #3da78e !important;
}

.btn-delete-all,
.btn-write,
.btn-account-ask {
    border-radius: 4px;
}

/* Modern Pagination */
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 4px;
}

.pagination-modern button, .pagination-modern a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1b22;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

.pagination-modern .active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
    font-weight: 700;
}

.pagination-modern .disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* QnA Header Modern */
.qna-header-modern {
    text-align: center;
    margin-bottom: 30px;
}

.qna-sub-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.qna-btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media (min-width: 961px) {
    .qna_wrap .page-header-modern .header-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .qna_wrap .page-header-modern h3 {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }


    .qna_wrap .qna-header-modern {
        display: none;
    }
}

.qna-btn-group button {
    height: 44px;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 960px) {
    .qna-btn-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .qna-btn-group button {
        width: 70%;
        height: 50px;
        font-size: 16px;
    }

    .qna-sub-text {
        font-size: 15px;
    }
}

/* QnA Form Modern (PC Specific Side-by-Side Labels) */
.qna-form-modern {
    background: #16202f;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

.form-row:last-of-type {
    border-bottom: none;
}

.form-label {
    width: 160px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    margin-bottom: 0;
}

.form-input-container {
    flex: 1;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.form-input-modern {
    width: 100%;
    background: #252f41;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
}

.form-textarea-modern {
    min-height: 300px;
    resize: none;
}

@media (max-width: 960px) {
    .form-row {
        flex-direction: column;
    }

    .form-label {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        background: transparent;
        color: #888;
        font-size: 12px;
    }

    .form-input-container {
        padding: 0 16px 16px 16px;
    }

    .form-textarea-modern {
        min-height: 200px;
    }
}

/* PC Table Style */
.pc-table-modern {
    width: 100%;
    border-collapse: collapse;
    color: #ccc;
    background: #16202f;
    border-radius: 8px;
    overflow: hidden;
}

.pc-table-modern th {
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-table-modern td {
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 14px;
    text-align: center;
    color: #ddd;
}

.pc-table-modern tr:last-child td {
    border-bottom: none;
}

.pc-table-modern tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.pc-table-modern .subject {
    text-align: left;
    padding-left: 30px;
    color: #fff;
    cursor: pointer;
}

.pc-table-modern .status-wait {
    color: #888;
}

.pc-table-modern .status-done {
    color: #289caf;
}

.pc-table-modern .status-checked {
    color: #3b445b;
}

/* Event Modern */
.event-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card-modern {
    background: #16202f;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.event-card-modern:hover {
    transform: translateY(-4px);
}

.event-img-modern {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.event-info-modern {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-title-modern {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-event-detail {
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .sub_content_arr {
        padding: 30px 15px 60px;
    }

    .page-header-modern {
        display: none;
    }

    .event-grid-modern {
        grid-template-columns: 1fr;
    }

    .bbs-tab {
        font-size: 13px;
        padding: 12px 0;
    }

    .bbs-date {
        display: none;
    }

    .sub-title-modern {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .pc-only {
        display: none !important;
    }

    .mob-only {
        display: block !important;
    }
}

@media (min-width: 961px) {
    .mob-only {
        display: none !important;
    }
}

/* Default PC view */
.pc-only {
    display: block;
}

.mob-only {
    display: none;
}

.info-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 60px;
    color: #fff;
    background: #0a1424;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #cbd0d6;
    white-space: nowrap;
}

.info-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.info-section {
    background: #16202f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.info-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.info-subtitle {
    text-align: center;
    color: #8e99b3;
    margin-bottom: 24px;
}

.info-profile-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-profile-head img {
    width: 40px;
    height: 40px;
}

.info-user-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 120px 1fr);
    gap: 16px 24px;
    align-items: center;
}

.info-label {
    color: #8e99b3;
    font-size: 13px;
    white-space: nowrap;
}

.info-value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.info-note {
    color: #8e99b3;
    font-size: 12px;
    margin-bottom: 16px;
}

/* Cash In/Out/Log Shared Styles */
.cash-page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cash-top-nav {
    display: flex;
    background: #16202f;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.cash-top-tab {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #8e99b3;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.cash-top-tab.active {
    color: var(--primary-gold);
}

.cash-top-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
}

.cash-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cash-page-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.btn-bank-ask {
    background: #289caf;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.cash-form-section {
    background: #16202f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
}

.cash-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.cash-form-label {
    width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: #cbd0d6;
}

.cash-form-label span {
    color: #ff4d4d;
    margin-left: 4px;
}

.cash-input-box {
    flex: 1;
    position: relative;
}

.cash-input-box input {
    width: 100%;
    height: 48px;
    background: #252f41;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0 16px;
    color: #fff;
    font-size: 14px;
}

.cash-input-box .unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e99b3;
    font-size: 14px;
}

.cash-unit-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 12px;
}

.cash-note-box {
    margin-top: 16px;
    background: #0d1a2d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 14px 16px;
    color: #cbd0d6;
    font-size: 12px;
    line-height: 1.6;
}

.btn-unit {
    background-color: rgb(40, 156, 175);
    border: 1px solid transparent;
    border-radius: 0.3rem;
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    margin: 0.15rem;
    min-width: 62px;
    padding: 0.5rem 0px;
    cursor: pointer;
}

.btn-unit.reset {
    background-color: rgb(40, 156, 175);
}

.cash-note-small {
    text-align: center;
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 12px;
}

.cash-submit-container {
    margin-top: 30px;
    text-align: center;
}

.btn-cash-submit {
    min-width: 240px;
    height: 50px;
    background: #2a99a6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.cash-pwd-box {
    max-width: 500px;
    margin: 60px auto;
    text-align: center;
}

.cash-pwd-note {
    background: #0d1a2d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    color: #ff4d4d;
    font-size: 14px;
}

.cash-table-modern {
    width: 100%;
    border-collapse: collapse;
    background: #16202f;
    border-radius: 8px;
    overflow: hidden;
}

.cash-table-modern th {
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: #8e99b3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cash-table-modern td {
    height: 50px;
    padding: 0 10px;
    text-align: center;
    font-size: 13px;
    color: #cbd0d6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cash-status-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.status-wait {
    background: #555;
    color: #fff;
}

.status-done {
    background: #289caf;
    color: #fff;
}

.status-cancel {
    background: #b03434;
    color: #fff;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.info-form-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    align-items: center;
}

.info-form-label {
    color: #8e99b3;
    font-size: 14px;
}

.info-form-input {
    width: 100%;
    padding: 12px;
    background: #252a3d;
    border: 1px solid #3e455e;
    border-radius: 6px;
    color: #fff;
}

.info-primary-btn {
    margin: 20px auto 0;
    display: block;
    min-width: 200px;
    background: #2a99a6;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.xchg-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 16px 60px;
    color: #fff;
}

.xchg-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.xchg-title {
    font-size: 18px;
    font-weight: 700;
    color: #cbd0d6;
    white-space: nowrap;
}

.xchg-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.xchg-panels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.xchg-panel {
    background: #16202f;
    border: 1px solid #2d2b45;
    border-radius: 12px;
    padding: 20px;
    min-width: 260px;
    flex: 1;
    max-width: 420px;
}

.xchg-panel-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.xchg-panel-title.accent {
    color: #3da78e;
}

.xchg-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.xchg-row:last-child {
    margin-bottom: 0;
}

.xchg-label {
    color: #cbd0d6;
    font-size: 14px;
}

.xchg-value {
    color: #fff;
    font-weight: 700;
    background: #101521;
    border: 1px solid #2a3244;
    padding: 10px 14px;
    border-radius: 8px;
    min-width: 120px;
    text-align: right;
}

.xchg-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a3244;
    color: #cbd0d6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.xchg-input-section {
    text-align: center;
    margin-bottom: 24px;
}

.xchg-input-label {
    color: #8e99b3;
    margin-bottom: 8px;
}

.xchg-input-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.xchg-input-row input {
    max-width: 420px;
    width: 100%;
    padding: 12px;
    background: #252a3d;
    border: 1px solid #3e455e;
    border-radius: 6px;
    color: #fff;
    text-align: center;
}

.xchg-max-btn {
    padding: 12px 18px;
    border: 1px solid #3da78e;
    background: transparent;
    color: #3da78e;
    border-radius: 6px;
    cursor: pointer;
    min-width: 80px;
}

.xchg-reset-btn {
    padding: 12px 18px;
    border: 1px solid #3e455e;
    background: #2f374a;
    color: #cbd0d6;
    border-radius: 6px;
    cursor: pointer;
    min-width: 80px;
}

.xchg-note {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 10px;
}

.xchg-submit {
    display: block;
    margin: 18px auto 0;
    padding: 12px 24px;
    background: #2a99a6;
    border: none;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    min-width: 200px;
}

.xchg-history {
    margin-top: 30px;
}

.xchg-history-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.xchg-history table {
    width: 100%;
    border-collapse: collapse;
}

.xchg-history th, .xchg-history td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: #cbd0d6;
}

.xchg-history .btnDel {
    background: #3b445b;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
}

.xchg-history .btn-delete-all {
    height: 28px;
    padding: 0 10px;
    font-size: 11px;
}

.xchg-history .paging_box {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    gap: 4px;
}

.xchg-history .paging_box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.xchg-history .paging_box li {
    display: inline-flex;
}

.xchg-history .paging_box li a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1b22;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.xchg-history .paging_box li.active a,
.xchg-history .paging_box li a.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
    font-weight: 700;
}

.xchg-history .paging_box li.disabled a {
    opacity: 0.3;
    pointer-events: none;
}

.xchg-history .paging_box li a:hover {
    border-color: rgba(104, 158, 255, 1);
}

.xchg-history th {
    background: rgba(0, 0, 0, 0.35);
    font-size: 13px;
}

.xchg-note-box {
    margin-top: 24px;
    background: #16202f;
    border: 1px solid #2d2b45;
    border-radius: 10px;
    padding: 16px;
    color: #cbd0d6;
}

.xchg-note-box .title {
    font-weight: 700;
    margin-bottom: 8px;
}

.xchg-rate-box {
    margin-top: 24px;
    background: #16202f;
    border: 1px solid #2d2b45;
    border-radius: 10px;
    padding: 16px;
    color: #cbd0d6;
}

@media (max-width: 960px) {
    .sub_content_arr {
        padding: 30px 15px 60px;
    }

    .info-section {
        padding: 18px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-stats {
        grid-template-columns: 1fr;
    }

    .info-form-row {
        grid-template-columns: 1fr;
    }

    .cash-form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .cash-form-label {
        width: 100%;
    }

    .cash-input-box {
        width: 100%;
    }

    .cash-header-row {
        justify-content: flex-end;
    }

    .cash-page-title {
        display: none;
    }

    .cash-unit-buttons {
        grid-template-columns: repeat(4, 1fr);
    }

    .cash-form-section {
        padding: 10px;
        background: transparent;
        border: none;
    }

    .cash-top-nav {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }

    .bbs-tabs {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }

    .jackpot-banner-mob .jackpot-inner {
        justify-content: center;
        top: 73%;
        bottom: auto;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }

    .xchg-header {
        margin-bottom: 18px;
    }

    .xchg-panels {
        flex-direction: row;
        gap: 12px;
    }

    .xchg-panel {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        max-width: none;
    }

    .xchg-arrow {
        display: none;
    }

    .xchg-input-row {
        gap: 8px;
    }

    .xchg-input-row input {
        max-width: 100%;
        flex: 1;
    }

    .xchg-max-btn {
        flex-shrink: 0;
    }

    .xchg-reset-btn {
        width: 80px;
        flex-shrink: 0;
    }
}
