* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--bs-body-bg) !important;
    color: var(--bs-body-color);
    font-size: 14px;
}
.app-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.app-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
body.frontend-body {
    display: flex;
    justify-content: center;
}
.fe-wrapper {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.05);
}
.fe-content {
    flex: 1;
    padding: 15px;
    padding-bottom: 80px;
    background: var(--bs-body-bg);
}
.logo-dark {
    display: none;
}
[data-pc-theme="dark"] .logo-light {
    display: none;
}
[data-pc-theme="dark"] .logo-dark {
    display: inline-block;
}
.fe-header {
    padding: 10px;
    background: var(--pc-header-background);
    color: var(--pc-header-color);
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: var(--pc-header-shadow);
}
.fe-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.fe-left {
    flex: 0 0 auto;
}
.fe-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.fe-right form {
    display: flex;
    align-items: center;
}
.fe-right form input {
    height: 28px;
    font-size: 12px;
}
.fe-right form .btn {
    height: 32px;
    padding: 4px 10px;
    font-size: 12px;
}
.fe-right .btn {
    padding: 3px 5px;
    font-size: 10px;
}
.fe-center {
    flex: 1;
    text-align: center;
}
.fe-center small {
    display: block;
    font-size: 10px;
    color: var(--pc-sidebar-caption-color);
}
.fe-center strong {
    font-size: 13px;
    color: var(--bs-primary);
}
.user-avtar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.fe-avatar-dropdown {
    position: relative;
}
.fe-dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    min-width: 120px;
    display: none;
    z-index: 999;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    border-radius: 6px;
    box-shadow: var(--pc-card-box-shadow);
}
.fe-dropdown-menu.show {
    display: block;
}
.fe-dropdown-menu .dropdown-item {
    width: 100%;
    padding: 8px 10px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
    color: var(--pc-header-color);
}
.fe-dropdown-menu .dropdown-item:hover {
    background: var(--pc-active-background);
}
.fe-footer {
    padding: 24px 15px 100px;
    text-align: center;
    background: var(--pc-header-background);
    border-top: 1px solid var(--bs-border-color);
}
.fe-footer-logo {
    margin-bottom: 12px;
}
.fe-footer-desc {
    max-width: 320px;
    margin: 0 auto 18px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--pc-sidebar-caption-color);
}
.fe-footer-links,
.fe-footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}
.fe-footer-links a,
.fe-footer-social a,
.fe-footer-language a {
    text-decoration: none;
    transition: 0.2s ease;
}
.fe-footer-links a,
.fe-footer-social a {
    font-size: 12px;
    color: var(--pc-header-color);
}
.fe-footer-links a:hover,
.fe-footer-social a:hover,
.fe-footer-language a:hover {
    color: var(--bs-primary);
}
.fe-footer-language {
    margin-top: 14px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.fe-footer-language a {
    color: var(--pc-sidebar-caption-color);
}
.fe-footer-language a.active {
    color: var(--bs-primary);
    font-weight: 600;
}
.fe-footer-language i {
    font-size: 12px;
}
.fe-footer-providers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.fe-footer-providers span {
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    font-size: 11px;
    color: var(--pc-header-color);
}
.fe-footer-copy {
    font-size: 11px;
    color: var(--pc-sidebar-caption-color);
}
.fe-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    background: var(--pc-header-background);
    border-top: 1px solid var(--bs-border-color);
    box-shadow: var(--pc-header-shadow);
}
.fe-bottom-menu a {
    text-decoration: none;
    text-align: center;
    font-size: 11px;
    color: var(--pc-sidebar-caption-color);
}
.fe-bottom-menu i {
    display: block;
    font-size: 18px;
}
.center-btn {
    min-width: 90px;
    height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: -22px;
    background: var(--bs-primary);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid var(--bs-body-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.center-btn i {
    width: 16px;
    font-size: 16px;
    text-align: center;
    flex-shrink: 0;
}
.fe-rtp-btn {
    animation: pulseRtp 1.5s infinite;
}
@keyframes pulseRtp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
.fe-top-section {
    width: 100%;
}
.fe-top-section .fe-marquee,
.fe-top-section .fe-carousel {
    margin: 0;
    border-left: none;
    border-right: none;
    border-radius: 0 !important;
}
.fe-carousel {
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
    touch-action: pan-y;
}
.fe-carousel img {
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
}
.carousel-item {
    transition: transform 0.4s ease-in-out;
}
.carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.fe-marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 6px 0;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
}
.fe-marquee-content {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation: fe-marquee 15s linear infinite;
    font-size: 12px;
    color: var(--pc-header-color);
}
.fe-marquee:hover .fe-marquee-content {
    animation-play-state: paused;
}
@keyframes fe-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.fe-section {
    margin-bottom: 20px;
}
.fe-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.fe-section-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--pc-header-color);
}
.fe-section-head a {
    text-decoration: none;
    font-size: 12px;
    color: var(--bs-primary);
}
.fe-topbar-provider {
    position: relative;
    background: var(--pc-header-background);
    border-bottom: 1px solid var(--bs-border-color);
}
.fe-topbar-provider::before,
.fe-topbar-provider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 1;
}
.fe-topbar-provider::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--pc-header-background),
        transparent
    );
}
.fe-topbar-provider::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--pc-header-background),
        transparent
    );
}
.fe-provider-scroll,
.fe-game-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.fe-provider-scroll::-webkit-scrollbar,
.fe-game-slider::-webkit-scrollbar {
    display: none;
}
.fe-provider-scroll {
    padding: 8px 35px;
}
.fe-provider-item {
    flex: 0 0 auto;
    padding: 6px 12px;
    white-space: nowrap;
    border-radius: 20px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s ease;
    color: var(--text-muted);
}
.fe-provider-item:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.fe-provider-item.active {
    color: #fff;
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, var(--bs-primary), #22c55e);
}
.fe-provider-item.hot {
    border: 1px solid rgba(255, 107, 0, 0.55);
    box-shadow:
        0 0 10px rgba(255, 107, 0, 0.2),
        inset 0 0 8px rgba(255, 107, 0, 0.08);
}
.fe-provider-item.hot:hover {
    border-color: #ff6b00;
    box-shadow:
        0 0 16px rgba(255, 107, 0, 0.35),
        inset 0 0 10px rgba(255, 107, 0, 0.1);
}
.fe-provider-item.hot.active {
    border-color: #ff8a00;
    box-shadow:
        0 0 20px rgba(255, 138, 0, 0.45),
        inset 0 0 12px rgba(255, 138, 0, 0.15);
}
.fe-provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.fe-provider-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    transition: 0.2s ease;
}
.fe-provider-card.hot {
    border: 1px solid rgba(255, 107, 0, 0.45);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.15);
}
.fe-provider-card:hover {
    transform: translateY(-2px);
    border-color: var(--bs-primary);
}
.fe-provider-card.hot:hover {
    border-color: #ff7a00;
    box-shadow: 0 0 18px rgba(255, 107, 0, 0.25);
}
.fe-provider-hot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.12);
    color: #ff7a00;
    font-size: 13px;
}
.fe-provider-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--bs-primary), #22c55e);
}
.fe-provider-content {
    flex: 1;
}
.fe-provider-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--pc-header-color);
}
.fe-provider-total {
    margin-top: 2px;
    font-size: 12px;
    color: var(--pc-sidebar-caption-color);
}
.fe-slider-wrapper {
    position: relative;
}
.fe-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: var(--pc-header-background);
    color: var(--pc-header-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}
.fe-scroll-btn.left {
    left: 5px;
}
.fe-scroll-btn.right {
    right: 5px;
}
.fe-scroll-btn:hover {
    color: var(--bs-primary);
}
.fe-scroll-btn.hidden {
    display: none;
}
.fe-game-slider {
    padding-bottom: 5px;
    scroll-snap-type: x mandatory;
}
.fe-game-slide {
    flex: 0 0 calc(33.333% - 7px);
    scroll-snap-align: start;
    display: flex;
}
.fe-game-slide .fe-game-card {
    width: 100%;
}
.fe-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.fe-game-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    transition: 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.fe-game-card:hover {
    transform: translateY(-3px);
}
.fe-game-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.fe-game-info {
    padding: 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 10px;
    color: var(--pc-header-color);
}
.fe-empty-state {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--pc-sidebar-caption-color);
    background: var(--pc-header-background);
    border: 1px dashed var(--bs-border-color);
    border-radius: 12px;
}
.fe-jackpot {
    margin-bottom: 14px;
    padding: 8px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.fe-jackpot-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 25px;
}
.jp-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pc-header-color);
}
.jp-title b {
    color: var(--bs-primary);
}
.fe-jackpot-right {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    border-radius: 20px;
    font-family: monospace;
    box-shadow: 0 0 8px rgba(var(--bs-primary-rgb), 0.3);
}
.jp-currency {
    font-weight: 700;
    color: var(--bs-primary);
}
#jackpotAmount {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--pc-header-color);
}
#loadMoreBtn {
    min-width: 140px;
    border-radius: 12px;
}
.fe-auth-card {
    background: var(--bs-body-bg);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.fe-auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}
.fe-auth-subtitle {
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 28px;
}
.fe-auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fe-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.fe-form-group small {
    opacity: 0.6;
}
.fe-password-wrap {
    position: relative;
}
.fe-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: inherit;
    opacity: 0.6;
}
.fe-password-toggle:hover {
    opacity: 1;
}
.fe-auth-submit {
    height: 48px;
    border-radius: 14px;
    font-weight: 700;
    margin-top: 8px;
}
.fe-auth-bottom {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}
.fe-auth-bottom a {
    font-weight: 700;
    text-decoration: none;
}
.fe-rtp-hero {
    margin-bottom: 20px;
}
.fe-rtp-badge-live {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    font-size: 12px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 14px;
}
.fe-rtp-badge-live .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    animation: livePulse 1.2s infinite;
}
.fe-rtp-title {
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pc-header-color);
}
.fe-rtp-subtitle {
    font-size: 13px;
    line-height: 1.6;
    color: var(--pc-sidebar-caption-color);
}
.fe-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.fe-rtp-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    transition: 0.2s ease;
}
.fe-rtp-card:hover {
    transform: translateY(-3px);
}
.fe-rtp-thumb {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}
.fe-rtp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fe-rtp-info {
    padding: 10px;
}
.fe-rtp-name {
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    margin-bottom: 8px;
}
.fe-rtp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(10px);
}
.fe-rtp-badge.low,
.fe-rtp-fill.low {
    background: #ff9800;
}
.fe-rtp-badge.high,
.fe-rtp-fill.high {
    background: #00c853;
}
.fe-rtp-badge.max,
.fe-rtp-fill.max {
    background: linear-gradient(90deg, #ffcc00, #ff9800);
}
.fe-rtp-bar {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}
.fe-rtp-fill {
    height: 100%;
    border-radius: inherit;
}
.fe-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}
.fe-pagination a,
.fe-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.fe-pagination a {
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    color: var(--pc-header-color);
    transition: 0.2s ease;
}
.fe-pagination a:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}
.fe-pagination .active {
    background: var(--bs-primary);
    color: #fff;
}
.fe-pagination .disabled {
    opacity: 0.4;
}
@keyframes livePulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}
.fe-profile-card {
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 15px;
}
.fe-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.fe-profile-header i {
    font-size: 28px;
    color: var(--bs-primary);
}
.fe-profile-header h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}
.fe-profile-header small {
    color: var(--pc-sidebar-caption-color);
}
.fe-profile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fe-profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bs-border-color);
}
.fe-profile-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.fe-profile-item span {
    color: var(--pc-sidebar-caption-color);
}
.fe-profile-item strong {
    font-weight: 600;
}
.fe-deposit-page {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fe-card {
    padding: 18px;
    border-radius: 18px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
}
.fe-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}
.fe-balance-card {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bs-primary), #22c55e);
    color: #fff;
}
.fe-balance-card small {
    opacity: 0.8;
    display: block;
}
.fe-balance-card h3 {
    margin: 6px 0 0;
    font-size: 28px;
    font-weight: 700;
}
.fe-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.amount-btn {
    height: 48px;
    border-radius: 14px;
    font-weight: 700;
    background: var(--bs-body-bg);
    color: var(--pc-header-color);
    border: 1px solid var(--bs-border-color);
    transition: 0.2s;
}
.amount-btn.active,
.amount-btn:hover {
    background: var(--bs-primary);
    color: #fff;
}
.fe-input-money {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 14px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
}
.fe-input-money span {
    font-size: 20px;
    font-weight: 700;
}
.fe-input-money input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 22px;
    font-weight: 700;
    color: inherit;
}
.fe-deposit-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fe-deposit-info div {
    display: flex;
    justify-content: space-between;
}
.fe-deposit-info span {
    opacity: 0.7;
}
.fe-deposit-btn {
    height: 55px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
}
.fe-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bs-border-color);
}
.fe-history-item:last-child {
    border-bottom: 0;
}
.fe-payment-card {
    padding: 25px;
    text-align: center;
    border-radius: 20px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
}
.fe-qris-image {
    width: 260px;
    max-width: 100%;
    margin: 20px auto;
}
.fe-payment-status {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: #ff9800;
    color: #fff;
    font-weight: 700;
}
.fe-expired {
    margin-top: 15px;
    font-size: 14px;
}
.fe-wallet-summary {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bs-primary), #22c55e);
    color: #fff;
    box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.25);
}
.fe-wallet-summary small {
    display: block;
    opacity: 0.8;
}
.fe-wallet-summary h2 {
    margin: 6px 0 0;
    font-size: 28px;
    font-weight: 700;
}
.fe-wallet-history {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fe-wallet-date {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pc-sidebar-caption-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fe-wallet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 16px;
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    transition: 0.25s ease;
}
.fe-wallet-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.fe-wallet-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}
.fe-wallet-icon.deposit {
    background: #22c55e;
}
.fe-wallet-icon.withdraw {
    background: #ef4444;
}
.fe-wallet-icon.bet {
    background: #f59e0b;
}
.fe-wallet-icon.win {
    background: #3b82f6;
}
.fe-wallet-icon.bonus {
    background: #8b5cf6;
}
.fe-wallet-icon.cashback {
    background: #06b6d4;
}
.fe-wallet-icon.default {
    background: #64748b;
}
.fe-wallet-content {
    flex: 1;
}
.fe-wallet-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--pc-header-color);
}
.fe-wallet-time {
    margin-top: 3px;
    font-size: 12px;
    color: var(--pc-sidebar-caption-color);
}
.fe-wallet-right {
    text-align: right;
}
.fe-wallet-right small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--pc-sidebar-caption-color);
}
.fe-wallet-plus {
    font-size: 15px;
    font-weight: 700;
    color: #22c55e;
}
.fe-wallet-minus {
    font-size: 15px;
    font-weight: 700;
    color: #ef4444;
}
.fe-withdraw-card {
    background: var(--pc-header-background);
    border: 1px solid var(--bs-border-color);
    border-radius: 20px;
    padding: 24px;
}
.fe-withdraw-head {
    text-align: center;
    margin-bottom: 25px;
}
.fe-withdraw-icon {
    width: 64px;
    height: 64px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    font-size: 28px;
    margin-bottom: 12px;
}
.fe-withdraw-head h3 {
    margin-bottom: 6px;
    font-weight: 700;
}
.fe-withdraw-head small {
    color: var(--pc-sidebar-caption-color);
}
.fe-balance-box {
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    background: var(--bs-body-bg);
    text-align: center;
}
.fe-balance-box small {
    color: var(--pc-sidebar-caption-color);
}
.fe-balance-box h2 {
    margin-top: 8px;
    color: var(--bs-primary);
    font-weight: 700;
}
.fe-bank-box {
    margin-bottom: 20px;
}
.fe-bank-box label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.fe-bank-info {
    padding: 15px;
    border-radius: 14px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
}
.fe-bank-info strong {
    display: block;
    font-size: 16px;
}
.fe-bank-info span {
    display: block;
    margin-top: 4px;
    font-weight: 600;
}
.fe-bank-info small {
    color: var(--pc-sidebar-caption-color);
}
.fe-withdraw-info {
    padding: 14px;
    border-radius: 12px;
    background: var(--bs-body-bg);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}
.fe-withdraw-success-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.08);
    border: 2px solid rgba(var(--bs-primary-rgb), 0.15);
}
.fe-withdraw-detail {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    overflow: hidden;
}
.fe-withdraw-detail > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--bs-border-color);
}
.fe-withdraw-detail > div:last-child {
    border-bottom: none;
}
.fe-withdraw-detail span {
    color: var(--pc-sidebar-caption-color);
    font-size: 13px;
}
.fe-withdraw-detail strong {
    font-size: 14px;
    color: var(--pc-header-color);
    text-align: right;
}
.fe-history-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.fe-history-link:hover {
    text-decoration: none;
    color: inherit;
}
.fe-history-link .fe-history-item {
    transition: 0.2s ease;
}
.fe-history-link:hover .fe-history-item {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.fe-hot-icon {
    color: #ff7a00;
    font-size: 14px;
    margin-right: 4px;
    vertical-align: -2px;
    animation: hotGlow 1.8s ease-in-out infinite;
}
@keyframes hotGlow {
    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 2px rgba(255, 122, 0, 0.3));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 6px rgba(255, 122, 0, 0.8));
    }
}
@media (min-width: 768px) {
    .fe-rtp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .fe-wrapper {
        max-width: 100%;
    }
}
@media (max-width: 400px) {
    .fe-right form {
        display: flex;
        gap: 3px;
    }
    .fe-right form input {
        width: 70px !important;
        height: 26px;
        padding: 2px 4px;
        font-size: 10px;
    }
    .fe-right form .btn {
        height: 26px;
        padding: 2px 6px;
        white-space: nowrap;
        font-size: 10px;
    }
}
#loadingIndicator {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
