/* ================================================
   WarpStrike Theme Override CSS
   Design System: Dark Mode Gaming Website
   Colors: Purple (#7C3AED) Primary, Rose (#F43F5E) CTA
   ================================================ */

/* ================================================
   ROOT VARIABLES
   ================================================ */
:root {
    /* Primary Colors */
    --ws-primary: #7C3AED;
    --ws-primary-light: #A78BFA;
    --ws-primary-dark: #5B21B6;
    --ws-secondary: #A78BFA;
    
    /* Accent Colors */
    --ws-accent: #F43F5E;
    --ws-accent-light: #FB7185;
    --ws-accent-dark: #E11D48;
    
    /* Background Colors */
    --ws-bg-dark: #0F0F23;
    --ws-bg-darker: #080812;
    --ws-bg-card: #1A1A2E;
    --ws-bg-card-hover: #252542;
    
    /* Text Colors */
    --ws-text-primary: #FFFFFF;
    --ws-text-secondary: #E2E8F0;
    --ws-text-muted: #94A3B8;
    --ws-text-light: #64748B;
    
    /* Border Colors */
    --ws-border: rgba(124, 58, 237, 0.3);
    --ws-border-light: rgba(124, 58, 237, 0.15);
    
    /* Shadows */
    --ws-glow-primary: 0 0 20px rgba(124, 58, 237, 0.4);
    --ws-glow-accent: 0 0 20px rgba(244, 63, 94, 0.4);
    --ws-glow-text: 0 0 10px rgba(124, 58, 237, 0.6);
    
    /* Transitions */
    --ws-transition: all 0.3s ease;
    --ws-transition-fast: all 0.15s ease;
}

/* ================================================
   BASE OVERRIDES
   ================================================ */
body {
    background: var(--ws-bg-dark) !important;
    color: var(--ws-text-secondary) !important;
    font-family: 'Inter', 'Space Grotesk', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chakra Petch', 'Orbitron', sans-serif !important;
    color: var(--ws-text-primary) !important;
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--ws-bg-darker);
}
body::-webkit-scrollbar-thumb {
    background: var(--ws-primary);
    border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--ws-primary-light);
}

/* ================================================
   NAVBAR / HEADER OVERRIDES
   ================================================ */
.large-screens {
    background: var(--ws-bg-darker) !important;
    border-bottom: 1px solid var(--ws-border-light) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.large-screens .navbar {
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.large-screens .navbar .collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.large-screens .navbar-brand img {
    height: 40px !important;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

/* Navbar Menu Items - Even Spacing */
.large-screens .navbar-nav.mainmenu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.large-screens .navbar-nav.mainmenu > li {
    display: flex;
    align-items: center;
}

.large-screens .navbar-nav.mainmenu > li > a {
    color: var(--ws-text-primary) !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 20px 16px !important;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent !important;
}

/* Remove any blue/bright background on hover - text glow only */
.large-screens .navbar-nav.mainmenu > li > a:hover {
    background: transparent !important;
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    box-shadow: none !important;
}

/* Active link with underline */
.large-screens .navbar-nav.mainmenu > li.active > a,
.large-screens .navbar-nav.mainmenu > li > a.active {
    background: transparent !important;
    color: white !important;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

/* Underline for active nav items - REMOVED BLUE BACKGROUND */
.large-screens .navbar-nav.mainmenu > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--ws-primary), var(--ws-accent));
    border-radius: 2px;
}

/* Right content icons - Even spacing */
.large-screens .navbar-nav.right-content {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.large-screens .navbar-nav.right-content > li {
    display: flex;
    align-items: center;
}

.large-screens .navbar-nav.right-content > li > a {
    padding: 16px 12px !important;
    color: var(--ws-text-muted) !important;
    transition: all 0.3s ease;
    background: transparent !important;
}

.large-screens .navbar-nav.right-content > li > a:hover {
    background: transparent !important;
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    box-shadow: none !important;
}

/* Header icon buttons */
.large-screens .header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 50%;
    color: var(--ws-text-primary) !important;
    transition: all 0.3s ease;
}

.large-screens .header-icon-btn:hover {
    background: var(--ws-primary) !important;
    border-color: var(--ws-primary) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

/* Cart icon styling */
.large-screens .cart-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    color: var(--ws-text-primary) !important;
    transition: all 0.3s ease;
}

.large-screens .cart-icon-btn:hover {
    background: var(--ws-primary) !important;
    border-color: var(--ws-primary) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.large-screens .cart-icon-btn svg {
    color: white !important;
    stroke: white !important;
}

.large-screens .cart-icon-btn .badge-uinfo {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: white !important;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Currency & Language Selector */
.large-screens .selector-btn {
    background: transparent !important;
    border: 1px solid var(--ws-border-light) !important;
    color: var(--ws-text-secondary) !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: var(--ws-transition);
}

.large-screens .selector-btn:hover {
    border-color: var(--ws-primary) !important;
    color: var(--ws-primary-light) !important;
    box-shadow: var(--ws-glow-primary);
}

/* ================================================
   HERO SECTION OVERRIDES
   ================================================ */
.hero-banner-1 {
    background: var(--ws-bg-dark) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Smooth gradient fade at bottom of hero */
.hero-banner-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 35, 0.5) 40%, rgba(15, 15, 35, 0.9) 70%, #0F0F23 100%);
    z-index: 3;
    pointer-events: none;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner-1 .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.85) 0%, rgba(26, 31, 54, 0.7) 50%, rgba(13, 13, 26, 0.85) 100%);
    z-index: 1;
}

.hero-banner-1 .hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-banner-1 .content {
    position: relative;
    z-index: 5;
}

.hero-banner-1 .col-lg-8 {
    padding: 120px 0;
}

/* Hero Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--ws-primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float-glow 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--ws-accent) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation: float-glow 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--ws-primary-light) 0%, transparent 70%);
    bottom: -150px;
    left: 30%;
    animation: float-glow 12s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 20px);
    }
}

/* Hero Background Image - Full Cover */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/blogs/bd-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.3;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ws-bg-dark) 0%, rgba(15, 15, 35, 0.85) 50%, var(--ws-bg-dark) 100%);
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-bg-image {
        opacity: 0.2;
    }
}

/* Hero About Section with Glow Animation */
.hero-about {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 36px;
    margin-left: 20px;
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
    overflow: hidden;
}


/* Glow effect on all sides */
.hero-about::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--ws-primary), var(--ws-accent), var(--ws-primary), var(--ws-accent));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.hero-about:hover::before {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

.hero-about:hover {
    border-color: var(--ws-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(124, 58, 237, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        filter: blur(10px);
    }
    50% {
        opacity: 1;
        filter: blur(15px);
    }
}

/* Icon glow on hover */
.hero-about-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.hero-about:hover .hero-about-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

.hero-about-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Text reveal animation on hover */
.hero-about h4,
.hero-about h5,
.hero-about-text {
    transition: all 0.3s ease;
}

.hero-about:hover h4 {
    color: var(--ws-text-primary) !important;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    transform: translateX(5px);
}

.hero-about:hover h5 {
    color: var(--ws-accent-light) !important;
    transform: translateX(5px);
}

.hero-about:hover .hero-about-text {
    color: var(--ws-text-primary) !important;
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .hero-about {
        margin-left: 0;
        margin-top: 40px;
    }
}

.hero-about h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--ws-text-primary) !important;
}

.hero-about h5 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--ws-primary-light) !important;
}

.hero-about-text {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: var(--ws-text-muted) !important;
    margin: 0 !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--ws-border);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ws-primary-light);
}

/* Hero Content */
.hero-banner-1 .content {
    position: relative;
    z-index: 5;
}

.hero-banner-1 .col-lg-5,
.hero-banner-1 .col-lg-8 {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .hero-banner-1 .col-lg-5,
    .hero-banner-1 .col-lg-8 {
        padding: 80px 0 40px;
    }
}

.hero-banner-1 h4 {
    color: var(--ws-primary-light) !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Live Dot Animation */
.live-dot {
    width: 8px;
    height: 8px;
    background: var(--ws-accent) !important;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 0 10px rgba(244, 63, 94, 0);
    }
}

/* Hero Headline */
.hero-banner-1 h1 {
    font-size: 72px !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
}

.hero-banner-1 h1 .gradient-text {
    background: linear-gradient(135deg, var(--ws-primary-light), var(--ws-accent)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
}

/* Hero Subtitle */
.hero-subtitle {
    color: var(--ws-text-muted) !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    max-width: 450px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px !important;
    border: 1px solid var(--ws-border) !important;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.min-vh-100 {
    min-height: 100vh !important;
}

/* Button Block */
.hero-banner-1 .btn-block {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Primary Button */
.cus-btn.primary {
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-primary-dark)) !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    cursor: pointer !important;
    transition: var(--ws-transition) !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.cus-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.cus-btn.primary i {
    transition: transform 0.3s ease;
}

.cus-btn.primary:hover i {
    transform: translateX(4px);
}

/* Secondary Button */
.cus-btn.sec {
    background: transparent !important;
    color: var(--ws-text-primary) !important;
    border: 1px solid var(--ws-border) !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    cursor: pointer !important;
    transition: var(--ws-transition) !important;
}

.cus-btn.sec:hover {
    border-color: var(--ws-primary) !important;
    background: rgba(124, 58, 237, 0.1) !important;
    box-shadow: var(--ws-glow-primary);
}

.cus-btn.sec i {
    transition: transform 0.3s ease;
}

.cus-btn.sec:hover i {
    transform: rotateY(180deg);
}

/* ================================================
   GAME CARD OVERRIDES
   ================================================ */
.game-card {
    text-decoration: none !important;
    display: block;
    transition: var(--ws-transition);
}

.game-card:hover {
    transform: translateY(-8px);
}

.game-card .player-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px !important;
    border: 1px solid var(--ws-border-light) !important;
    transition: var(--ws-transition);
    background: var(--ws-bg-card) !important;
}

.game-card:hover .player-card {
    border-color: var(--ws-primary) !important;
    box-shadow: var(--ws-glow-primary);
}

.game-card .player-card img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.game-card:hover .player-card img {
    transform: scale(1.05);
}

.game-card .player-card .overlay {
    background: linear-gradient(to top, rgba(15, 15, 35, 0.95) 0%, rgba(15, 15, 35, 0.5) 50%, transparent 100%) !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    height: 60%;
}

.game-card .player-card .text-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.game-card .player-card h4 {
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.game-card .game-badge {
    display: inline-block;
    background: var(--ws-primary) !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* ================================================
   SECTION HEADING
   ================================================ */
.heading {
    text-align: center;
    margin-bottom: 48px;
}

.heading h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    position: relative;
    display: inline-block;
}

.heading h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--ws-primary), var(--ws-accent));
    border-radius: 2px;
}

.heading p {
    color: var(--ws-text-muted) !important;
    font-size: 16px !important;
    margin-top: 20px;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features {
    background: var(--ws-bg-dark) !important;
}

.feature-card {
    background: var(--ws-bg-card) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    transition: var(--ws-transition);
}

.feature-card:hover {
    border-color: var(--ws-primary) !important;
    box-shadow: var(--ws-glow-primary);
    transform: translateY(-4px);
}

.feature-card .content {
    text-align: center;
}

.feature-card img {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--ws-text-primary) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.feature-card p {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ================================================
   HOW IT WORKS SECTION (NEW)
   ================================================ */
.how-it-works {
    background: var(--ws-bg-dark) !important;
    padding: 100px 0 !important;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 60px !important;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.how-it-works .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ws-primary), transparent);
}

.how-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.how-step {
    text-align: center;
    max-width: 250px;
    position: relative;
}

.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(100% + 10px);
    width: calc(100% - 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--ws-primary), var(--ws-border-light));
}

@media (max-width: 992px) {
    .how-step:not(:last-child)::after {
        display: none;
    }
}

.how-step-number {
    width: 80px;
    height: 80px;
    background: var(--ws-primary) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: white !important;
    box-shadow: var(--ws-glow-primary);
    position: relative;
}

.how-step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--ws-primary);
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.how-step h5 {
    color: var(--ws-text-primary) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.how-step p {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ================================================
   POINTS TOP-UP SECTION
   ================================================ */
.bp-topup-section {
    background: var(--ws-bg-dark) !important;
    padding: 100px 0 !important;
}

.bp-topup-header h2 {
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.bp-topup-tagline {
    color: var(--ws-text-muted) !important;
    font-size: 18px !important;
}

.bp-topup-intro {
    color: var(--ws-text-muted) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 700px !important;
    margin: 0 auto 50px !important;
}

.bp-topup-disclaimer {
    background: rgba(244, 63, 94, 0.1) !important;
    border: 1px solid rgba(244, 63, 94, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    margin-bottom: 40px !important;
}

.bp-topup-disclaimer p {
    color: var(--ws-accent-light) !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.bp-card {
    background: var(--ws-bg-card) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 16px !important;
    padding: 32px !important;
}

.bp-card-title {
    color: var(--ws-text-primary) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    text-align: center;
}

/* Main Content Row */
.bp-main-content {
    align-items: flex-start !important;
}

/* Equal Height Row */
.bp-equal-height {
    display: flex !important;
    flex-wrap: wrap !important;
}

.bp-equal-height > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}

.bp-equal-height .bp-card {
    flex: 1 !important;
}

/* Calculator Card */
.bp-calculator-card {
    background: linear-gradient(145deg, var(--ws-bg-card), var(--ws-bg-darker)) !important;
    border: 1px solid var(--ws-primary) !important;
    box-shadow: var(--ws-glow-primary) !important;
}

.bp-calculator-card h4 {
    color: var(--ws-text-primary) !important;
    font-size: 22px !important;
}

.bp-calculator-card p {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
}

/* Calculator Results */
.bp-calc-results {
    background: var(--ws-bg-darker) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-top: 24px !important;
}

.bp-calc-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--ws-border-light) !important;
}

.bp-calc-row:last-child {
    border-bottom: none !important;
}

.bp-calc-row.bp-calc-total {
    padding-top: 16px !important;
    margin-top: 8px !important;
    border-top: 2px solid var(--ws-primary) !important;
    border-bottom: none !important;
}

.bp-calc-label {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.bp-calc-total .bp-calc-label {
    color: var(--ws-primary-light) !important;
    font-weight: 600 !important;
}

.bp-calc-input {
    background: transparent !important;
    border: none !important;
    color: var(--ws-text-primary) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: right !important;
    width: 120px !important;
    padding: 0 !important;
}

.bp-calc-total .bp-calc-input {
    color: var(--ws-primary-light) !important;
    font-size: 24px !important;
}

.w-100 {
    width: 100% !important;
}

/* ================================================
   BENTO GRID FEATURES
   ================================================ */
.features-section {
    background: var(--ws-bg-dark) !important;
    padding: 100px 0 !important;
}

.features-section .section-header {
    margin-bottom: 60px !important;
}

.features-section .section-header h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

/* ================================================
   GAME GRID SECTION
   ================================================ */
.game-grid-section {
    background: var(--ws-bg-dark) !important;
    padding: 100px 0 !important;
}

.game-grid-section .section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.game-grid-section .section-header .section-tag {
    display: inline-block !important;
    background: rgba(124, 58, 237, 0.15) !important;
    border: 1px solid var(--ws-border) !important;
    color: var(--ws-primary-light) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    margin-bottom: 20px !important;
}

.game-grid-section .section-header h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.game-grid-section .section-header p {
    color: var(--ws-text-muted) !important;
    font-size: 16px !important;
}

/* Game Grid Layout */
.game-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

/* Featured Item (First Item) */
.game-item.featured {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
}

/* Game Item Card */
.game-item {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: var(--ws-bg-card) !important;
    border: 1px solid var(--ws-border-light) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transform-style: preserve-3d !important;
}

.game-item:hover {
    border-color: var(--ws-primary) !important;
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(124, 58, 237, 0.4),
        inset 0 0 30px rgba(124, 58, 237, 0.1) !important;
    z-index: 10 !important;
}

/* Image Wrapper */
.game-image-wrapper {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    overflow: hidden !important;
}

.game-item.featured .game-image-wrapper {
    aspect-ratio: 1/1 !important;
}

.game-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease !important;
}

.game-item:hover .game-image-wrapper img {
    transform: scale(1.15) !important;
    filter: brightness(1.1) saturate(1.2) !important;
}

/* Overlay with dramatic effect */
.game-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(124, 58, 237, 0.3) 0%, rgba(15, 15, 35, 0.4) 50%, transparent 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
}

.game-item:hover .game-overlay {
    opacity: 1 !important;
}

/* Play Icon with bounce animation */
.game-play-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    transform: scale(0) rotate(-180deg) !important;
    opacity: 0 !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5) !important;
}

.game-item:hover .game-play-icon {
    transform: scale(1) rotate(0deg) !important;
    opacity: 1 !important;
    animation: play-pulse 1.5s ease-in-out infinite !important;
}

@keyframes play-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7), 0 10px 30px rgba(124, 58, 237, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(124, 58, 237, 0), 0 10px 40px rgba(124, 58, 237, 0.7);
    }
}

/* Badge Corner with flip effect */
.game-badge-corner {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(15, 15, 35, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--ws-primary) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--ws-primary-light) !important;
    transition: all 0.4s ease !important;
    transform: translateY(-50px) rotateX(90deg) !important;
    opacity: 0 !important;
}

.game-item:hover .game-badge-corner {
    transform: translateY(0) rotateX(0deg) !important;
    opacity: 1 !important;
}

/* Game Info */
.game-info {
    padding: 20px !important;
}

.game-info h3 {
    color: var(--ws-text-primary) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    transition: var(--ws-transition) !important;
}

.game-item.featured .game-info h3 {
    font-size: 22px !important;
}

.game-item:hover .game-info h3 {
    color: var(--ws-primary-light) !important;
}

.game-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--ws-text-muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    opacity: 0 !important;
    transform: translateY(10px) !important;
    transition: var(--ws-transition) !important;
}

.game-item:hover .game-cta {
    opacity: 1 !important;
    transform: translateY(0) !important;
    color: var(--ws-primary-light) !important;
}

.game-cta i {
    transition: transform 0.3s ease !important;
}

.game-item:hover .game-cta i {
    transform: translateX(8px) !important;
    animation: arrow-bounce 0.6s ease-in-out infinite !important;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(8px); }
    50% { transform: translateX(14px); }
}

/* Shine effect on hover */
.game-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease !important;
    pointer-events: none;
    z-index: 5;
}

.game-item:hover::after {
    left: 100%;
}

/* Text glow on hover */
.game-item:hover .game-info h3 {
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8) !important;
    transform: translateX(5px) !important;
}

/* Game Grid Responsive */
@media (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .game-item.featured {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .game-item.featured .game-image-wrapper {
        aspect-ratio: 16/10 !important;
    }
}

/* View All Button */
.view-all-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: transparent !important;
    border: 1px solid var(--ws-border) !important;
    color: var(--ws-text-primary) !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: var(--ws-transition) !important;
}

.view-all-btn:hover {
    background: var(--ws-primary) !important;
    border-color: var(--ws-primary) !important;
    color: white !important;
    box-shadow: var(--ws-glow-primary) !important;
}

.view-all-btn svg {
    transition: transform 0.3s ease !important;
}

.view-all-btn:hover svg {
    transform: translateX(4px) !important;
}

/* Game Grid Responsive */
@media (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .game-item.featured {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .game-item.featured .game-image-wrapper {
        aspect-ratio: 16/10 !important;
    }
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .game-grid-section .section-header h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: 1fr !important;
    }
}

.section-subtitle {
    color: var(--ws-text-muted) !important;
    font-size: 16px !important;
    max-width: 500px;
    margin: 0 auto !important;
}

/* ================================================
   GEAR CAROUSEL - Exact Reference Pattern
   Layout: Big Left | 2 Small Top + 1 Horizontal Bottom
   ================================================ */
.gear-carousel {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 20px;
    margin-bottom: 30px;
    align-items: stretch;
}

.gear-main {
    grid-row: span 1;
}

.gear-big {
    display: block;
    height: 100%;
    min-height: 420px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ws-bg-card);
}

.gear-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gear-big:hover .gear-image img,
.gear-small:hover .gear-image img,
.gear-horizontal:hover .gear-image img {
    transform: scale(1.05);
}

.gear-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.6) 40%, transparent 70%);
    z-index: 1;
}

.gear-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
}

.gear-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.gear-content h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.gear-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ws-primary-light);
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.gear-big:hover .gear-cta,
.gear-small:hover .gear-cta,
.gear-horizontal:hover .gear-cta {
    gap: 12px;
    color: white;
}

.gear-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gear-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gear-small {
    display: block;
    height: 200px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ws-bg-card);
}

.gear-small .gear-content h3 {
    font-size: 16px;
}

.gear-bottom {
    height: 200px;
}

.gear-horizontal {
    display: block;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ws-bg-card);
}

.gear-horizontal .gear-content h3 {
    font-size: 20px;
}

.gear-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.gear-next-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    color: white;
    border: none;
    padding: 24px 20px;
    border-radius: 16px;
    cursor: pointer;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 14px;
    writing-mode: vertical-rl;
    transition: all 0.3s ease;
}

.gear-next-btn:hover {
    transform: translateY(5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.gear-next-btn svg {
    animation: bounce-down 1.5s infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.gear-final-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gear-final-card {
    display: block;
    height: 250px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ws-bg-card);
}

.gear-final-card .gear-content h3 {
    font-size: 24px;
}

.gear-big:hover,
.gear-small:hover,
.gear-horizontal:hover,
.gear-final-card:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    border: 1px solid var(--ws-primary);
}

@media (max-width: 992px) {
    .gear-carousel {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .gear-main {
        grid-column: span 2;
    }
    .gear-big {
        min-height: 300px;
    }
    .gear-nav {
        grid-column: span 2;
        padding: 20px 0;
    }
    .gear-next-btn {
        writing-mode: horizontal-tb;
        padding: 16px 40px;
    }
}

@media (max-width: 576px) {
    .gear-carousel {
        grid-template-columns: 1fr;
    }
    .gear-main,
    .gear-nav {
        grid-column: span 1;
    }
    .gear-top {
        grid-template-columns: 1fr;
    }
    .gear-final-row {
    grid-template-columns: 1fr;
    }
    .gear-content h3 {
        font-size: 18px !important;
    }
}

/* Game Carousel Wrapper & Navigation */
.game-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.game-carousel-track {
    position: relative;
}

.game-carousel-page {
    display: none;
}

.game-carousel-page.active {
    display: block;
}

.game-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
}

.carousel-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ws-bg-card);
    border: 2px solid var(--ws-border);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ws-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--ws-primary);
    box-shadow: 0 0 15px var(--ws-primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--ws-primary-light);
}

.prev-btn, .next-btn {
    transition: all 0.3s ease;
}

.featured-grid,
.next-grid,
.last-grid {
    display: none !important;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 24px !important;
}

/* Bento Card Base */
.bento-card {
    background: var(--ws-bg-card) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: var(--ws-transition) !important;
}

.bento-card:hover {
    border-color: var(--ws-primary) !important;
    transform: translateY(-4px) !important;
    box-shadow: var(--ws-glow-primary) !important;
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
    background: linear-gradient(145deg, var(--ws-bg-card), rgba(124, 58, 237, 0.1)) !important;
}

.bento-medium {
    grid-column: span 1 !important;
}

.bento-wide {
    grid-column: span 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

/* Bento Icon */
.bento-icon {
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-primary-dark)) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    color: white !important;
}

.bento-large .bento-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 18px !important;
}

.bento-wide .bento-icon {
    flex-shrink: 0 !important;
}

/* Bento Content */
.bento-card h3,
.bento-card h4 {
    color: var(--ws-text-primary) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.bento-large h3 {
    font-size: 22px !important;
}

.bento-card p {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.bento-large p {
    font-size: 15px !important;
}

.bento-content {
    flex: 1 !important;
}

/* Bento Glow Effect */
.bento-glow {
    position: absolute !important;
    bottom: -50px !important;
    right: -50px !important;
    width: 150px !important;
    height: 150px !important;
    background: radial-gradient(circle, var(--ws-primary) 0%, transparent 70%) !important;
    opacity: 0.3 !important;
    pointer-events: none !important;
}

/* Bento Badge */
.bento-badge {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: var(--ws-accent) !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    letter-spacing: 0.5px !important;
}

/* Bento Grid Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .bento-large {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }
    
    .bento-wide {
        grid-column: span 2 !important;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr !important;
    }
    
    .bento-large,
    .bento-medium,
    .bento-wide {
        grid-column: span 1 !important;
    }
    
    .bento-wide {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .features-section .section-header h2 {
        font-size: 32px !important;
    }
}

/* Bonus Table */
.bp-bonus-table {
    width: 100%;
    border-collapse: collapse;
}

.bp-bonus-table th,
.bp-bonus-table td {
    padding: 16px 20px !important;
    text-align: center;
    border-bottom: 1px solid var(--ws-border-light) !important;
    color: var(--ws-text-secondary) !important;
}

.bp-bonus-table th {
    background: var(--ws-bg-darker) !important;
    color: var(--ws-primary-light) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.bp-bonus-table tr:hover td {
    background: rgba(124, 58, 237, 0.05) !important;
}

.bp-bonus-table td:first-child {
    color: var(--ws-text-primary) !important;
    font-weight: 500 !important;
}

.bp-note {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--ws-text-muted) !important;
    font-size: 13px !important;
}

/* BP Steps */
.bp-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bp-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.bp-step span {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-primary-dark)) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.bp-step p {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* BP Form */
.bp-topup-section .form-control {
    background: var(--ws-bg-darker) !important;
    border: 1px solid var(--ws-border) !important;
    color: var(--ws-text-primary) !important;
    padding: 14px 18px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    transition: var(--ws-transition);
}

.bp-topup-section .form-control:focus {
    outline: none !important;
    border-color: var(--ws-primary) !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2) !important;
}

.bp-topup-section .form-label {
    color: var(--ws-text-secondary) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
    display: block;
}

.bp-btn-primary {
    background: linear-gradient(135deg, var(--ws-accent), var(--ws-accent-dark)) !important;
    color: white !important;
    border: none !important;
    padding: 16px 48px !important;
    border-radius: 12px !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: var(--ws-transition) !important;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
}

.bp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.5);
}

/* ================================================
   FOOTER OVERRIDES
   ================================================ */
footer {
    background: var(--ws-bg-darker) !important;
    border-top: 1px solid var(--ws-border-light) !important;
    padding: 60px 0 0 !important;
}

footer .widget h4 {
    color: var(--ws-text-primary) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
}

footer .list li a {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    transition: var(--ws-transition-fast);
}

footer .list li a:hover {
    color: var(--ws-primary-light) !important;
}

footer .contact-list li {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
}

footer .contact-list a {
    color: var(--ws-text-muted) !important;
    transition: var(--ws-transition-fast);
}

footer .contact-list a:hover {
    color: var(--ws-primary-light) !important;
}

/* Subscribe Form */
.subscribe-letter .input-group {
    display: flex;
    gap: 8px;
}

.subscribe-letter input {
    flex: 1;
    background: var(--ws-bg-card) !important;
    border: 1px solid var(--ws-border) !important;
    color: var(--ws-text-primary) !important;
    padding: 14px 18px !important;
    border-radius: 10px !important;
}

.subscribe-letter input:focus {
    outline: none !important;
    border-color: var(--ws-primary) !important;
}

.subscribe-letter button {
    background: var(--ws-primary) !important;
    color: white !important;
    border: none !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: var(--ws-transition);
}

.subscribe-letter button:hover {
    background: var(--ws-primary-light) !important;
}

/* Footer Bottom */
.cprrght-sec {
    background: var(--ws-bg-darker) !important;
    border-top: 1px solid var(--ws-border-light) !important;
    margin-top: 60px !important;
}

.cprrght-sec p {
    color: var(--ws-text-muted) !important;
    font-size: 13px !important;
}

.cprrght-sec a {
    color: var(--ws-primary-light) !important;
    transition: var(--ws-transition-fast);
}

.cprrght-sec a:hover {
    color: var(--ws-accent) !important;
}

/* ================================================
   ALERTS & NOTIFICATIONS
   ================================================ */
.alert {
    border-radius: 12px !important;
    padding: 16px 24px !important;
    font-size: 14px !important;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #10B981 !important;
}

.alert-danger {
    background: rgba(244, 63, 94, 0.1) !important;
    border-color: rgba(244, 63, 94, 0.3) !important;
    color: var(--ws-accent) !important;
}

/* ================================================
   SIDE CART OVERRIDES
   ================================================ */
.sideCart-wrapper {
    background: var(--ws-bg-card) !important;
    border-left: 1px solid var(--ws-border) !important;
}

.sideCart-wrapper .widget_title {
    color: var(--ws-text-primary) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid var(--ws-border-light) !important;
}

.sideCart-wrapper .cart_list li {
    border-bottom: 1px solid var(--ws-border-light) !important;
    padding: 16px 0 !important;
}

.sideCart-wrapper .remove {
    color: var(--ws-accent) !important;
}

.sideCart-wrapper .remove:hover {
    color: var(--ws-accent-light) !important;
}

.sideCart-wrapper .prductsde_info {
    color: var(--ws-text-primary) !important;
}

.sideCart-wrapper .total {
    border-top: 1px solid var(--ws-border-light) !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
}

.sideCart-wrapper .amount {
    color: var(--ws-primary-light) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
}

/* ================================================
   ABOUT SECTION OVERRIDES
   ================================================ */
.about-section {
    background: var(--ws-bg-dark) !important;
    padding: 100px 0 !important;
}

.about-section .text-dark h2 {
    font-size: 42px !important;
    margin-bottom: 16px !important;
}

.about-section .text-dark h4 {
    color: var(--ws-primary-light) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 24px !important;
}

.about-section .text-dark p {
    color: var(--ws-text-muted) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

/* About Images */
.about-vimg img,
.about-vimg1 img,
.about-vimg2 img {
    border-radius: 16px !important;
    border: 1px solid var(--ws-border-light) !important;
    box-shadow: var(--ws-glow-primary);
}

/* Section Divider */
.section_divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section_divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.section_divider .st0 {
    fill: var(--ws-bg-card);
}

.section_divider .st1 {
    fill: var(--ws-bg-dark);
}

/* ================================================
   MOBILE NAVIGATION
   ================================================ */
.mobile-nav {
    background: var(--ws-bg-darker) !important;
}

.mobile-nav-menu a {
    color: var(--ws-text-primary) !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--ws-border-light) !important;
}

.mobile-nav-close {
    color: var(--ws-text-primary) !important;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
    }
}

/* Apply animations */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */
@media (max-width: 992px) {
    .hero-banner-1 h1 {
        font-size: 48px !important;
    }
    
    .heading h2 {
        font-size: 32px !important;
    }
    
    .how-steps {
        gap: 24px;
    }
    
    .bp-steps {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-banner-1 {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-banner-1 h1 {
        font-size: 36px !important;
    }
    
    .hero-banner-1 .btn-block {
        flex-direction: column;
    }
    
    .hero-banner-1 .cus-btn {
        width: 100%;
        justify-content: center;
    }
    
    .heading h2 {
        font-size: 28px !important;
    }
    
    .how-steps,
    .bp-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .how-step,
    .bp-step {
        max-width: 100%;
    }
    
    .bp-card {
        padding: 24px !important;
    }
}

@media (max-width: 576px) {
    .hero-banner-1 h1 {
        font-size: 28px !important;
    }
    
    .hero-banner-1 h6 {
        font-size: 14px !important;
    }
    
    .heading h2 {
        font-size: 24px !important;
    }
}

/* ================================================
   HOW IT WORKS (Inside Points Top-Up)
   ================================================ */
.bp-how-works-section {
    margin-top: 60px !important;
    text-align: center !important;
}

.bp-how-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--ws-text-primary) !important;
    margin-bottom: 40px !important;
}

.bp-how-steps {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: wrap !important;
}

.bp-how-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.bp-how-number {
    width: 64px !important;
    height: 64px !important;
    background: var(--ws-bg-card) !important;
    border: 2px solid var(--ws-primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--ws-primary-light) !important;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3) !important;
    transition: var(--ws-transition) !important;
}

.bp-how-step:hover .bp-how-number {
    background: var(--ws-primary) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.bp-how-step span {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ws-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}

.bp-how-connector {
    width: 80px !important;
    height: 2px !important;
    background: linear-gradient(90deg, var(--ws-primary), var(--ws-border-light), var(--ws-primary)) !important;
    margin: 0 20px !important;
}

@media (max-width: 768px) {
    .bp-how-steps {
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    .bp-how-connector {
        width: 2px !important;
        height: 40px !important;
        margin: 0 !important;
        background: linear-gradient(180deg, var(--ws-primary), var(--ws-border-light), var(--ws-primary)) !important;
    }
    
    .bp-how-title {
        font-size: 24px !important;
    }
}

/* ================================================
   POINTS TOP-UP RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .bp-calculator-card {
        margin-top: 30px !important;
    }
    
    .bp-equal-height {
        flex-direction: column !important;
    }
    
    .bp-equal-height > [class*="col-"] {
        display: block !important;
    }
    
    .bp-calc-input {
        width: 100px !important;
        font-size: 16px !important;
    }
    
    .bp-calc-total .bp-calc-input {
        font-size: 20px !important;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.color-white {
    color: var(--ws-text-primary) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--ws-primary-light), var(--ws-accent)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.lightest-gray {
    color: var(--ws-text-muted) !important;
}

.medium-gray {
    color: var(--ws-text-muted) !important;
}

.text-dark {
    color: var(--ws-text-primary) !important;
}

/* ================================================
   FOCUS STATES FOR ACCESSIBILITY
   ================================================ */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--ws-primary) !important;
    outline-offset: 2px !important;
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================
   HOME REFRESH
   ================================================ */
.home-refresh-hero.hero-banner-red {
    min-height: 760px !important;
    padding: 128px 0 72px !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 122, 0, 0.24), transparent 26%),
        radial-gradient(circle at 80% 62%, rgba(122, 7, 7, 0.45), transparent 34%),
        linear-gradient(135deg, #080101 0%, #190303 42%, #430505 100%) !important;
}

.home-refresh-hero .hero-top-headline {
    max-width: 980px !important;
    margin: 0 auto !important;
    color: #ffffff !important;
    font-size: clamp(38px, 6.4vw, 86px) !important;
    line-height: 0.95 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.28) !important;
}

.home-refresh-hero .massive-background-text {
    opacity: 0.2 !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}

.home-refresh-hero .hero-middle-area {
    height: 500px !important;
    margin: 4px 0 22px !important;
}

.home-refresh-hero .hero-game-showcase {
    position: relative !important;
    z-index: 4 !important;
    width: min(100%, 1040px) !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr) !important;
    gap: 18px !important;
    padding: 18px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.58), rgba(8, 1, 1, 0.78)) !important;
    box-shadow: 0 24px 86px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px) !important;
}

.home-refresh-hero .hero-game-stack {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(160px, 1fr) !important;
    gap: 18px !important;
}

.home-refresh-hero .hero-game-card {
    position: relative !important;
    display: block !important;
    min-height: 160px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    background: rgba(8, 1, 1, 0.62) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
    text-decoration: none !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.home-refresh-hero .hero-game-card-large {
    min-height: 338px !important;
}

.home-refresh-hero .hero-game-card-wide {
    grid-column: span 2 !important;
}

.home-refresh-hero .hero-game-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 177, 59, 0.68) !important;
    box-shadow: 0 24px 76px rgba(255, 76, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

.home-refresh-hero .hero-game-image,
.home-refresh-hero .hero-game-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.home-refresh-hero .hero-game-image img {
    object-fit: cover !important;
    object-position: center !important;
    filter: saturate(1.08) contrast(1.06) !important;
    transition: transform 0.35s ease !important;
}

.home-refresh-hero .hero-game-card:hover .hero-game-image img {
    transform: scale(1.06) !important;
}

.home-refresh-hero .hero-game-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(8, 1, 1, 0.04) 0%, rgba(8, 1, 1, 0.58) 48%, rgba(8, 1, 1, 0.94) 100%),
        linear-gradient(90deg, rgba(255, 76, 0, 0.14), transparent 55%) !important;
    z-index: 1 !important;
}

.home-refresh-hero .hero-game-content {
    position: absolute !important;
    inset: auto 18px 18px !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 7px !important;
}

.home-refresh-hero .hero-game-badge {
    display: inline-flex !important;
    min-width: 40px !important;
    min-height: 32px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    color: #ffd28b !important;
    background: rgba(8, 1, 1, 0.72) !important;
    border: 1px solid rgba(255, 106, 0, 0.36) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.home-refresh-hero .hero-game-content h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(20px, 2vw, 32px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.58) !important;
}

.home-refresh-hero .hero-game-card:not(.hero-game-card-large) .hero-game-content h3 {
    font-size: clamp(17px, 1.45vw, 23px) !important;
}

.home-refresh-hero .hero-game-cta {
    color: #ffb13b !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
}

.home-refresh-hero .characters-container {
    max-width: 1080px !important;
    margin: 0 auto !important;
}

.home-refresh-page .game-grid-section,
.home-refresh-page .features-section,
.home-refresh-page .bp-topup-section {
    isolation: isolate !important;
}

.home-refresh-page .section-header {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.home-refresh-page .game-grid-section {
    background:
        linear-gradient(180deg, #080101 0%, #130202 100%) !important;
}

.home-refresh-page .gear-big,
.home-refresh-page .gear-small,
.home-refresh-page .gear-horizontal,
.home-refresh-page .bento-card,
.home-refresh-page .bp-card {
    border-radius: 8px !important;
}

.home-refresh-page .gear-big,
.home-refresh-page .gear-small,
.home-refresh-page .gear-horizontal {
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34) !important;
}

.home-refresh-page .features-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 106, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #100202 0%, #080101 100%) !important;
}

.home-refresh-page .bento-grid {
    align-items: stretch !important;
}

.home-refresh-page .bento-card {
    min-height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.home-refresh-page .bp-topup-section {
    overflow: hidden !important;
    padding: 118px 0 !important;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 106, 0, 0.18), transparent 28%),
        radial-gradient(circle at 86% 84%, rgba(255, 177, 59, 0.1), transparent 30%),
        linear-gradient(135deg, #080101 0%, #170303 48%, #0b0101 100%) !important;
}

.home-refresh-page .bp-topup-section::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 106, 0, 0.12);
    pointer-events: none;
    z-index: 1;
}

.home-refresh-page .bp-topup-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.home-refresh-page .bp-topup-disclaimer {
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 34px !important;
}

.home-refresh-page .bp-topup-header {
    max-width: 820px !important;
    margin: 0 auto !important;
}

.home-refresh-page .bp-topup-header h2 {
    font-size: clamp(38px, 5vw, 72px) !important;
    line-height: 0.95 !important;
    margin-bottom: 16px !important;
}

.home-refresh-page .bp-topup-tagline {
    font-size: 14px !important;
    color: #ffb13b !important;
}

.home-refresh-page .bp-topup-intro {
    max-width: 920px !important;
    margin-bottom: 58px !important;
}

.home-refresh-page .bp-equal-height {
    align-items: stretch !important;
}

.home-refresh-page .bp-equal-height > [class*="col-"] {
    margin-bottom: 24px !important;
}

.home-refresh-page .bp-card {
    background:
        linear-gradient(135deg, rgba(30, 4, 4, 0.94), rgba(8, 1, 1, 0.96)) !important;
    border-color: rgba(255, 106, 0, 0.28) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38) !important;
}

.home-refresh-page .bp-calculator-card {
    border-color: rgba(255, 177, 59, 0.5) !important;
    box-shadow: 0 26px 90px rgba(255, 76, 0, 0.13) !important;
}

.home-refresh-page .bp-bonus-table {
    overflow: hidden !important;
}

.home-refresh-page .bp-bonus-table th,
.home-refresh-page .bp-bonus-table td {
    vertical-align: middle !important;
}

.home-refresh-page .bp-calc-results {
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    background: rgba(8, 1, 1, 0.7) !important;
}

.home-refresh-page .bp-btn-primary {
    min-height: 54px !important;
}

.home-refresh-page .bp-how-works-section {
    margin-top: 58px !important;
}

.home-refresh-page .bp-how-steps {
    padding: 28px !important;
    border: 1px solid rgba(255, 106, 0, 0.14) !important;
    background: rgba(8, 1, 1, 0.45) !important;
    border-radius: 8px !important;
}

@media (max-width: 991px) {
    .home-refresh-hero.hero-banner-red {
        min-height: auto !important;
        padding: 116px 0 58px !important;
    }

    .home-refresh-hero .hero-middle-area {
        height: 360px !important;
    }

    .home-refresh-hero .hero-game-showcase {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
    }

    .home-refresh-hero .hero-game-card-large {
        min-height: 250px !important;
    }

    .home-refresh-hero .hero-game-stack {
        grid-auto-rows: minmax(145px, 1fr) !important;
    }

    .home-refresh-page .bp-topup-section {
        padding: 82px 0 !important;
    }
}

@media (max-width: 575px) {
    .home-refresh-hero .hero-middle-area {
        height: auto !important;
        min-height: 620px !important;
    }

    .home-refresh-hero .hero-game-showcase {
        padding: 12px !important;
        gap: 12px !important;
    }

    .home-refresh-hero .hero-game-stack {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .home-refresh-hero .hero-game-card,
    .home-refresh-hero .hero-game-card-large,
    .home-refresh-hero .hero-game-card-wide {
        grid-column: auto !important;
        min-height: 150px !important;
    }

    .home-refresh-page .bp-topup-disclaimer p {
        align-items: flex-start !important;
    }

    .home-refresh-page .bp-card {
        padding: 24px 18px !important;
    }

    .home-refresh-page .bp-how-steps {
        padding: 24px 16px !important;
    }
}

/* ================================================
   PRODUCT DETAIL TRAINING TAB
   ================================================ */
.training-tab-card .tab-content-text {
    margin-bottom: 16px !important;
}

.training-tab-subtitle {
    color: var(--ws-text-primary, #ffffff) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
}

.training-tab-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin-top: 30px !important;
}

.training-tab-panel {
    background: rgba(8, 1, 1, 0.58) !important;
    border: 1px solid rgba(255, 76, 0, 0.16) !important;
    border-radius: 8px !important;
    padding: 26px !important;
}

.training-tab-panel h4,
.training-tab-final h4 {
    color: var(--ws-text-primary, #ffffff) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
}

.training-tab-panel ul {
    color: var(--ws-text-muted, rgba(255, 255, 255, 0.65)) !important;
    margin: 0 0 24px !important;
    padding-left: 20px !important;
}

.training-tab-panel li {
    margin-bottom: 10px !important;
    line-height: 1.65 !important;
}

.training-tab-panel p,
.training-tab-final p {
    color: var(--ws-text-muted, rgba(255, 255, 255, 0.65)) !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}

.training-tab-final {
    margin-top: 24px !important;
    padding: 24px !important;
    border-left: 4px solid #ff4c00 !important;
    background: rgba(255, 76, 0, 0.08) !important;
    border-radius: 8px !important;
}

@media (max-width: 991px) {
    .training-tab-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================
   THEMED CART DRAWER & BACK TO TOP
   ================================================ */
body #backto-top.back-to-top {
    right: 24px !important;
    bottom: 24px !important;
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #fff7ed !important;
    background: linear-gradient(135deg, #ff4c00 0%, #b91408 48%, #180202 100%) !important;
    border: 1px solid rgba(255, 168, 76, 0.68) !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    transform: none !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%) !important;
    z-index: 99990 !important;
}

body #backto-top.back-to-top:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff8a1d 0%, #ff4c00 46%, #2a0301 100%) !important;
    border-color: rgba(255, 210, 139, 0.9) !important;
    box-shadow: 0 20px 42px rgba(255, 106, 0, 0.42), 0 0 0 3px rgba(255, 106, 0, 0.1) !important;
    transform: translateY(-3px) !important;
}

body #backto-top.back-to-top i {
    color: inherit !important;
    line-height: 1 !important;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper {
    background: rgba(6, 0, 0, 0.74) !important;
    backdrop-filter: blur(8px);
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .sidemenu-content {
    width: min(450px, 100vw) !important;
    padding: 58px 28px 34px !important;
    color: var(--ws-text-primary, #ffffff) !important;
    background:
        linear-gradient(145deg, rgba(37, 3, 3, 0.98) 0%, rgba(10, 1, 1, 0.98) 52%, rgba(48, 6, 2, 0.98) 100%) !important;
    border-left: 1px solid rgba(255, 106, 0, 0.34) !important;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.55), inset 1px 0 0 rgba(255, 255, 255, 0.05) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .sidemenu-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.28;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .widget_shopping_cart {
    position: relative !important;
    z-index: 1 !important;
}

body #main-wrapper .sideCart-wrapper .widget_title {
    color: var(--ws-text-primary, #ffffff) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    padding: 0 58px 18px 0 !important;
    margin-bottom: 22px !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.24) !important;
    text-transform: uppercase !important;
}

body #main-wrapper .sideCart-wrapper .cart_list {
    display: grid !important;
    gap: 14px !important;
}

body #main-wrapper .sideCart-wrapper .mini_cart_item {
    padding: 16px 48px 16px 16px !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.68) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .sideCart-wrapper .mini_cart_item:hover {
    border-color: rgba(255, 138, 29, 0.46) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

body #main-wrapper .sideCart-wrapper .prductsde_info {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    color: var(--ws-text-primary, #ffffff) !important;
}

body #main-wrapper .sideCart-wrapper .prductsde_info img {
    width: 72px !important;
    height: 72px !important;
    flex: 0 0 72px !important;
    object-fit: cover !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 106, 0, 0.34) !important;
    border-radius: 8px !important;
    background: rgba(255, 106, 0, 0.08) !important;
}

body #main-wrapper .sideCart-wrapper .cart-product-info {
    min-width: 0 !important;
}

body #main-wrapper .sideCart-wrapper .cart-product-title {
    color: var(--ws-text-primary, #ffffff) !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
}

body #main-wrapper .sideCart-wrapper .cart-total-points,
body #main-wrapper .sideCart-wrapper .cart-info,
body #main-wrapper .sideCart-wrapper .cart-info p,
body #main-wrapper .sideCart-wrapper .mini_cart_item p,
body #main-wrapper .sideCart-wrapper .mini_cart_item span {
    color: rgba(255, 255, 255, 0.78) !important;
}

body #main-wrapper .sideCart-wrapper .cart-total-points {
    color: #ffd28b !important;
    font-weight: 800 !important;
}

body #main-wrapper .sideCart-wrapper .car-hours-group {
    margin: 8px 0 !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    border-radius: 8px !important;
    background: rgba(255, 76, 0, 0.09) !important;
}

body #main-wrapper .sideCart-wrapper .car-hours-group h5 {
    color: #ffffff !important;
    font-size: 14px !important;
    margin-bottom: 4px !important;
}

body #main-wrapper .sideCart-wrapper .remove,
body #main-wrapper .sideCart-wrapper .training-remove {
    color: #ffb15c !important;
}

body #main-wrapper .offcanvas-wrapper .widget_shopping_cart .cart_list a.remove {
    top: 16px !important;
    left: auto !important;
    right: 14px !important;
    transform: none !important;
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 106, 0, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .sideCart-wrapper .remove:hover,
body #main-wrapper .sideCart-wrapper .training-remove:hover {
    color: #ffffff !important;
    background: rgba(255, 76, 0, 0.22) !important;
    border-color: rgba(255, 138, 29, 0.72) !important;
}

body #main-wrapper .sideCart-wrapper .total {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 18px !important;
    margin-top: 22px !important;
    margin-bottom: 18px !important;
    border-top: 1px solid rgba(255, 106, 0, 0.28) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.18) !important;
    border-radius: 8px !important;
    background: rgba(255, 76, 0, 0.08) !important;
    color: var(--ws-text-primary, #ffffff) !important;
}

body #main-wrapper .sideCart-wrapper .total strong {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

body #main-wrapper .sideCart-wrapper .amount {
    color: #ffd28b !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-align: right !important;
}

body #main-wrapper .sideCart-wrapper .buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-content: stretch !important;
    align-items: stretch !important;
}

body #main-wrapper .sideCart-wrapper .buttons .cus-btn {
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 15px 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    background:
        linear-gradient(135deg, rgba(255, 138, 29, 0.98) 0%, rgba(255, 45, 0, 0.98) 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%) !important;
}

body #main-wrapper .sideCart-wrapper .buttons .cus-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 34px rgba(255, 106, 0, 0.32) !important;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .closeButton {
    top: 20px !important;
    right: 20px !important;
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    color: #ffffff !important;
    background: rgba(255, 76, 0, 0.12) !important;
    border: 1px solid rgba(255, 106, 0, 0.38) !important;
    border-radius: 8px !important;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .closeButton:hover {
    background: #ff4c00 !important;
    border-color: #ff8a1d !important;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 6px !important;
    background: rgba(8, 1, 1, 0.9) !important;
}

body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-thumb {
    background: rgba(255, 106, 0, 0.72) !important;
    border-radius: 8px !important;
}

@media (max-width: 575px) {
    body #backto-top.back-to-top {
        right: 16px !important;
        bottom: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }

    body #main-wrapper .sideCart-wrapper.offcanvas-wrapper .sidemenu-content {
        padding: 56px 18px 28px !important;
    }

    body #main-wrapper .sideCart-wrapper .prductsde_info {
        gap: 12px !important;
    }
}

/* ================================================
   CART PAGE THEME ALIGNMENT
   ================================================ */
body #main-wrapper .cart-hero {
    margin-top: 0 !important;
    padding: 150px 0 72px !important;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 106, 0, 0.2), transparent 28%),
        radial-gradient(circle at 82% 56%, rgba(180, 20, 8, 0.32), transparent 34%),
        linear-gradient(135deg, #080101 0%, #1b0303 48%, #420604 100%) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.14) !important;
}

body #main-wrapper .cart-hero::before {
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px) !important;
    background-size: 52px 52px !important;
    opacity: 0.3 !important;
}

body #main-wrapper .cart-hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
}

body #main-wrapper .cart-hero-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(38px, 6vw, 76px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.34) !important;
    margin-bottom: 18px !important;
}

body #main-wrapper .cart-hero-subtitle {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

body #main-wrapper .cart-hero-subtitle a {
    color: rgba(255, 255, 255, 0.72) !important;
}

body #main-wrapper .cart-hero-subtitle a:hover,
body #main-wrapper .cart-hero-subtitle span {
    color: #ffb13b !important;
}

body #main-wrapper .cart-section {
    padding: 86px 0 !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #100202 0%, #080101 100%) !important;
}

body #main-wrapper .cart-grid {
    gap: 28px !important;
}

body #main-wrapper .cart-continue {
    margin-bottom: 26px !important;
}

body #main-wrapper .cart-continue-btn,
body #main-wrapper .cart-continue-shopping {
    color: rgba(255, 255, 255, 0.68) !important;
    font-weight: 700 !important;
}

body #main-wrapper .cart-continue-btn:hover,
body #main-wrapper .cart-continue-shopping:hover {
    color: #ffb13b !important;
}

body #main-wrapper .cart-product-card,
body #main-wrapper .cart-summary,
body #main-wrapper .cart-empty {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.82), rgba(8, 1, 1, 0.88)) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .cart-product-card {
    grid-template-columns: 132px minmax(0, 1fr) auto !important;
    padding: 22px !important;
}

body #main-wrapper .cart-product-card:hover {
    border-color: rgba(255, 138, 29, 0.5) !important;
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 106, 0, 0.12) !important;
}

body #main-wrapper .cart-product-image,
body #main-wrapper .cart-product-points-only {
    width: 132px !important;
    height: 96px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    background: rgba(8, 1, 1, 0.7) !important;
}

body #main-wrapper .cart-product-image img {
    transform: scale(1.01);
}

body #main-wrapper .cart-product-points-only {
    border-style: dashed !important;
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .cart-product-points-only svg,
body #main-wrapper .cart-empty-icon svg {
    color: #ffb13b !important;
}

body #main-wrapper .cart-product-points-only .points-badge {
    color: #ffd28b !important;
}

body #main-wrapper .cart-product-title {
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 900 !important;
}

body #main-wrapper .cart-product-price,
body #main-wrapper .cart-summary-item-label,
body #main-wrapper .cart-summary-row .label,
body #main-wrapper .cart-empty p {
    color: rgba(255, 255, 255, 0.64) !important;
}

body #main-wrapper .cart-product-price span,
body #main-wrapper .cart-product-total,
body #main-wrapper .cart-summary-item-value,
body #main-wrapper .cart-summary-row .value,
body #main-wrapper .cart-summary-row.total .value {
    color: #ffd28b !important;
}

body #main-wrapper .cart-product-total {
    font-size: 24px !important;
    font-weight: 900 !important;
}

body #main-wrapper .cart-remove-btn {
    border-radius: 8px !important;
    color: #ffb15c !important;
    border-color: rgba(255, 106, 0, 0.28) !important;
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .cart-remove-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 76, 0, 0.24) !important;
    border-color: rgba(255, 138, 29, 0.7) !important;
}

body #main-wrapper .cart-summary {
    overflow: hidden !important;
}

body #main-wrapper .cart-summary-header {
    padding: 24px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #b91408 100%) !important;
    border-bottom: 1px solid rgba(255, 210, 139, 0.24) !important;
}

body #main-wrapper .cart-summary-title {
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .cart-summary-body {
    padding: 28px !important;
}

body #main-wrapper .cart-summary-items,
body #main-wrapper .cart-summary-row.total {
    border-color: rgba(255, 106, 0, 0.2) !important;
}

body #main-wrapper .cart-summary-row.total .label {
    color: #ffffff !important;
}

body #main-wrapper .cart-checkout-btn,
body #main-wrapper .cart-empty-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24) !important;
}

body #main-wrapper .cart-checkout-btn:hover,
body #main-wrapper .cart-empty-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 42px rgba(255, 106, 0, 0.34) !important;
}

body #main-wrapper .cart-secure-badge {
    border-radius: 8px !important;
    color: #ffd28b !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .cart-empty {
    padding: 76px 32px !important;
}

body #main-wrapper .cart-empty-icon {
    border-radius: 8px !important;
    background: rgba(255, 76, 0, 0.08) !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
}

body #main-wrapper .cart-empty h3 {
    color: #ffffff !important;
}

@media (max-width: 991px) {
    body #main-wrapper .cart-product-card {
        grid-template-columns: 112px minmax(0, 1fr) !important;
    }

    body #main-wrapper .cart-product-actions {
        grid-column: 1 / -1 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    body #main-wrapper .cart-product-image,
    body #main-wrapper .cart-product-points-only {
        width: 112px !important;
        height: 88px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .cart-hero {
        padding: 124px 0 54px !important;
    }

    body #main-wrapper .cart-section {
        padding: 58px 0 !important;
    }

    body #main-wrapper .cart-product-card {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
    }

    body #main-wrapper .cart-product-image,
    body #main-wrapper .cart-product-points-only {
        width: 100% !important;
        height: 170px !important;
    }

    body #main-wrapper .cart-product-actions {
        align-items: stretch !important;
        flex-direction: column !important;
    }
}

/* ================================================
   AUTH PAGES THEME REFRESH
   ================================================ */
body #main-wrapper .login-hero-banner,
body #main-wrapper .register-hero-banner {
    min-height: 470px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 16% 24%, rgba(255, 106, 0, 0.22), transparent 30%),
        radial-gradient(circle at 82% 58%, rgba(180, 20, 8, 0.36), transparent 34%),
        linear-gradient(135deg, #080101 0%, #1a0303 48%, #3f0604 100%) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.14) !important;
}

body #main-wrapper .login-hero-bg,
body #main-wrapper .register-hero-bg {
    opacity: 0.16 !important;
    mix-blend-mode: luminosity !important;
    filter: saturate(0.5) contrast(1.1) !important;
}

body #main-wrapper .login-hero-overlay,
body #main-wrapper .register-hero-overlay {
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 1, 1, 0.08), rgba(8, 1, 1, 0.62)) !important;
    background-size: 52px 52px, 52px 52px, auto !important;
}

body #main-wrapper .login-hero-particles .particle,
body #main-wrapper .register-hero-particles .register-particle {
    width: 4px !important;
    height: 4px !important;
    background: #ffb13b !important;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.72) !important;
}

body #main-wrapper .login-hero-content,
body #main-wrapper .register-hero-content {
    max-width: 860px !important;
    margin: 0 auto !important;
}

body #main-wrapper .login-hero-icon,
body #main-wrapper .register-hero-icon,
body #main-wrapper .login-left-content .game-icon,
body #main-wrapper .register-left-content .game-icon {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #b91408 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.44) !important;
    box-shadow: 0 18px 38px rgba(255, 76, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

body #main-wrapper .login-hero-title,
body #main-wrapper .register-hero-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(40px, 6.2vw, 78px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.34) !important;
    filter: none !important;
}

body #main-wrapper .login-hero-subtitle,
body #main-wrapper .register-hero-subtitle {
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 17px !important;
}

body #main-wrapper .login-hero-breadcrumb,
body #main-wrapper .register-hero-breadcrumb {
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.58) !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .login-hero-breadcrumb a,
body #main-wrapper .login-hero-breadcrumb span,
body #main-wrapper .register-hero-breadcrumb a,
body #main-wrapper .register-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.7) !important;
}

body #main-wrapper .login-hero-breadcrumb a:hover,
body #main-wrapper .login-hero-breadcrumb span.active,
body #main-wrapper .register-hero-breadcrumb a:hover,
body #main-wrapper .register-hero-breadcrumb span.active {
    color: #ffb13b !important;
}

body #main-wrapper > .container:has(.login-page-wrapper),
body #main-wrapper > .container:has(.register-page-wrapper) {
    max-width: 1220px !important;
}

body #main-wrapper .login-page-wrapper,
body #main-wrapper .register-page-wrapper {
    min-height: auto !important;
    padding: 86px 0 !important;
    align-items: stretch !important;
}

body #main-wrapper .login-page-wrapper::before,
body #main-wrapper .register-page-wrapper::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 30%, rgba(255, 106, 0, 0.1), transparent 28%),
        linear-gradient(180deg, #100202 0%, #080101 100%);
}

body #main-wrapper .login-left-panel,
body #main-wrapper .register-left-panel,
body #main-wrapper .login-right-panel,
body #main-wrapper .register-right-panel {
    border-radius: 8px !important;
    min-height: auto !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.84), rgba(8, 1, 1, 0.9)) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .login-left-panel,
body #main-wrapper .register-left-panel {
    padding: 58px 40px !important;
    overflow: hidden !important;
}

body #main-wrapper .login-left-panel::before,
body #main-wrapper .register-left-panel::before {
    opacity: 0.12 !important;
    filter: saturate(0.45) contrast(1.1) !important;
}

body #main-wrapper .login-left-panel::after,
body #main-wrapper .register-left-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.28;
}

body #main-wrapper .login-left-content,
body #main-wrapper .register-left-content {
    position: relative !important;
    z-index: 2 !important;
}

body #main-wrapper .login-left-content h2,
body #main-wrapper .register-left-content h2,
body #main-wrapper .login-form-header h3,
body #main-wrapper .register-form-header h3 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    line-height: 1.08 !important;
}

body #main-wrapper .login-left-content h2,
body #main-wrapper .register-left-content h2 {
    font-size: clamp(30px, 3vw, 44px) !important;
}

body #main-wrapper .login-left-content p,
body #main-wrapper .register-left-content p,
body #main-wrapper .login-form-header p,
body #main-wrapper .register-form-header p,
body #main-wrapper .login-register-link p,
body #main-wrapper .register-login-link p,
body #main-wrapper .login-checkbox label {
    color: rgba(255, 255, 255, 0.66) !important;
}

body #main-wrapper .login-feature-item,
body #main-wrapper .register-feature-item {
    padding: 14px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 106, 0, 0.16) !important;
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.48) !important;
}

body #main-wrapper .login-feature-item .feature-icon,
body #main-wrapper .register-feature-item .feature-icon {
    border-radius: 8px !important;
    color: #ffb13b !important;
    border-color: rgba(255, 106, 0, 0.35) !important;
    background: rgba(255, 76, 0, 0.1) !important;
}

body #main-wrapper .login-feature-item .feature-icon svg,
body #main-wrapper .register-feature-item .feature-icon svg {
    color: #ffb13b !important;
}

body #main-wrapper .login-right-panel,
body #main-wrapper .register-right-panel {
    padding: 56px 48px !important;
}

body #main-wrapper .login-form-group label,
body #main-wrapper .register-form-group label {
    color: rgba(255, 255, 255, 0.72) !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .login-form-group input,
body #main-wrapper .register-form-group input,
body #main-wrapper .register-captcha input {
    color: #ffffff !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.68) !important;
}

body #main-wrapper .login-form-group input:focus,
body #main-wrapper .register-form-group input:focus,
body #main-wrapper .register-captcha input:focus {
    border-color: rgba(255, 138, 29, 0.7) !important;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12), 0 14px 30px rgba(0, 0, 0, 0.24) !important;
}

body #main-wrapper .login-forgot a,
body #main-wrapper .login-register-link a,
body #main-wrapper .register-login-link a {
    color: #ffb13b !important;
}

body #main-wrapper .login-forgot a:hover,
body #main-wrapper .login-register-link a:hover,
body #main-wrapper .register-login-link a:hover {
    color: #ffd28b !important;
}

body #main-wrapper .login-submit-btn,
body #main-wrapper .register-submit-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24) !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%) !important;
}

body #main-wrapper .login-submit-btn:hover,
body #main-wrapper .register-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 42px rgba(255, 106, 0, 0.34) !important;
}

body #main-wrapper .login-checkbox input[type="checkbox"] {
    accent-color: #ff6a00 !important;
}

body #main-wrapper .register-captcha {
    gap: 12px !important;
}

body #main-wrapper .register-captcha img {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .login-page-wrapper,
    body #main-wrapper .register-page-wrapper {
        padding: 58px 0 !important;
    }

    body #main-wrapper .login-left-panel,
    body #main-wrapper .register-left-panel {
        border-radius: 8px 8px 0 0 !important;
    }

    body #main-wrapper .login-right-panel,
    body #main-wrapper .register-right-panel {
        border-radius: 0 0 8px 8px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .login-hero-banner,
    body #main-wrapper .register-hero-banner {
        min-height: 380px !important;
    }

    body #main-wrapper .login-left-panel,
    body #main-wrapper .register-left-panel,
    body #main-wrapper .login-right-panel,
    body #main-wrapper .register-right-panel {
        padding: 34px 20px !important;
    }
}

/* ================================================
   ORDER RESULT PAGES THEME REFRESH
   ================================================ */
body #main-wrapper .order-success-hero,
body #main-wrapper .order-failed-hero {
    min-height: 440px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 16% 24%, rgba(255, 106, 0, 0.22), transparent 30%),
        radial-gradient(circle at 82% 58%, rgba(180, 20, 8, 0.36), transparent 34%),
        linear-gradient(135deg, #080101 0%, #1a0303 48%, #3f0604 100%) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.14) !important;
}

body #main-wrapper .order-success-hero-bg,
body #main-wrapper .order-failed-hero-bg {
    opacity: 0.14 !important;
    mix-blend-mode: luminosity !important;
}

body #main-wrapper .order-success-hero-overlay,
body #main-wrapper .order-failed-hero-overlay {
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 1, 1, 0.08), rgba(8, 1, 1, 0.64)) !important;
    background-size: 52px 52px, 52px 52px, auto !important;
}

body #main-wrapper .success-particle,
body #main-wrapper .failed-particle {
    width: 4px !important;
    height: 4px !important;
    background: #ffb13b !important;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.72) !important;
}

body #main-wrapper .success-icon,
body #main-wrapper .failed-icon {
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #b91408 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.44) !important;
    box-shadow: 0 18px 38px rgba(255, 76, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

body #main-wrapper .order-success-title,
body #main-wrapper .order-failed-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(34px, 4.8vw, 62px) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    filter: none !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.34) !important;
}

body #main-wrapper .order-failed-subtitle,
body #main-wrapper .order-success-subtitle {
    color: rgba(255, 255, 255, 0.72) !important;
}

body #main-wrapper .order-success-body,
body #main-wrapper .order-failed-body {
    padding: 86px 0 !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #100202 0%, #080101 100%) !important;
}

body #main-wrapper .order-success-card,
body #main-wrapper .order-failed-card,
body #main-wrapper .order-invoice-box,
body #main-wrapper .order-error-box {
    border-radius: 8px !important;
    border-color: rgba(255, 106, 0, 0.2) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.84), rgba(8, 1, 1, 0.9)) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .order-success-card::before,
body #main-wrapper .order-failed-card::before {
    background: linear-gradient(90deg, #ff6a00, #ff2d00, #ffb13b) !important;
}

body #main-wrapper .order-invoice-label,
body #main-wrapper .order-error-label,
body #main-wrapper .order-message h5,
body #main-wrapper .order-message p,
body #main-wrapper .order-message li {
    color: rgba(255, 255, 255, 0.68) !important;
}

body #main-wrapper .order-invoice-number,
body #main-wrapper .order-error-message,
body #main-wrapper .order-message a {
    color: #ffd28b !important;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.28) !important;
}

body #main-wrapper .order-message h3 {
    color: #ffffff !important;
}

body #main-wrapper .btn-success-gaming,
body #main-wrapper .btn-failed-gaming,
body #main-wrapper .btn-secondary-gaming,
body #main-wrapper .btn-secondary-failed {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24) !important;
}

body #main-wrapper .btn-secondary-gaming,
body #main-wrapper .btn-secondary-failed {
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .btn-success-gaming:hover,
body #main-wrapper .btn-failed-gaming:hover,
body #main-wrapper .btn-secondary-gaming:hover,
body #main-wrapper .btn-secondary-failed:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 42px rgba(255, 106, 0, 0.34) !important;
}

/* ================================================
   CATEGORY LIST & PRODUCT CATEGORY THEME REFRESH
   ================================================ */
body #main-wrapper .cat-hero-banner,
body #main-wrapper .product-hero-banner {
    min-height: 480px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 16% 24%, rgba(255, 106, 0, 0.22), transparent 30%),
        radial-gradient(circle at 82% 58%, rgba(180, 20, 8, 0.36), transparent 34%),
        linear-gradient(135deg, #080101 0%, #1a0303 48%, #3f0604 100%) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.14) !important;
}

body #main-wrapper .cat-hero-bg,
body #main-wrapper .product-hero-bg {
    opacity: 0.18 !important;
    mix-blend-mode: luminosity !important;
    filter: saturate(0.6) contrast(1.1) !important;
}

body #main-wrapper .cat-hero-overlay,
body #main-wrapper .product-hero-overlay {
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 1, 1, 0.12), rgba(8, 1, 1, 0.66)) !important;
    background-size: 52px 52px, 52px 52px, auto !important;
}

body #main-wrapper .cat-hero-icon {
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #b91408 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.44) !important;
    box-shadow: 0 18px 38px rgba(255, 76, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

body #main-wrapper .product-particle {
    background: #ffb13b !important;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.72) !important;
}

body #main-wrapper .cat-hero-title,
body #main-wrapper .product-hero-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(38px, 6vw, 76px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.34) !important;
    filter: none !important;
    animation: none !important;
}

body #main-wrapper .cat-hero-subtitle,
body #main-wrapper .product-hero-subtitle {
    color: rgba(255, 255, 255, 0.72) !important;
}

body #main-wrapper .product-hero-content {
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr) !important;
    gap: 28px !important;
    align-items: center !important;
    text-align: left !important;
}

body #main-wrapper .product-hero-title-panel,
body #main-wrapper .product-hero-copy-panel {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.64), rgba(8, 1, 1, 0.76)) !important;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .product-hero-title-panel {
    padding: 30px !important;
}

body #main-wrapper .product-hero-copy-panel {
    padding: 28px 30px !important;
}

body #main-wrapper .product-hero-copy-panel .product-hero-subtitle {
    max-width: none !important;
    margin: 0 !important;
    color: rgba(255, 245, 235, 0.78) !important;
    font-size: clamp(16px, 1.5vw, 20px) !important;
    line-height: 1.75 !important;
}

body #main-wrapper .cat-hero-breadcrumb {
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.58) !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
}

body #main-wrapper .cat-hero-breadcrumb a,
body #main-wrapper .cat-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.7) !important;
}

body #main-wrapper .cat-hero-breadcrumb a:hover,
body #main-wrapper .cat-hero-breadcrumb span.active {
    color: #ffb13b !important;
}

body #main-wrapper .page-content,
body #main-wrapper .db-detail,
body #main-wrapper .product-grid-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #100202 0%, #080101 100%) !important;
}

body #main-wrapper .db-detail {
    padding: 86px 0 !important;
}

body #main-wrapper .db-detail .gt-shop-section {
    background: transparent !important;
}

body #main-wrapper .db-detail .product-card,
body #main-wrapper .product-card-new,
body #main-wrapper .no-products {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.84), rgba(8, 1, 1, 0.9)) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .db-detail .product-card:hover,
body #main-wrapper .product-card-new:hover {
    border-color: rgba(255, 138, 29, 0.5) !important;
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 106, 0, 0.12) !important;
}

body #main-wrapper .db-detail .product-card a,
body #main-wrapper .db-detail .product-card img,
body #main-wrapper .product-card-image,
body #main-wrapper .product-card-play,
body #main-wrapper .no-products-icon {
    border-radius: 8px !important;
}

body #main-wrapper .db-detail .product-card h4,
body #main-wrapper .db-detail .product-card h4 a,
body #main-wrapper .product-grid-header h2,
body #main-wrapper .product-card-title,
body #main-wrapper .no-products h3 {
    color: #ffffff !important;
}

body #main-wrapper .product-grid-header p,
body #main-wrapper .product-card-price-label,
body #main-wrapper .product-card-feature,
body #main-wrapper .no-products p {
    color: rgba(255, 255, 255, 0.66) !important;
}

body #main-wrapper .product-card-price-value,
body #main-wrapper .db-detail .product-card h4 a:hover {
    color: #ffd28b !important;
}

body #main-wrapper .category-filter-bar {
    top: 0 !important;
    z-index: 120 !important;
    background: rgba(8, 1, 1, 0.9) !important;
    border-color: rgba(255, 106, 0, 0.16) !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28) !important;
}

body #main-wrapper .category-pill,
body #main-wrapper .product-card-feature,
body #main-wrapper .view-all-btn {
    border-radius: 8px !important;
    border-color: rgba(255, 106, 0, 0.24) !important;
    background: rgba(255, 76, 0, 0.06) !important;
}

body #main-wrapper .category-pill:hover,
body #main-wrapper .category-pill.active,
body #main-wrapper .product-card-btn,
body #main-wrapper .view-all-btn:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border-color: rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24) !important;
}

body #main-wrapper .product-card-btn,
body #main-wrapper .view-all-btn {
    border-radius: 8px !important;
}

body #main-wrapper .product-card-play {
    width: auto !important;
    min-width: 54px !important;
    height: 44px !important;
    padding: 0 16px !important;
    border-radius: 8px !important;
}

body #main-wrapper .product-card-play svg {
    width: 22px !important;
    height: 22px !important;
    margin-left: 0 !important;
    color: #ffffff !important;
}

body #main-wrapper .product-card-footer {
    border-color: rgba(255, 106, 0, 0.18) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .product-hero-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .cat-hero-banner,
    body #main-wrapper .product-hero-banner,
    body #main-wrapper .order-success-hero,
    body #main-wrapper .order-failed-hero {
        min-height: 380px !important;
    }

    body #main-wrapper .db-detail,
    body #main-wrapper .product-grid-section,
    body #main-wrapper .order-success-body,
    body #main-wrapper .order-failed-body {
        padding: 58px 0 !important;
    }
}

/* ================================================
   CHECKOUT GAME CART THEME REFRESH
   ================================================ */
body #main-wrapper .pageheader-section {
    margin-top: 0 !important;
    padding: 150px 0 72px !important;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 106, 0, 0.2), transparent 28%),
        radial-gradient(circle at 82% 56%, rgba(180, 20, 8, 0.32), transparent 34%),
        linear-gradient(135deg, #080101 0%, #1b0303 48%, #420604 100%) !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.14) !important;
    overflow: hidden !important;
}

body #main-wrapper .pageheader-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.3;
}

body #main-wrapper .pageheader-section .container,
body #main-wrapper .pageheader-section .section-wrapper {
    position: relative !important;
    z-index: 1 !important;
}

body #main-wrapper .pageheader-title {
    color: #ffffff !important;
    font-size: clamp(38px, 6vw, 76px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.34) !important;
}

body #main-wrapper .pageheader-section .breadcrumb,
body #main-wrapper .pageheader-section .breadcrumb a,
body #main-wrapper .pageheader-section .breadcrumb-item,
body #main-wrapper .pageheader-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.72) !important;
}

body #main-wrapper .pageheader-section .breadcrumb a:hover,
body #main-wrapper .pageheader-section .ficon {
    color: #ffb13b !important;
}

body #main-wrapper .shop-cart {
    padding: 86px 0 !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #100202 0%, #080101 100%) !important;
}

body #main-wrapper .shop-cart .section-wrapper {
    gap: 24px 0 !important;
    padding: 26px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.72), rgba(8, 1, 1, 0.82)) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .shop-cart .section-wrapper > p {
    width: 100% !important;
    margin: 0 !important;
}

body #main-wrapper .shop-cart .section-wrapper > p .text-end {
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    margin-left: auto !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    background: rgba(255, 76, 0, 0.08) !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-weight: 800 !important;
}

body #main-wrapper .shop-cart .dash-epnt {
    color: #ffd28b !important;
}

body #main-wrapper .shop-cart .cart-top {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background: rgba(8, 1, 1, 0.52) !important;
    overflow: hidden !important;
}

body #main-wrapper .shop-cart .table {
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    border-color: rgba(255, 106, 0, 0.16) !important;
}

body #main-wrapper .shop-cart .table thead th {
    padding: 18px 20px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.28), rgba(185, 20, 8, 0.18)) !important;
    border-color: rgba(255, 106, 0, 0.2) !important;
    white-space: nowrap !important;
}

body #main-wrapper .shop-cart .table tbody td {
    padding: 20px !important;
    vertical-align: middle !important;
    color: rgba(255, 255, 255, 0.78) !important;
    border-color: rgba(255, 106, 0, 0.12) !important;
    background: transparent !important;
}

body #main-wrapper .shop-cart .table tbody tr:hover td {
    background: rgba(255, 76, 0, 0.05) !important;
}

body #main-wrapper .shop-cart .product-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

body #main-wrapper .shop-cart .p-thumb {
    width: 92px !important;
    height: 74px !important;
    flex: 0 0 92px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    background: rgba(8, 1, 1, 0.72) !important;
}

body #main-wrapper .shop-cart .p-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body #main-wrapper .shop-cart .p-content a {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

body #main-wrapper .shop-cart .p-content a:hover {
    color: #ffb13b !important;
}

body #main-wrapper .shop-cart .cat-price,
body #main-wrapper .shop-cart h4 {
    color: #ffd28b !important;
    font-weight: 900 !important;
}

body #main-wrapper .shop-cart .cat-edit a {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffb15c !important;
    border: 1px solid rgba(255, 106, 0, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .shop-cart .cat-edit a:hover {
    color: #ffffff !important;
    background: rgba(255, 76, 0, 0.24) !important;
    border-color: rgba(255, 138, 29, 0.7) !important;
}

body #main-wrapper .shop-cart .product-hours-group {
    background: rgba(255, 76, 0, 0.09) !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.74) !important;
}

body #main-wrapper .shop-cart .product-hours-group h5,
body #main-wrapper .shop-cart .product-hours-group p {
    color: #ffffff !important;
}

body #main-wrapper .shop-cart .product-hours-group a {
    background: #ff4c00 !important;
    border: 1px solid rgba(255, 184, 98, 0.55) !important;
}

body #main-wrapper .shop-cart .simple-cart-btn {
    width: 100% !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 16px 20px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24) !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%) !important;
}

body #main-wrapper .shop-cart .simple-cart-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 42px rgba(255, 106, 0, 0.34) !important;
}

@media (max-width: 767px) {
    body #main-wrapper .pageheader-section {
        padding: 124px 0 54px !important;
    }

    body #main-wrapper .shop-cart {
        padding: 58px 0 !important;
    }

    body #main-wrapper .shop-cart .section-wrapper {
        padding: 18px !important;
    }

    body #main-wrapper .shop-cart .product-item {
        min-width: 280px !important;
    }
}

/* ================================================
   HOME GAME GRID & TOPUP FRESHEN
   ================================================ */
body #main-wrapper .home-refresh-page .game-grid-section {
    position: relative !important;
    overflow: hidden !important;
    padding: 124px 0 !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.18), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(255, 177, 59, 0.1), transparent 28%),
        linear-gradient(135deg, #080101 0%, #170303 48%, #0b0101 100%) !important;
}

body #main-wrapper .home-refresh-page .game-grid-section::before {
    content: "";
    position: absolute;
    inset: 24px;
    pointer-events: none;
    border: 1px solid rgba(255, 106, 0, 0.12);
    z-index: 1;
}

body #main-wrapper .home-refresh-page .game-grid-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 76, 0, 0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 76, 0, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.28;
    z-index: 1;
}

body #main-wrapper .home-refresh-page .game-grid-section .container {
    position: relative !important;
    z-index: 2 !important;
}

body #main-wrapper .home-refresh-page .game-grid-section .section-header {
    max-width: 840px !important;
    margin-bottom: 54px !important;
}

body #main-wrapper .home-refresh-page .game-grid-section .section-tag {
    border-radius: 8px !important;
    padding: 10px 16px !important;
    background: rgba(255, 76, 0, 0.09) !important;
    border-color: rgba(255, 106, 0, 0.34) !important;
    color: #ffb13b !important;
    clip-path: none !important;
}

body #main-wrapper .home-refresh-page .game-grid-section .section-header h2 {
    font-size: clamp(40px, 5.4vw, 78px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    margin-top: 18px !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.28) !important;
}

body #main-wrapper .home-refresh-page .game-carousel-wrapper {
    padding: 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.68), rgba(8, 1, 1, 0.78)) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .home-refresh-page .gear-carousel {
    gap: 22px !important;
}

body #main-wrapper .home-refresh-page .gear-big,
body #main-wrapper .home-refresh-page .gear-small,
body #main-wrapper .home-refresh-page .gear-horizontal {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    background: rgba(8, 1, 1, 0.58) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .home-refresh-page .gear-big:hover,
body #main-wrapper .home-refresh-page .gear-small:hover,
body #main-wrapper .home-refresh-page .gear-horizontal:hover {
    border-color: rgba(255, 138, 29, 0.58) !important;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 106, 0, 0.18) !important;
    transform: translateY(-5px) !important;
}

body #main-wrapper .home-refresh-page .gear-overlay {
    background:
        linear-gradient(180deg, rgba(8, 1, 1, 0.02) 0%, rgba(8, 1, 1, 0.62) 50%, rgba(8, 1, 1, 0.96) 100%) !important;
}

body #main-wrapper .home-refresh-page .gear-badge {
    border-radius: 8px !important;
    color: #ffd28b !important;
    background: rgba(8, 1, 1, 0.72) !important;
    border-color: rgba(255, 106, 0, 0.34) !important;
    clip-path: none !important;
}

body #main-wrapper .home-refresh-page .gear-content h3 {
    color: #ffffff !important;
    font-size: clamp(22px, 2.2vw, 36px) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .home-refresh-page .gear-cta {
    color: #ffb13b !important;
    font-weight: 900 !important;
}

body #main-wrapper .home-refresh-page .game-carousel-nav {
    margin-top: 30px !important;
    padding: 18px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.14) !important;
    background: rgba(8, 1, 1, 0.52) !important;
}

body #main-wrapper .home-refresh-page .carousel-nav-btn {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.28) !important;
    color: #ffffff !important;
    background: rgba(255, 76, 0, 0.08) !important;
}

body #main-wrapper .home-refresh-page .carousel-nav-btn:hover {
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border-color: rgba(255, 184, 98, 0.5) !important;
}

body #main-wrapper .home-refresh-page .carousel-dots .dot {
    width: 10px !important;
    height: 10px !important;
    border: 1px solid rgba(255, 106, 0, 0.5) !important;
    background: rgba(255, 76, 0, 0.16) !important;
}

body #main-wrapper .home-refresh-page .carousel-dots .dot.active {
    width: 32px !important;
    border-radius: 8px !important;
    background: #ffb13b !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .container {
    padding: 34px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.16) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.5), rgba(8, 1, 1, 0.7)) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-overview {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr) !important;
    gap: 28px !important;
    align-items: stretch !important;
    margin-bottom: 30px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-copy,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-works-section {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.16) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.7), rgba(8, 1, 1, 0.82)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-copy {
    padding: 28px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-disclaimer {
    border-radius: 8px !important;
    clip-path: none !important;
    background: rgba(255, 76, 0, 0.08) !important;
    border-color: rgba(255, 106, 0, 0.28) !important;
    border-left-width: 1px !important;
    max-width: none !important;
    margin: 0 0 24px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-header {
    padding: 8px 0 0 !important;
    max-width: none !important;
    margin: 0 !important;
    text-align: left !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-header h2 {
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.28) !important;
    margin-bottom: 14px !important;
    font-size: clamp(34px, 4.5vw, 64px) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-intro {
    padding: 18px 24px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.14) !important;
    background: rgba(8, 1, 1, 0.38) !important;
    max-width: none !important;
    margin: 24px 0 0 !important;
    text-align: left !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-works-section {
    margin-top: 0 !important;
    padding: 28px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-title {
    margin-bottom: 22px !important;
    color: #ffffff !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-steps {
    height: calc(100% - 56px) !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-step {
    min-height: 170px !important;
    padding: 18px 14px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.16) !important;
    background: rgba(8, 1, 1, 0.54) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-number {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.42) !important;
    box-shadow: 0 12px 28px rgba(255, 76, 0, 0.22) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-step span {
    color: rgba(255, 245, 235, 0.82) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-connector {
    display: none !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-equal-height {
    margin-left: -12px !important;
    margin-right: -12px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-equal-height > [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-card {
    border-radius: 8px !important;
    border-color: rgba(255, 106, 0, 0.24) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.94)) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-card-title,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-calculator-card h4 {
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-btn-primary {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 16px 34px rgba(255, 76, 0, 0.24) !important;
}

/* HOME FEATURES SHOWCASE REFRESH */
body #main-wrapper .home-refresh-page .features-section {
    padding: 112px 0 !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 106, 0, 0.16), transparent 30%),
        radial-gradient(circle at 88% 68%, rgba(255, 45, 0, 0.12), transparent 34%),
        linear-gradient(180deg, #0a0101 0%, #170202 50%, #080101 100%) !important;
}

body #main-wrapper .home-refresh-page .features-section .section-header {
    margin-bottom: 46px !important;
}

body #main-wrapper .home-refresh-page .features-section .section-header h2 {
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.3) !important;
}

body #main-wrapper .home-refresh-page .features-showcase {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px) !important;
    gap: 28px !important;
    align-items: stretch !important;
}

body #main-wrapper .home-refresh-page .features-showcase .bento-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body #main-wrapper .home-refresh-page .features-showcase .bento-card {
    grid-column: span 3 !important;
    min-height: 210px !important;
    border-radius: 8px !important;
    border-color: rgba(255, 106, 0, 0.22) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.86), rgba(8, 1, 1, 0.94)) !important;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .home-refresh-page .features-showcase .bento-large,
body #main-wrapper .home-refresh-page .features-showcase .bento-wide {
    grid-column: span 6 !important;
    min-height: 190px !important;
}

body #main-wrapper .home-refresh-page .features-showcase .bento-card:hover {
    border-color: rgba(255, 177, 59, 0.6) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 24px 72px rgba(255, 76, 0, 0.2) !important;
}

body #main-wrapper .home-refresh-page .features-showcase .bento-icon {
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    box-shadow: 0 14px 30px rgba(255, 76, 0, 0.24) !important;
}

body #main-wrapper .home-refresh-page .features-showcase .bento-card h3,
body #main-wrapper .home-refresh-page .features-showcase .bento-card h4 {
    letter-spacing: 0 !important;
}

body #main-wrapper .home-refresh-page .features-image-panel {
    position: relative !important;
    min-height: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    background:
        linear-gradient(180deg, rgba(255, 106, 0, 0.08), rgba(255, 45, 0, 0.03)),
        rgba(8, 1, 1, 0.72) !important;
    box-shadow: 0 26px 86px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body #main-wrapper .home-refresh-page .features-image-panel::before {
    content: "" !important;
    position: absolute !important;
    inset: 18px !important;
    border: 1px solid rgba(255, 106, 0, 0.16) !important;
    border-radius: 8px !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

body #main-wrapper .home-refresh-page .features-image-panel::after {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 46% !important;
    background: linear-gradient(180deg, transparent, rgba(8, 1, 1, 0.86)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

body #main-wrapper .home-refresh-page .features-image-panel img {
    width: 100% !important;
    height: 100% !important;
    min-height: 520px !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: saturate(1.08) contrast(1.05) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-page .game-grid-section {
        padding: 86px 0 !important;
    }

    body #main-wrapper .home-refresh-page .game-carousel-wrapper {
        padding: 18px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .container {
        padding: 24px 18px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-overview {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        height: auto !important;
    }

    body #main-wrapper .home-refresh-page .features-section {
        padding: 84px 0 !important;
    }

    body #main-wrapper .home-refresh-page .features-showcase {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-page .features-image-panel {
        min-height: 340px !important;
    }

    body #main-wrapper .home-refresh-page .features-image-panel img {
        min-height: 340px !important;
    }

}

@media (max-width: 575px) {
    body #main-wrapper .home-refresh-page .features-showcase .bento-grid {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-page .features-showcase .bento-card,
    body #main-wrapper .home-refresh-page .features-showcase .bento-large,
    body #main-wrapper .home-refresh-page .features-showcase .bento-wide {
        grid-column: auto !important;
        min-height: 190px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-copy,
    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-works-section {
        padding: 20px 16px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-steps {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-step {
        min-height: 142px !important;
    }
}

/* CHECKOUT FORM PAGE THEME REFRESH */
body #main-wrapper .checkout-hero-banner {
    min-height: 470px !important;
    margin-top: 0 !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 106, 0, 0.2), transparent 34%),
        radial-gradient(circle at 84% 24%, rgba(255, 45, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #100202 0%, #230404 48%, #090101 100%) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-bg {
    opacity: 0.22 !important;
    filter: saturate(1.15) contrast(1.08) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-overlay {
    background:
        linear-gradient(rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 0, 0, 0.48), rgba(5, 0, 0, 0.86)) !important;
    background-size: 58px 58px, 58px 58px, auto !important;
}

body #main-wrapper .checkout-hero-banner .checkout-particle {
    width: 5px !important;
    height: 5px !important;
    background: #ffb13b !important;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.72) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-content {
    max-width: 850px !important;
    padding-top: 38px !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-icon {
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.42) !important;
    box-shadow: 0 18px 44px rgba(255, 76, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-title {
    color: #ffffff !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 42px rgba(255, 76, 0, 0.28) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-subtitle {
    color: rgba(255, 245, 235, 0.78) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-breadcrumb {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    background: rgba(8, 1, 1, 0.62) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(14px) !important;
}

body #main-wrapper .checkout-page-wrapper {
    padding: 88px 0 !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 106, 0, 0.12), transparent 30%),
        radial-gradient(circle at 86% 86%, rgba(255, 45, 0, 0.1), transparent 28%),
        linear-gradient(180deg, #090101 0%, #150202 52%, #070101 100%) !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-grid {
    gap: 28px !important;
}

/* CHECKOUT TASK 70 RIGHT COLUMN CARD STACK */
body #main-wrapper .checkout-page-wrapper .checkout-summary-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}

/* HOME TASK 72 HERO CATEGORY SLIDER */
body #main-wrapper .home-refresh-hero .hero-game-showcase.hero-category-slider {
    display: block !important;
    padding: 18px 44px !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider:not(.slick-initialized) {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-list {
    overflow: hidden !important;
    margin: 0 -9px !important;
    padding: 10px 0 18px !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-slide {
    height: auto !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-slide > div,
body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide {
    height: 100% !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide {
    padding: 0 9px !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide-card {
    min-height: 322px !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 14px !important;
    z-index: 1 !important;
    border: 1px solid rgba(255, 177, 59, 0.18) !important;
    border-radius: 8px !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transform: scale(0.96) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide-card:hover::after {
    opacity: 1 !important;
    transform: scale(1) !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-arrow {
    width: 38px !important;
    height: 56px !important;
    z-index: 6 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 177, 59, 0.34) !important;
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.92), rgba(142, 13, 0, 0.92)) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34) !important;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-arrow:hover {
    transform: translateY(-50%) scale(1.05) !important;
    border-color: rgba(255, 210, 139, 0.72) !important;
    box-shadow: 0 18px 42px rgba(255, 76, 0, 0.28) !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-prev {
    left: 0 !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-next {
    right: 0 !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-prev::before,
body #main-wrapper .home-refresh-hero .hero-category-slider .slick-next::before {
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    opacity: 1 !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-prev::before {
    content: "\2039" !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-next::before {
    content: "\203A" !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-dots {
    bottom: -12px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-dots button {
    width: 22px !important;
    height: 5px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.22) !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-dots button::before {
    display: none !important;
}

body #main-wrapper .home-refresh-hero .hero-category-slider .slick-dots .slick-active button {
    width: 36px !important;
    background: linear-gradient(90deg, #ffb13b, #ff4c00) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-hero .hero-game-showcase.hero-category-slider {
        max-width: 760px !important;
        padding: 16px 40px 28px !important;
    }

    body #main-wrapper .home-refresh-hero .hero-category-slider:not(.slick-initialized) {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide-card {
        min-height: 260px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .home-refresh-hero .hero-game-showcase.hero-category-slider {
        padding: 12px 12px 30px !important;
    }

    body #main-wrapper .home-refresh-hero .hero-category-slider:not(.slick-initialized) {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide {
        padding: 0 !important;
    }

    body #main-wrapper .home-refresh-hero .hero-category-slider .slick-list {
        margin: 0 !important;
    }

    body #main-wrapper .home-refresh-hero .hero-category-slider .hero-category-slide-card {
        min-height: 230px !important;
    }
}

body #main-wrapper .checkout-page-wrapper .checkout-summary-column .additional-info-card {
    margin-top: 0 !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card,
body #main-wrapper .checkout-page-wrapper .checkout-summary-card {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.96)) !important;
    box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card::before,
body #main-wrapper .checkout-page-wrapper .checkout-summary-card::before {
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.55), transparent) !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card-title,
body #main-wrapper .checkout-page-wrapper .checkout-summary-title,
body #main-wrapper .checkout-page-wrapper .payment-form-title {
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card-title svg,
body #main-wrapper .checkout-page-wrapper .checkout-summary-title svg,
body #main-wrapper .checkout-page-wrapper .payment-form-title svg,
body #main-wrapper .checkout-page-wrapper .order-item-icon svg {
    color: #ffb13b !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-input,
body #main-wrapper .checkout-page-wrapper .gaming-select,
body #main-wrapper .checkout-page-wrapper .gaming-textarea,
body #main-wrapper .checkout-page-wrapper .payment-input,
body #main-wrapper .checkout-page-wrapper .captcha-box input {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    color: #ffffff !important;
    background: rgba(9, 1, 1, 0.76) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-input:focus,
body #main-wrapper .checkout-page-wrapper .gaming-select:focus,
body #main-wrapper .checkout-page-wrapper .gaming-textarea:focus,
body #main-wrapper .checkout-page-wrapper .payment-input:focus,
body #main-wrapper .checkout-page-wrapper .captcha-box input:focus {
    border-color: rgba(255, 177, 59, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16) !important;
}

body #main-wrapper .checkout-page-wrapper .custom-check {
    border-radius: 8px !important;
    border-color: rgba(255, 106, 0, 0.42) !important;
    background: rgba(9, 1, 1, 0.76) !important;
}

body #main-wrapper .checkout-page-wrapper .custom-check:checked {
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border-color: rgba(255, 184, 98, 0.8) !important;
}

body #main-wrapper .checkout-page-wrapper .dba-text,
body #main-wrapper .checkout-page-wrapper .payment-logos,
body #main-wrapper .checkout-page-wrapper .captcha-section {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background: rgba(255, 106, 0, 0.07) !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-summary-header {
    border-color: rgba(255, 106, 0, 0.18) !important;
}

/* GLOBAL TASK 74 STANDARD CTA BUTTONS */
body #main-wrapper .contact-btn-wrapper {
    position: relative !important;
    display: inline-block !important;
    padding: 6px 10px !important;
}

body #main-wrapper .contact-btn,
body #main-wrapper .cta-btn,
body #main-wrapper .bp-btn-primary,
body #main-wrapper #notfound .theme-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 12px 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    border-radius: 0 !important;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%) !important;
    background: linear-gradient(90deg, #d33400 0%, #ff7300 100%) !important;
    color: #ffffff !important;
    font-family: 'Space Grotesk', 'Chakra Petch', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 0 20px rgba(255, 76, 0, 0.46) !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease !important;
}

body #main-wrapper .contact-btn:hover,
body #main-wrapper .cta-btn:hover,
body #main-wrapper .bp-btn-primary:hover,
body #main-wrapper #notfound .theme-btn:hover {
    background: linear-gradient(90deg, #ff4000 0%, #ffa200 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 0 28px rgba(255, 64, 0, 0.72) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 575px) {
    body #main-wrapper .contact-btn,
    body #main-wrapper .cta-btn,
    body #main-wrapper .bp-btn-primary,
    body #main-wrapper #notfound .theme-btn {
        width: 100% !important;
        min-height: 44px !important;
        padding: 12px 22px !important;
        font-size: 12px !important;
    }
}

body #main-wrapper .checkout-page-wrapper .order-item {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.14) !important;
    background: rgba(9, 1, 1, 0.56) !important;
}

body #main-wrapper .checkout-page-wrapper .order-item-icon {
    border-radius: 8px !important;
    background: rgba(255, 106, 0, 0.12) !important;
}

body #main-wrapper .checkout-page-wrapper .order-total-section {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 45, 0, 0.07)) !important;
}

body #main-wrapper .checkout-page-wrapper .order-total-label,
body #main-wrapper .checkout-page-wrapper .order-total-amount {
    color: #ffd28b !important;
}

body #main-wrapper .checkout-page-wrapper .place-order-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 18px 42px rgba(255, 76, 0, 0.28) !important;
}

body #main-wrapper .checkout-page-wrapper .place-order-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 24px 54px rgba(255, 76, 0, 0.36) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .checkout-page-wrapper {
        padding: 72px 0 !important;
    }

    body #main-wrapper .checkout-page-wrapper .gaming-card,
    body #main-wrapper .checkout-page-wrapper .checkout-summary-card {
        padding: 24px 18px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .checkout-hero-banner {
        min-height: 410px !important;
    }

    body #main-wrapper .checkout-page-wrapper {
        padding: 58px 0 !important;
    }
}

/* NOT FOUND PAGE THEME REFRESH */
body #main-wrapper #notfound {
    min-height: 720px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 140px 16px 110px !important;
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 106, 0, 0.18), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(255, 45, 0, 0.14), transparent 34%),
        linear-gradient(135deg, #090101 0%, #190303 52%, #070101 100%) !important;
}

body #main-wrapper #notfound::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(rgba(255, 106, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.045) 1px, transparent 1px) !important;
    background-size: 58px 58px !important;
    pointer-events: none !important;
}

body #main-wrapper #notfound .notfound {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    max-width: 760px !important;
    width: min(100%, 760px) !important;
    padding: 44px 34px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.94)) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    z-index: 1 !important;
}

body #main-wrapper #notfound .notfound::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    width: 72% !important;
    height: 1px !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.75), transparent) !important;
}

body #main-wrapper #notfound .notfound-404 {
    height: auto !important;
    margin-bottom: 18px !important;
    position: relative !important;
    z-index: 1 !important;
}

body #main-wrapper #notfound .notfound-404 h1 {
    position: static !important;
    transform: none !important;
    font-size: clamp(58px, 11vw, 138px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 0 48px rgba(255, 76, 0, 0.32) !important;
    background: none !important;
    white-space: normal !important;
}

body #main-wrapper #notfound .nfound_cntnt {
    max-width: 560px !important;
    margin: 0 auto 34px !important;
    color: rgba(255, 245, 235, 0.78) !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
}

body #main-wrapper #notfound .theme-btn,
body #main-wrapper #notfound .btn-style-one {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 18px 42px rgba(255, 76, 0, 0.28) !important;
}

body #main-wrapper #notfound .theme-btn:hover,
body #main-wrapper #notfound .btn-style-one:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 24px 54px rgba(255, 76, 0, 0.36) !important;
}

@media (max-width: 575px) {
    body #main-wrapper #notfound {
        min-height: 620px !important;
        padding: 116px 14px 82px !important;
    }

    body #main-wrapper #notfound .notfound {
        padding: 34px 18px !important;
    }

    body #main-wrapper #notfound .nfound_cntnt {
        font-size: 17px !important;
    }
}

/* USER ORDER DETAIL PAGE THEME REFRESH */
body #main-wrapper .inner-header {
    min-height: 300px !important;
    height: auto !important;
    padding: 118px 0 62px !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 106, 0, 0.2), transparent 34%),
        radial-gradient(circle at 84% 24%, rgba(255, 45, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #100202 0%, #230404 48%, #090101 100%) !important;
}

body #main-wrapper .inner-header::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px) !important;
    background-size: 58px 58px !important;
}

body #main-wrapper .accunt-info.our-product {
    padding: 88px 0 !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 106, 0, 0.12), transparent 30%),
        radial-gradient(circle at 86% 86%, rgba(255, 45, 0, 0.1), transparent 28%),
        linear-gradient(180deg, #090101 0%, #150202 52%, #070101 100%) !important;
}

body #main-wrapper .accunt-info.our-product .card {
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.96)) !important;
    box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .accunt-info.our-product .card-header {
    min-height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.18) !important;
    background: rgba(255, 106, 0, 0.08) !important;
}

body #main-wrapper .accunt-info.our-product .card-body,
body #main-wrapper .accunt-info.our-product .table-responsive {
    background: transparent !important;
}

body #main-wrapper .accunt-info.our-product .table {
    color: rgba(255, 245, 235, 0.82) !important;
    border-color: rgba(255, 106, 0, 0.16) !important;
}

body #main-wrapper .accunt-info.our-product .table thead th,
body #main-wrapper .accunt-info.our-product .table td {
    border-color: rgba(255, 106, 0, 0.14) !important;
}

body #main-wrapper .accunt-info.our-product .table thead th {
    color: #ffd28b !important;
    background: rgba(255, 106, 0, 0.12) !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .accunt-info.our-product .table tbody td {
    color: rgba(255, 245, 235, 0.84) !important;
    background: rgba(8, 1, 1, 0.24) !important;
}

body #main-wrapper .accunt-info.our-product .order-info,
body #main-wrapper .accunt-info.our-product .shipping-info {
    padding: 26px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.78), rgba(8, 1, 1, 0.9)) !important;
}

body #main-wrapper .accunt-info.our-product .order-info h4,
body #main-wrapper .accunt-info.our-product .shipping-info h4 {
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .accunt-info.our-product .btn-primary {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 12px 28px rgba(255, 76, 0, 0.22) !important;
}

@media (max-width: 575px) {
    body #main-wrapper .accunt-info.our-product {
        padding: 58px 0 !important;
    }

    body #main-wrapper .accunt-info.our-product .card-header {
        align-items: stretch !important;
        flex-direction: column !important;
    }
}

/* ACCOUNT DASHBOARD THEME REFRESH */
body #main-wrapper .dashboard-hero-banner {
    min-height: 430px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 106, 0, 0.2), transparent 34%),
        radial-gradient(circle at 84% 24%, rgba(255, 45, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #100202 0%, #230404 48%, #090101 100%) !important;
}

body #main-wrapper .dashboard-hero-bg {
    opacity: 0.18 !important;
    filter: saturate(1.12) contrast(1.06) !important;
}

body #main-wrapper .dashboard-hero-overlay {
    background:
        linear-gradient(rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 0, 0, 0.48), rgba(5, 0, 0, 0.86)) !important;
    background-size: 58px 58px, 58px 58px, auto !important;
}

body #main-wrapper .dashboard-particle {
    width: 5px !important;
    height: 5px !important;
    background: #ffb13b !important;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.72) !important;
}

body #main-wrapper .dashboard-hero-icon {
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.42) !important;
    box-shadow: 0 18px 44px rgba(255, 76, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

body #main-wrapper .dashboard-hero-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 42px rgba(255, 76, 0, 0.28) !important;
    background: none !important;
}

body #main-wrapper .dashboard-hero-subtitle {
    color: rgba(255, 245, 235, 0.78) !important;
}

body #main-wrapper .dashboard-hero-breadcrumb {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.24) !important;
    background: rgba(8, 1, 1, 0.62) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28) !important;
}

body #main-wrapper .dashboard-hero-breadcrumb a:hover,
body #main-wrapper .dashboard-hero-breadcrumb span.active {
    color: #ffb13b !important;
}

body #main-wrapper .dashboard-page-wrapper {
    padding: 88px 0 !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 106, 0, 0.12), transparent 30%),
        radial-gradient(circle at 86% 86%, rgba(255, 45, 0, 0.1), transparent 28%),
        linear-gradient(180deg, #090101 0%, #150202 52%, #070101 100%) !important;
}

body #main-wrapper .sidebar-menu,
body #main-wrapper .dashboard-content-card,
body #main-wrapper .dashboard-card {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.96)) !important;
    box-shadow: 0 24px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .sidebar-menu::before,
body #main-wrapper .dashboard-card::before {
    border-radius: 8px 8px 0 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.75), transparent) !important;
}

body #main-wrapper .sidebar-title,
body #main-wrapper .content-card-title {
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .content-card-title svg {
    color: #ffb13b !important;
}

body #main-wrapper .sidebar-link {
    border-radius: 8px !important;
    color: rgba(255, 245, 235, 0.76) !important;
    background: rgba(255, 106, 0, 0.07) !important;
}

body #main-wrapper .sidebar-link:hover,
body #main-wrapper .sidebar-link.active {
    color: #ffffff !important;
    border-color: rgba(255, 184, 98, 0.46) !important;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.28), rgba(255, 45, 0, 0.14)) !important;
}

body #main-wrapper .dashboard-table {
    color: rgba(255, 245, 235, 0.82) !important;
}

body #main-wrapper .dashboard-table thead th {
    color: #ffd28b !important;
    background: rgba(255, 106, 0, 0.12) !important;
    border-color: rgba(255, 106, 0, 0.22) !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .dashboard-table tbody td {
    border-color: rgba(255, 106, 0, 0.12) !important;
}

body #main-wrapper .dashboard-table tbody tr:hover {
    background: rgba(255, 106, 0, 0.07) !important;
}

body #main-wrapper .dashboard-table .order-number,
body #main-wrapper .dashboard-table .order-date {
    color: #ffb13b !important;
}

body #main-wrapper .action-btn,
body #main-wrapper .submit-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 14px 32px rgba(255, 76, 0, 0.24) !important;
}

body #main-wrapper .password-input {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    color: #ffffff !important;
    background: rgba(9, 1, 1, 0.76) !important;
}

body #main-wrapper .password-input:focus {
    border-color: rgba(255, 177, 59, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16) !important;
}

/* AUTH TASK 59 SCREENSHOT-INSPIRED REFRESH */
body:has(#main-wrapper .login-page-wrapper),
body:has(#main-wrapper .register-page-wrapper),
body:has(#main-wrapper .forgot-page-wrapper) {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 106, 0, 0.22), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(255, 45, 0, 0.18), transparent 30%),
        radial-gradient(circle at 54% 88%, rgba(255, 184, 98, 0.1), transparent 34%),
        linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
}

body #main-wrapper:has(.login-page-wrapper),
body #main-wrapper:has(.register-page-wrapper),
body #main-wrapper:has(.forgot-page-wrapper) {
    min-height: 100vh !important;
    background:
        linear-gradient(rgba(255, 106, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 12% 24%, rgba(255, 106, 0, 0.18), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(255, 45, 0, 0.16), transparent 30%),
        linear-gradient(135deg, #0b0101 0%, #1e0303 48%, #070101 100%) !important;
    background-size: 54px 54px, 54px 54px, auto, auto, auto !important;
    position: relative !important;
    overflow: hidden !important;
}

body #main-wrapper:has(.login-page-wrapper)::before,
body #main-wrapper:has(.register-page-wrapper)::before,
body #main-wrapper:has(.forgot-page-wrapper)::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    background:
        linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.045) 58% 59%, transparent 59% 100%),
        linear-gradient(65deg, transparent 0 64%, rgba(255, 106, 0, 0.08) 64% 64.5%, transparent 64.5% 100%) !important;
    opacity: 0.9 !important;
    z-index: 0 !important;
}

body #main-wrapper:has(.login-page-wrapper)::after,
body #main-wrapper:has(.register-page-wrapper)::after,
body #main-wrapper:has(.forgot-page-wrapper)::after {
    content: "" !important;
    position: absolute !important;
    right: -160px !important;
    top: 82px !important;
    width: 420px !important;
    height: 420px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 184, 98, 0.14) !important;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.12), transparent 68%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

body #main-wrapper:has(.login-page-wrapper) > *,
body #main-wrapper:has(.register-page-wrapper) > *,
body #main-wrapper:has(.forgot-page-wrapper) > * {
    position: relative !important;
    z-index: 1 !important;
}

body #main-wrapper .login-hero-banner,
body #main-wrapper .register-hero-banner,
body #main-wrapper .forgot-hero-banner {
    display: none !important;
}

body #main-wrapper > .container:has(.login-page-wrapper),
body #main-wrapper > .container:has(.register-page-wrapper),
body #main-wrapper > .container:has(.forgot-page-wrapper) {
    max-width: 1180px !important;
    padding-top: 64px !important;
    padding-bottom: 76px !important;
}

body #main-wrapper .login-page-wrapper,
body #main-wrapper .register-page-wrapper,
body #main-wrapper .forgot-page-wrapper {
    min-height: 640px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: stretch !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 184, 98, 0.22) !important;
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, rgba(37, 5, 5, 0.94), rgba(8, 1, 1, 0.98)) !important;
    background-size: 52px 52px, 52px 52px, auto !important;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52), 0 0 50px rgba(255, 76, 0, 0.14) !important;
    position: relative !important;
}

body #main-wrapper .login-page-wrapper::before,
body #main-wrapper .register-page-wrapper::before,
body #main-wrapper .forgot-page-wrapper::before {
    display: none !important;
}

body #main-wrapper .login-right-panel,
body #main-wrapper .register-right-panel,
body #main-wrapper .forgot-right-panel {
    width: 48% !important;
    max-width: none !important;
    flex: 0 0 48% !important;
    padding: 54px 58px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 184, 98, 0.14), transparent 26%),
        linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(255, 45, 0, 0.07) 52%, rgba(8, 1, 1, 0.24)) !important;
    position: relative !important;
    z-index: 2 !important;
}

body #main-wrapper .login-right-panel::before,
body #main-wrapper .register-right-panel::before,
body #main-wrapper .forgot-right-panel::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: url('../media/backgrounds/login.png') left center / cover no-repeat !important;
    opacity: 0.1 !important;
    mix-blend-mode: luminosity !important;
    pointer-events: none !important;
}

body #main-wrapper .register-right-panel::before {
    background-image: url('../media/backgrounds/signup.png') !important;
}

body #main-wrapper .forgot-right-panel::before {
    background-image: url('../media/backgrounds/login.png') !important;
}

body #main-wrapper .login-form-header,
body #main-wrapper .register-form-header,
body #main-wrapper .forgot-form-header,
body #main-wrapper .login-right-panel form,
body #main-wrapper .register-right-panel form,
body #main-wrapper .forgot-right-panel form,
body #main-wrapper .login-register-link,
body #main-wrapper .register-login-link,
body #main-wrapper .forgot-login-link,
body #main-wrapper .login-right-panel .alert {
    position: relative !important;
    z-index: 2 !important;
}

body #main-wrapper .login-form-header,
body #main-wrapper .register-form-header,
body #main-wrapper .forgot-form-header {
    margin-bottom: 26px !important;
}

body #main-wrapper .login-form-header h3,
body #main-wrapper .register-form-header h3,
body #main-wrapper .forgot-form-header h3 {
    font-size: clamp(32px, 3.6vw, 54px) !important;
    font-weight: 950 !important;
    line-height: 0.95 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
    color: #ffffff !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.32) !important;
}

body #main-wrapper .login-form-header p,
body #main-wrapper .register-form-header p,
body #main-wrapper .forgot-form-header p {
    max-width: 430px !important;
    color: rgba(255, 245, 235, 0.72) !important;
    line-height: 1.55 !important;
}

body #main-wrapper .login-form-group,
body #main-wrapper .register-form-group,
body #main-wrapper .forgot-form-group {
    margin-bottom: 16px !important;
}

body #main-wrapper .login-form-group label,
body #main-wrapper .register-form-group label,
body #main-wrapper .forgot-form-group label {
    margin-bottom: 6px !important;
    color: rgba(255, 245, 235, 0.78) !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .login-form-group input,
body #main-wrapper .register-form-group input,
body #main-wrapper .forgot-form-group input,
body #main-wrapper .register-captcha input,
body #main-wrapper .forgot-captcha input {
    min-height: 46px !important;
    padding: 11px 14px !important;
    border-radius: 5px !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 184, 98, 0.3) !important;
    background: rgba(255, 245, 235, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body #main-wrapper .login-form-group input:focus,
body #main-wrapper .register-form-group input:focus,
body #main-wrapper .forgot-form-group input:focus,
body #main-wrapper .register-captcha input:focus,
body #main-wrapper .forgot-captcha input:focus {
    border-color: rgba(255, 184, 98, 0.76) !important;
    background: rgba(8, 1, 1, 0.48) !important;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.14), 0 16px 34px rgba(0, 0, 0, 0.22) !important;
}

body #main-wrapper .login-options {
    margin-bottom: 20px !important;
}

body #main-wrapper .login-submit-btn,
body #main-wrapper .register-submit-btn,
body #main-wrapper .forgot-submit-btn {
    width: auto !important;
    min-width: 150px !important;
    border-radius: 5px !important;
    padding: 13px 28px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.46) !important;
    box-shadow: 0 18px 36px rgba(255, 76, 0, 0.26) !important;
}

/* AUTH TASK 76, 79, 80 CTA THEME */
body #main-wrapper .login-submit-btn,
body #main-wrapper .forgot-submit-btn,
body #main-wrapper .register-submit-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 13px 32px !important;
    border-radius: 0 !important;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%) !important;
    background: linear-gradient(90deg, #d33400 0%, #ff7300 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    color: #ffffff !important;
    font-family: 'Space Grotesk', 'Chakra Petch', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 0 20px rgba(255, 76, 0, 0.46) !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease !important;
}

body #main-wrapper .login-submit-btn::before,
body #main-wrapper .forgot-submit-btn::before,
body #main-wrapper .register-submit-btn::before {
    display: none !important;
}

body #main-wrapper .login-submit-btn:hover,
body #main-wrapper .forgot-submit-btn:hover,
body #main-wrapper .register-submit-btn:hover {
    background: linear-gradient(90deg, #ff4000 0%, #ffa200 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 0 28px rgba(255, 64, 0, 0.72) !important;
    transform: translateY(-2px) !important;
}

body #main-wrapper .login-left-panel,
body #main-wrapper .register-left-panel,
body #main-wrapper .forgot-left-panel {
    width: 52% !important;
    flex: 0 0 52% !important;
    min-height: 640px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    background:
        radial-gradient(circle at 62% 28%, rgba(255, 184, 98, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(8, 1, 1, 0.74), rgba(42, 5, 5, 0.9)) !important;
}

body #main-wrapper .login-left-panel::before,
body #main-wrapper .register-left-panel::before,
body #main-wrapper .forgot-left-panel::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 0.92 !important;
    filter: saturate(1.05) contrast(1.05) !important;
    background: url('../media/backgrounds/login.png') center right / contain no-repeat !important;
    z-index: 1 !important;
}

body #main-wrapper .register-left-panel::before {
    background-image: url('../media/backgrounds/signup.png') !important;
}

body #main-wrapper .forgot-left-panel::before {
    background-image: url('../media/backgrounds/login.png') !important;
}

body #main-wrapper .login-left-panel::after,
body #main-wrapper .register-left-panel::after,
body #main-wrapper .forgot-left-panel::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(8, 1, 1, 0.72), transparent 48%),
        linear-gradient(135deg, transparent 0 55%, rgba(255, 255, 255, 0.05) 55% 56%, transparent 56% 100%) !important;
    z-index: 2 !important;
}

body #main-wrapper .login-left-content,
body #main-wrapper .register-left-content,
body #main-wrapper .forgot-left-content {
    position: absolute !important;
    left: 28px !important;
    bottom: 28px !important;
    right: 40% !important;
    z-index: 3 !important;
    text-align: left !important;
}

body #main-wrapper .login-left-content .game-icon,
body #main-wrapper .register-left-content .game-icon,
body #main-wrapper .forgot-left-content .game-icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 0 14px !important;
    border-radius: 8px !important;
}

body #main-wrapper .login-left-content .game-icon svg,
body #main-wrapper .register-left-content .game-icon svg,
body #main-wrapper .forgot-left-content .game-icon svg {
    width: 28px !important;
    height: 28px !important;
}

body #main-wrapper .login-left-content h2,
body #main-wrapper .register-left-content h2,
body #main-wrapper .forgot-left-content h2 {
    margin-bottom: 10px !important;
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
    text-shadow: 0 0 28px rgba(255, 76, 0, 0.34) !important;
}

body #main-wrapper .login-left-content p,
body #main-wrapper .register-left-content p,
body #main-wrapper .forgot-left-content p {
    margin-bottom: 0 !important;
    color: rgba(255, 245, 235, 0.72) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

body #main-wrapper .login-features,
body #main-wrapper .register-features,
body #main-wrapper .forgot-features {
    display: none !important;
}

body #main-wrapper .register-form-row {
    gap: 12px !important;
}

body #main-wrapper .register-captcha,
body #main-wrapper .forgot-captcha {
    margin-bottom: 18px !important;
}

body #main-wrapper .register-captcha img,
body #main-wrapper .forgot-captcha img {
    border-radius: 5px !important;
    border: 1px solid rgba(255, 184, 98, 0.28) !important;
    background: rgba(255, 245, 235, 0.9) !important;
}

@media (max-width: 991px) {
    body #main-wrapper > .container:has(.login-page-wrapper),
    body #main-wrapper > .container:has(.register-page-wrapper),
    body #main-wrapper > .container:has(.forgot-page-wrapper) {
        padding-top: 58px !important;
        padding-bottom: 50px !important;
    }

    body #main-wrapper .login-page-wrapper,
    body #main-wrapper .register-page-wrapper,
    body #main-wrapper .forgot-page-wrapper {
        flex-direction: column !important;
    }

    body #main-wrapper .login-right-panel,
    body #main-wrapper .register-right-panel,
    body #main-wrapper .forgot-right-panel,
    body #main-wrapper .login-left-panel,
    body #main-wrapper .register-left-panel,
    body #main-wrapper .forgot-left-panel {
        width: 100% !important;
        flex: none !important;
    }

    body #main-wrapper .login-left-panel,
    body #main-wrapper .register-left-panel,
    body #main-wrapper .forgot-left-panel {
        min-height: 360px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .login-right-panel,
    body #main-wrapper .register-right-panel,
    body #main-wrapper .forgot-right-panel {
        padding: 34px 20px !important;
    }

    body #main-wrapper .login-left-content,
    body #main-wrapper .register-left-content,
    body #main-wrapper .forgot-left-content {
        right: 24px !important;
    }

    body #main-wrapper .register-form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
}

body #main-wrapper .no-orders-msg svg {
    color: #ffb13b !important;
}

/* HEADER DROPDOWN STACKING FIX */
body #main-wrapper header.large-screens,
body #main-wrapper header.large-screens nav,
body #main-wrapper header.large-screens .container,
body #main-wrapper header.large-screens .header-navbar-row,
body #main-wrapper header.large-screens .navbar-nav.mainmenu,
body #main-wrapper header.large-screens .menu-item.has-children {
    z-index: 10000020 !important;
}

body #main-wrapper header.large-screens .menu-item.has-children > .submenu,
body #main-wrapper header.large-screens .menu-item.has-children > .submenu.game-mega-menu,
body #main-wrapper header.large-screens .menu-item.has-children:hover > .submenu,
body #main-wrapper header.large-screens .menu-item.has-children:focus-within > .submenu {
    z-index: 10000030 !important;
}

/* HOME POINT TOP-UP TASK 55 REFRESH */
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-redesign {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr) !important;
    gap: 30px !important;
    align-items: start !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-redesign .bp-topup-copy {
    position: relative !important;
    overflow: hidden !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-redesign .bp-topup-copy::after {
    content: "" !important;
    position: absolute !important;
    right: -90px !important;
    top: -90px !important;
    width: 210px !important;
    height: 210px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 184, 98, 0.16) !important;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.14), transparent 68%) !important;
    pointer-events: none !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-bonus-card {
    margin-top: 26px !important;
    padding: 22px !important;
    background: rgba(8, 1, 1, 0.52) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-recharge-workspace {
    display: grid !important;
    gap: 22px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-card {
    padding: 0 !important;
    overflow: hidden !important;
    border-color: rgba(255, 184, 98, 0.42) !important;
    background:
        linear-gradient(145deg, rgba(42, 5, 5, 0.94), rgba(8, 1, 1, 0.98)) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr) !important;
    gap: 0 !important;
    min-height: 520px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-form {
    padding: 34px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-form h4,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-form p {
    text-align: left !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-visual {
    position: relative !important;
    min-height: 100% !important;
    overflow: hidden !important;
    background:
        linear-gradient(rgba(255, 106, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 45%, rgba(255, 106, 0, 0.2), transparent 48%),
        linear-gradient(145deg, rgba(255, 106, 0, 0.12), rgba(8, 1, 1, 0.72)) !important;
    background-size: 42px 42px, 42px 42px, auto, auto !important;
    border-left: 1px solid rgba(255, 106, 0, 0.2) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-ring {
    position: absolute !important;
    left: 50% !important;
    top: 48% !important;
    width: min(78%, 310px) !important;
    aspect-ratio: 1 !important;
    transform: translate(-50%, -50%) !important;
    border: 1px solid rgba(255, 184, 98, 0.34) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 52px rgba(255, 76, 0, 0.2), inset 0 0 52px rgba(255, 106, 0, 0.12) !important;
    animation: bp-topup-spin 18s linear infinite !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-ring::before,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-ring::after {
    content: "" !important;
    position: absolute !important;
    inset: 16% !important;
    border: 1px dashed rgba(255, 184, 98, 0.22) !important;
    border-radius: 50% !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-ring::after {
    inset: 34% !important;
    border-style: solid !important;
    background: rgba(8, 1, 1, 0.52) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card {
    position: absolute !important;
    z-index: 2 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 184, 98, 0.34) !important;
    background: rgba(8, 1, 1, 0.78) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4), 0 0 22px rgba(255, 76, 0, 0.16) !important;
    color: rgba(255, 245, 235, 0.86) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-main {
    left: 50% !important;
    top: 48% !important;
    width: 176px !important;
    min-height: 138px !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 18px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-main span {
    font-size: 13px !important;
    text-transform: uppercase !important;
    color: rgba(255, 245, 235, 0.66) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-main strong {
    width: 58px !important;
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 30px !important;
    background: linear-gradient(135deg, #ff6a00, #ff2d00) !important;
    box-shadow: 0 0 28px rgba(255, 76, 0, 0.34) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-one,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-two {
    max-width: 150px !important;
    padding: 14px 16px !important;
    animation: bp-topup-float 4.5s ease-in-out infinite !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-one {
    left: 28px !important;
    top: 74px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-two {
    right: 24px !important;
    bottom: 82px !important;
    animation-delay: -2s !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge {
    margin-top: 0 !important;
    padding: 26px !important;
    position: relative !important;
    overflow: hidden !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge::before {
    content: "" !important;
    position: absolute !important;
    left: 32px !important;
    right: 32px !important;
    top: 50% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 98, 0.35), transparent) !important;
    animation: bp-topup-scan 3.6s ease-in-out infinite !important;
    pointer-events: none !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge .bp-how-steps {
    height: auto !important;
    position: relative !important;
    z-index: 1 !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge .bp-how-step {
    animation: bp-step-rise 5s ease-in-out infinite !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge .bp-how-step:nth-of-type(3) {
    animation-delay: -1.2s !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge .bp-how-step:nth-of-type(5) {
    animation-delay: -2.4s !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge .bp-how-step:nth-of-type(7) {
    animation-delay: -3.6s !important;
}

@keyframes bp-topup-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* HOME WHY CHOOSE US TASK 56 ORBIT REFRESH */
body #main-wrapper .home-refresh-page .feature-orbit-showcase {
    position: relative !important;
    min-height: 690px !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    isolation: isolate !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-showcase::before,
body #main-wrapper .home-refresh-page .feature-orbit-showcase::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-showcase::before {
    width: min(58vw, 560px) !important;
    aspect-ratio: 1 !important;
    border: 2px solid rgba(255, 106, 0, 0.42) !important;
    clip-path: polygon(50% 0%, 91% 25%, 91% 75%, 50% 100%, 9% 75%, 9% 25%) !important;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.18), transparent 58%),
        linear-gradient(145deg, rgba(35, 4, 4, 0.56), rgba(8, 1, 1, 0.76)) !important;
    box-shadow: 0 0 58px rgba(255, 76, 0, 0.2), inset 0 0 40px rgba(255, 106, 0, 0.12) !important;
    animation: feature-orbit-pulse 5s ease-in-out infinite !important;
    z-index: 0 !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-showcase::after {
    width: min(48vw, 430px) !important;
    aspect-ratio: 1 !important;
    border: 1px dashed rgba(255, 184, 98, 0.22) !important;
    border-radius: 50% !important;
    animation: feature-orbit-spin 28s linear infinite !important;
    z-index: 1 !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-core {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: min(78%, 330px) !important;
    min-height: 190px !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    padding: 28px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 184, 98, 0.28) !important;
    background: rgba(8, 1, 1, 0.7) !important;
    box-shadow: 0 22px 72px rgba(0, 0, 0, 0.38), 0 0 42px rgba(255, 76, 0, 0.18) !important;
    text-align: center !important;
    z-index: 3 !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-core span {
    display: block !important;
    color: #ffffff !important;
    font-size: clamp(28px, 3.2vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.34) !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-core p {
    margin: 0 !important;
    color: rgba(255, 245, 235, 0.68) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node {
    position: absolute !important;
    width: 198px !important;
    min-height: 148px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 14px 12px !important;
    text-align: center !important;
    z-index: 4 !important;
    animation: feature-node-drift 8s ease-in-out infinite !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node::before {
    content: "" !important;
    position: absolute !important;
    top: 42px !important;
    left: 50% !important;
    width: 88px !important;
    height: 1px !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 98, 0.72), transparent) !important;
    z-index: -1 !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-icon {
    width: 62px !important;
    height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 184, 98, 0.62) !important;
    background: linear-gradient(145deg, rgba(255, 106, 0, 0.36), rgba(8, 1, 1, 0.86)) !important;
    box-shadow: 0 0 30px rgba(255, 76, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(18px, 1.65vw, 26px) !important;
    font-weight: 850 !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72) !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-desc {
    max-height: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    color: rgba(255, 245, 235, 0.72) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    transition: max-height 0.28s ease, opacity 0.28s ease !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node:hover .feature-orbit-desc,
body #main-wrapper .home-refresh-page .feature-orbit-node:focus-within .feature-orbit-desc {
    max-height: 92px !important;
    opacity: 1 !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node-one {
    left: 8% !important;
    top: 24% !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node-two {
    right: 9% !important;
    top: 24% !important;
    animation-delay: -1.2s !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node-three {
    left: 12% !important;
    top: 58% !important;
    animation-delay: -2.4s !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node-four {
    right: 11% !important;
    top: 58% !important;
    animation-delay: -3.6s !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node-five {
    left: 50% !important;
    bottom: 2% !important;
    transform: translateX(-50%) !important;
    animation-name: feature-node-drift-centered !important;
    animation-delay: -4.8s !important;
}

body #main-wrapper .home-refresh-page .feature-orbit-node-six {
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    animation-name: feature-node-drift-centered !important;
    animation-delay: -6s !important;
}

@keyframes feature-orbit-pulse {
    0%, 100% {
        border-color: rgba(255, 106, 0, 0.34);
        box-shadow: 0 0 52px rgba(255, 76, 0, 0.18), inset 0 0 34px rgba(255, 106, 0, 0.1);
    }

    50% {
        border-color: rgba(255, 184, 98, 0.68);
        box-shadow: 0 0 82px rgba(255, 106, 0, 0.34), inset 0 0 46px rgba(255, 184, 98, 0.16);
    }
}

@keyframes feature-orbit-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes feature-node-drift {
    0%, 100% {
        transform: translate(0, -10px);
    }

    25% {
        transform: translate(10px, 0);
    }

    50% {
        transform: translate(0, 10px);
    }

    75% {
        transform: translate(-10px, 0);
    }
}

@keyframes feature-node-drift-centered {
    0%, 100% {
        transform: translate(-50%, -10px);
    }

    25% {
        transform: translate(calc(-50% + 10px), 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }

    75% {
        transform: translate(calc(-50% - 10px), 0);
    }
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-page .feature-orbit-showcase {
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    body #main-wrapper .home-refresh-page .feature-orbit-showcase::before,
    body #main-wrapper .home-refresh-page .feature-orbit-showcase::after {
        display: none !important;
    }

    body #main-wrapper .home-refresh-page .feature-orbit-core,
    body #main-wrapper .home-refresh-page .feature-orbit-node,
    body #main-wrapper .home-refresh-page .feature-orbit-node-five,
    body #main-wrapper .home-refresh-page .feature-orbit-node-six {
        position: relative !important;
        inset: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: auto !important;
        min-height: 170px !important;
        transform: none !important;
        animation: none !important;
    }

    body #main-wrapper .home-refresh-page .feature-orbit-core {
        grid-column: 1 / -1 !important;
    }

    body #main-wrapper .home-refresh-page .feature-orbit-node {
        justify-content: center !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 106, 0, 0.18) !important;
        background: rgba(8, 1, 1, 0.54) !important;
    }

    body #main-wrapper .home-refresh-page .feature-orbit-node::before {
        display: none !important;
    }

    body #main-wrapper .home-refresh-page .feature-orbit-desc {
        max-height: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .home-refresh-page .feature-orbit-showcase {
        grid-template-columns: 1fr !important;
    }
}

/* HOME TASK 57 FEATURE EDITORIAL + MERGED HOW IT WORKS */
body #main-wrapper .home-refresh-page .feature-editorial-showcase {
    display: grid !important;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr) !important;
    gap: 34px !important;
    align-items: center !important;
    min-height: 520px !important;
    position: relative !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-showcase::before {
    content: "" !important;
    position: absolute !important;
    inset: -40px -20px !important;
    background:
        linear-gradient(rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 72% 36%, rgba(255, 106, 0, 0.18), transparent 30%) !important;
    background-size: 58px 58px, 58px 58px, auto !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-copy {
    position: relative !important;
    z-index: 2 !important;
    padding: 34px 0 !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-kicker {
    display: inline-flex !important;
    margin-bottom: 10px !important;
    color: #ffb13b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 1.8px !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-copy h2 {
    margin-bottom: 16px !important;
    color: #ffffff !important;
    font-size: clamp(38px, 5vw, 72px) !important;
    font-weight: 950 !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 0 34px rgba(255, 76, 0, 0.3) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-copy p {
    max-width: 560px !important;
    margin: 0 0 16px !important;
    color: rgba(255, 245, 235, 0.74) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 24px !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-pills span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 8px 14px !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    border: 1px solid rgba(255, 184, 98, 0.28) !important;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.24), rgba(8, 1, 1, 0.64)) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-cards {
    min-height: 520px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    overflow: visible !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card {
    position: relative !important;
    flex: 0 0 210px !important;
    height: 390px !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255, 184, 98, 0.34) !important;
    background: rgba(8, 1, 1, 0.72) !important;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 76, 0, 0.18) !important;
    transform: skew(-2deg) translateY(16px) !important;
    transition: transform 0.28s ease, border-color 0.28s ease !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(2) {
    height: 340px !important;
    transform: skew(-2deg) translateY(-8px) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(3) {
    height: 300px !important;
    transform: skew(-2deg) translateY(24px) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card:hover {
    border-color: rgba(255, 184, 98, 0.72) !important;
    transform: skew(-2deg) translateY(-10px) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    filter: saturate(1.12) contrast(1.05) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(255, 106, 0, 0.04), transparent 35%),
        linear-gradient(0deg, rgba(8, 1, 1, 0.9), transparent 54%) !important;
    pointer-events: none !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto !important;
    height: 5px !important;
    background: linear-gradient(90deg, #ff6a00, #ff2d00, #ffb13b) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card-copy {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    transform: skew(2deg) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card-copy span {
    display: block !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card-copy p {
    max-height: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    color: rgba(255, 245, 235, 0.72) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    transition: max-height 0.28s ease, opacity 0.28s ease, margin 0.28s ease !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card:hover .feature-editorial-card-copy p {
    max-height: 84px !important;
    margin-top: 8px !important;
    opacity: 1 !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-main span {
    font-size: 18px !important;
    color: #ffffff !important;
    line-height: 1.08 !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card > strong {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 14px !important;
    background: linear-gradient(135deg, #ff6a00, #ff2d00) !important;
    box-shadow: 0 0 22px rgba(255, 76, 0, 0.28) !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card > span {
    color: rgba(255, 245, 235, 0.84) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-three,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-four {
    max-width: 150px !important;
    padding: 14px 16px !important;
    animation: bp-topup-float 4.5s ease-in-out infinite !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-three {
    left: 28px !important;
    bottom: 66px !important;
    animation-delay: -1s !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-four {
    right: 24px !important;
    top: 76px !important;
    animation-delay: -3s !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-disclaimer-after-recharge {
    margin: 0 !important;
    padding: 16px 20px !important;
    width: 100% !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-disclaimer-after-recharge p {
    margin: 0 !important;
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-page .feature-editorial-showcase {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    body #main-wrapper .home-refresh-page .feature-editorial-cards {
        min-height: 360px !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .home-refresh-page .feature-editorial-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    body #main-wrapper .home-refresh-page .feature-editorial-card,
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(2),
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(3) {
        flex: none !important;
        width: 100% !important;
        height: 260px !important;
        transform: none !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-three {
        left: 14px !important;
        bottom: 34px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-four {
        right: 14px !important;
        top: 34px !important;
    }
}

@keyframes bp-topup-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes bp-topup-scan {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(-18px);
    }

    50% {
        opacity: 0.9;
        transform: translateY(18px);
    }
}

@keyframes bp-step-rise {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-topup-redesign {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-grid {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-visual {
        min-height: 340px !important;
        border-left: 0 !important;
        border-top: 1px solid rgba(255, 106, 0, 0.2) !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-form {
        padding: 24px 16px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-estimator-visual {
        min-height: 280px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-one,
    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-two {
        max-width: 128px !important;
        padding: 12px !important;
        font-size: 13px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-one {
        left: 14px !important;
        top: 42px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-visual-card-two {
        right: 14px !important;
        bottom: 42px !important;
    }

    body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge::before {
        display: none !important;
    }
}

/* HOME TASK 63 HERO WORDING + SIX FEATURE CARDS */
body #main-wrapper .home-refresh-hero.hero-banner-red .hero-top-headline {
    font-size: clamp(30px, 3.5vw, 52px) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.55) !important;
}

body #main-wrapper .home-refresh-hero.hero-banner-red .massive-background-text {
    font-size: clamp(180px, 34vw, 520px) !important;
    letter-spacing: 0 !important;
    line-height: 0.68 !important;
    opacity: 0.18 !important;
    transform: translate(-50%, -48%) !important;
}

/* HOME HERO BANNER IMAGE ALIGNMENT */
body #main-wrapper .home-refresh-hero.hero-banner-red {
    background:
        linear-gradient(90deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.84) 48%, rgba(8, 1, 1, 0.5) 100%),
        url("../media/banner/hero-banner-4-bg.png") center right / contain no-repeat,
        radial-gradient(circle at 18% 18%, rgba(255, 122, 0, 0.24), transparent 26%),
        radial-gradient(circle at 80% 62%, rgba(122, 7, 7, 0.45), transparent 34%),
        linear-gradient(180deg, #0b0101 0%, #240202 100%) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-pills {
    display: none !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-showcase {
    grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    min-height: auto !important;
    align-items: stretch !important;
    overflow: visible !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card,
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(2),
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(3),
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(4),
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(5),
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(6) {
    width: 100% !important;
    height: 260px !important;
    min-width: 0 !important;
    flex: none !important;
    transform: none !important;
    border-radius: 8px !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card:hover,
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(2):hover,
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(3):hover,
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(4):hover,
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(5):hover,
body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(6):hover {
    transform: translateY(-8px) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card::before {
    background:
        linear-gradient(180deg, rgba(255, 106, 0, 0.08), transparent 32%),
        linear-gradient(0deg, rgba(8, 1, 1, 0.94), rgba(8, 1, 1, 0.36) 54%, rgba(8, 1, 1, 0.08)) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card-copy {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    transform: none !important;
    z-index: 2 !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card-copy span {
    font-size: 15px !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.72) !important;
}

body #main-wrapper .home-refresh-page .feature-editorial-card-copy p {
    max-height: 96px !important;
    margin-top: 8px !important;
    opacity: 1 !important;
    color: rgba(255, 245, 235, 0.78) !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.76) !important;
}

@media (max-width: 1199px) {
    body #main-wrapper .home-refresh-page .feature-editorial-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-page .feature-editorial-showcase {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-hero.hero-banner-red .massive-background-text {
        font-size: clamp(118px, 30vw, 260px) !important;
    }

    body #main-wrapper .home-refresh-hero.hero-banner-red {
        background:
            linear-gradient(180deg, rgba(8, 1, 1, 0.96), rgba(8, 1, 1, 0.86)),
            url("../media/banner/hero-banner-4-bg.png") bottom center / 520px auto no-repeat,
            radial-gradient(circle at 18% 18%, rgba(255, 122, 0, 0.18), transparent 30%),
            linear-gradient(180deg, #0b0101 0%, #240202 100%) !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .home-refresh-hero.hero-banner-red .hero-top-headline {
        font-size: 30px !important;
    }

    body #main-wrapper .home-refresh-page .feature-editorial-cards {
        grid-template-columns: 1fr !important;
    }

    body #main-wrapper .home-refresh-page .feature-editorial-card,
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(2),
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(3),
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(4),
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(5),
    body #main-wrapper .home-refresh-page .feature-editorial-card:nth-child(6) {
        height: 240px !important;
    }
}

/* HOME TASK 64 CENTER HOW IT WORKS VISUAL LABEL */
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-main {
    min-height: 128px !important;
    gap: 0 !important;
    text-align: center !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-visual .bp-visual-card-main span {
    width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
}

/* CART TASK 65 LOGIN-THEME ALIGNMENT */
body:has(#main-wrapper .cart-hero) {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 106, 0, 0.22), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(255, 45, 0, 0.18), transparent 30%),
        linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
}

body #main-wrapper:has(.cart-hero) {
    min-height: 100vh !important;
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(8, 1, 1, 0.94) 46%, rgba(122, 7, 7, 0.18)) !important;
    background-size: 44px 44px, 44px 44px, cover !important;
}

body #main-wrapper .cart-hero {
    margin-top: 0 !important;
    min-height: 410px !important;
    padding: 126px 0 70px !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(90deg, rgba(16, 2, 2, 0.9) 0%, rgba(32, 4, 4, 0.78) 52%, rgba(8, 1, 1, 0.96) 100%),
        url('../media/backgrounds/login.png') center right / contain no-repeat !important;
}

body #main-wrapper .cart-hero::before {
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.09) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 106, 0, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, transparent 0%, rgba(8, 1, 1, 0.58) 100%) !important;
    background-size: 38px 38px, 38px 38px, cover !important;
    opacity: 0.72 !important;
}

body #main-wrapper .cart-hero-content {
    max-width: 860px !important;
    margin: 0 auto !important;
}

body #main-wrapper .cart-hero-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(38px, 5vw, 64px) !important;
    font-weight: 950 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

body #main-wrapper .cart-hero-subtitle {
    display: inline-flex !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.58) !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26) !important;
    color: rgba(255, 245, 235, 0.72) !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .cart-hero-subtitle a,
body #main-wrapper .cart-hero-subtitle span {
    color: rgba(255, 245, 235, 0.72) !important;
}

body #main-wrapper .cart-hero-subtitle a:hover,
body #main-wrapper .cart-hero-subtitle span {
    color: #ffb13b !important;
}

body #main-wrapper .cart-section {
    padding: 76px 0 90px !important;
    background: transparent !important;
}

body #main-wrapper .cart-section > .container {
    max-width: 1180px !important;
}

body #main-wrapper .cart-grid {
    gap: 28px !important;
}

body #main-wrapper .cart-product-card,
body #main-wrapper .cart-summary,
body #main-wrapper .cart-empty {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.96)) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38) !important;
}

body #main-wrapper .cart-product-card {
    grid-template-columns: 128px 1fr auto !important;
    padding: 22px !important;
}

body #main-wrapper .cart-product-image {
    width: 128px !important;
    height: 96px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background: rgba(8, 1, 1, 0.54) !important;
}

body #main-wrapper .cart-product-points-only {
    border-style: solid !important;
    background: rgba(255, 106, 0, 0.1) !important;
}

body #main-wrapper .cart-product-title,
body #main-wrapper .cart-summary-title,
body #main-wrapper .cart-empty h3 {
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .cart-product-price,
body #main-wrapper .cart-summary-item-label,
body #main-wrapper .cart-summary-row .label,
body #main-wrapper .cart-continue-shopping,
body #main-wrapper .cart-empty p {
    color: rgba(255, 245, 235, 0.68) !important;
}

body #main-wrapper .cart-product-price span,
body #main-wrapper .cart-product-total,
body #main-wrapper .cart-summary-item-value,
body #main-wrapper .cart-summary-row .value,
body #main-wrapper .cart-summary-row.total .value {
    color: #ffb13b !important;
}

body #main-wrapper .cart-summary-header {
    padding: 24px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border-bottom: 1px solid rgba(255, 210, 139, 0.24) !important;
}

body #main-wrapper .cart-summary-body {
    padding: 28px !important;
}

body #main-wrapper .cart-summary-items,
body #main-wrapper .cart-summary-row.total {
    border-color: rgba(255, 106, 0, 0.2) !important;
}

body #main-wrapper .cart-checkout-btn,
body #main-wrapper .cart-empty-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 18px 38px rgba(255, 106, 0, 0.24) !important;
}

body #main-wrapper .cart-checkout-btn:hover,
body #main-wrapper .cart-empty-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 24px 54px rgba(255, 76, 0, 0.36) !important;
}

body #main-wrapper .cart-remove-btn {
    border-radius: 8px !important;
}

body #main-wrapper .cart-continue-btn {
    color: rgba(255, 245, 235, 0.72) !important;
}

body #main-wrapper .cart-continue-btn:hover,
body #main-wrapper .cart-continue-shopping:hover {
    color: #ffb13b !important;
}

body #main-wrapper .cart-secure-badge {
    border-radius: 8px !important;
    color: #ffb13b !important;
    background: rgba(255, 106, 0, 0.1) !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
}

@media (max-width: 768px) {
    body #main-wrapper .cart-product-card {
        grid-template-columns: 96px 1fr !important;
        gap: 16px !important;
    }

    body #main-wrapper .cart-product-image {
        width: 96px !important;
        height: 84px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .cart-hero {
        min-height: 360px !important;
        padding: 112px 0 54px !important;
        background-size: 390px auto !important;
    }

    body #main-wrapper .cart-section {
        padding: 50px 0 64px !important;
    }
}

/* CHECKOUT TASK 66 LOGIN-THEME ALIGNMENT */
body:has(#main-wrapper .checkout-page-wrapper) {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 106, 0, 0.22), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(255, 45, 0, 0.18), transparent 30%),
        linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
}

body #main-wrapper:has(.checkout-page-wrapper) {
    min-height: 100vh !important;
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(8, 1, 1, 0.94) 46%, rgba(122, 7, 7, 0.18)) !important;
    background-size: 44px 44px, 44px 44px, cover !important;
}

body #main-wrapper .checkout-hero-banner {
    margin-top: 0 !important;
    min-height: 430px !important;
    padding-top: 86px !important;
    border-bottom: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(90deg, rgba(16, 2, 2, 0.9) 0%, rgba(32, 4, 4, 0.78) 52%, rgba(8, 1, 1, 0.96) 100%),
        url('../media/backgrounds/login.png') center right / contain no-repeat !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-bg {
    background: rgba(0, 0, 0, 0.18) !important;
    opacity: 1 !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-overlay {
    background:
        linear-gradient(90deg, rgba(255, 106, 0, 0.09) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 106, 0, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, transparent 0%, rgba(8, 1, 1, 0.58) 100%) !important;
    background-size: 38px 38px, 38px 38px, cover !important;
}

body #main-wrapper .checkout-hero-banner .checkout-particle {
    width: 4px !important;
    height: 4px !important;
    background: #ffb13b !important;
    box-shadow: 0 0 16px rgba(255, 177, 59, 0.88) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-content {
    max-width: 860px !important;
    padding: 42px 20px 58px !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff6a00 0%, #b91408 100%) !important;
    border: 1px solid rgba(255, 245, 235, 0.24) !important;
    box-shadow: 0 18px 40px rgba(255, 106, 0, 0.24) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: clamp(38px, 5vw, 64px) !important;
    font-weight: 950 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    filter: none !important;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-subtitle {
    color: rgba(255, 245, 235, 0.72) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-breadcrumb {
    border-radius: 8px !important;
    background: rgba(8, 1, 1, 0.58) !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26) !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-breadcrumb a,
body #main-wrapper .checkout-hero-banner .checkout-hero-breadcrumb span {
    color: rgba(255, 245, 235, 0.72) !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .checkout-hero-banner .checkout-hero-breadcrumb a:hover,
body #main-wrapper .checkout-hero-banner .checkout-hero-breadcrumb span.active {
    color: #ffb13b !important;
}

body #main-wrapper .checkout-page-wrapper {
    padding: 76px 0 92px !important;
    background: transparent !important;
}

body #main-wrapper .checkout-page-wrapper .container {
    max-width: 1180px !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-grid {
    gap: 28px !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card,
body #main-wrapper .checkout-page-wrapper .checkout-summary-card {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background:
        linear-gradient(145deg, rgba(35, 4, 4, 0.88), rgba(8, 1, 1, 0.96)) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38) !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card {
    padding: 30px !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card-title,
body #main-wrapper .checkout-page-wrapper .checkout-summary-title,
body #main-wrapper .checkout-page-wrapper .payment-form-title {
    color: #ffffff !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .checkout-page-wrapper .gaming-card-title svg,
body #main-wrapper .checkout-page-wrapper .checkout-summary-title svg,
body #main-wrapper .checkout-page-wrapper .payment-form-title svg,
body #main-wrapper .checkout-page-wrapper .order-item-icon svg {
    color: #ffb13b !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-form-group label,
body #main-wrapper .checkout-page-wrapper .payment-input-group label,
body #main-wrapper .checkout-page-wrapper .checkbox-label,
body #main-wrapper .checkout-page-wrapper .order-item-details span,
body #main-wrapper .checkout-page-wrapper .dba-text,
body #main-wrapper .checkout-page-wrapper .lrqw-icn {
    color: rgba(255, 245, 235, 0.68) !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-input,
body #main-wrapper .checkout-page-wrapper .checkout-select,
body #main-wrapper .checkout-page-wrapper .checkout-textarea,
body #main-wrapper .checkout-page-wrapper .payment-input,
body #main-wrapper .checkout-page-wrapper .captcha-box,
body #main-wrapper .checkout-page-wrapper .captcha-box input {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.2) !important;
    color: #ffffff !important;
    background-color: rgba(9, 1, 1, 0.76) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-input:focus,
body #main-wrapper .checkout-page-wrapper .checkout-select:focus,
body #main-wrapper .checkout-page-wrapper .checkout-textarea:focus,
body #main-wrapper .checkout-page-wrapper .payment-input:focus,
body #main-wrapper .checkout-page-wrapper .captcha-box input:focus {
    border-color: rgba(255, 177, 59, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16) !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-select option {
    background: #090101 !important;
    color: #ffffff !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-checkbox .custom-check {
    border-radius: 8px !important;
    border-color: rgba(255, 106, 0, 0.42) !important;
    background: rgba(9, 1, 1, 0.76) !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-checkbox input[type="checkbox"]:checked + .custom-check {
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border-color: rgba(255, 184, 98, 0.8) !important;
}

body #main-wrapper .checkout-page-wrapper .checkbox-label a {
    color: #ffb13b !important;
}

body #main-wrapper .checkout-page-wrapper .checkbox-label a:hover {
    color: #ffd28b !important;
}

body #main-wrapper .checkout-page-wrapper .dba-text,
body #main-wrapper .checkout-page-wrapper .payment-logos,
body #main-wrapper .checkout-page-wrapper .captcha-section {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.18) !important;
    background: rgba(255, 106, 0, 0.07) !important;
}

body #main-wrapper .checkout-page-wrapper .checkout-summary-header {
    border-color: rgba(255, 106, 0, 0.18) !important;
}

body #main-wrapper .checkout-page-wrapper .order-item {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.14) !important;
    background: rgba(9, 1, 1, 0.56) !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
}

body #main-wrapper .checkout-page-wrapper .order-item-icon {
    border-radius: 8px !important;
    background: rgba(255, 106, 0, 0.12) !important;
}

body #main-wrapper .checkout-page-wrapper .order-item-details h5,
body #main-wrapper .checkout-page-wrapper .order-item-price,
body #main-wrapper .checkout-page-wrapper .order-total-label,
body #main-wrapper .checkout-page-wrapper .order-total-amount {
    color: #ffb13b !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

body #main-wrapper .checkout-page-wrapper .order-total-section {
    border-radius: 8px !important;
    border: 1px solid rgba(255, 106, 0, 0.22) !important;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 45, 0, 0.07)) !important;
}

body #main-wrapper .checkout-page-wrapper .place-order-btn {
    border-radius: 8px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00 0%, #ff2d00 100%) !important;
    border: 1px solid rgba(255, 184, 98, 0.5) !important;
    box-shadow: 0 18px 42px rgba(255, 76, 0, 0.28) !important;
    letter-spacing: 0 !important;
}

body #main-wrapper .checkout-page-wrapper .place-order-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 24px 54px rgba(255, 76, 0, 0.36) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .checkout-page-wrapper {
        padding: 64px 0 !important;
    }

    body #main-wrapper .checkout-page-wrapper .gaming-card {
        padding: 24px 18px !important;
    }
}

@media (max-width: 575px) {
    body #main-wrapper .checkout-hero-banner {
        min-height: 370px !important;
        padding-top: 76px !important;
        background-size: 390px auto !important;
    }

    body #main-wrapper .checkout-page-wrapper {
        padding: 50px 0 64px !important;
    }
}

/* HOME TASK 83/84 TOP-UP SECTION CLEANUP */
body #main-wrapper .home-refresh-page .home-refresh-topup {
    background:
        linear-gradient(90deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.9) 46%, rgba(8, 1, 1, 0.72) 100%),
        url("../media/banner/hero-banner-3-bg.png") center right / min(760px, 55vw) auto no-repeat,
        radial-gradient(circle at 12% 16%, rgba(255, 106, 0, 0.2), transparent 28%),
        radial-gradient(circle at 84% 78%, rgba(255, 177, 59, 0.12), transparent 30%),
        linear-gradient(135deg, #080101 0%, #170303 48%, #0b0101 100%) !important;
}

body #main-wrapper .home-refresh-page .bp-topup-section::after,
body #main-wrapper .home-refresh-page .home-refresh-topup .bp-how-after-recharge {
    display: none !important;
}

body #main-wrapper .home-refresh-page .home-refresh-topup .container {
    border-color: rgba(255, 106, 0, 0.08) !important;
    background: linear-gradient(145deg, rgba(35, 4, 4, 0.34), rgba(8, 1, 1, 0.62)) !important;
    box-shadow: 0 24px 86px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 991px) {
    body #main-wrapper .home-refresh-page .home-refresh-topup {
        background:
            linear-gradient(180deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.9) 56%, rgba(8, 1, 1, 0.82) 100%),
            url("../media/banner/hero-banner-3-bg.png") bottom right / 520px auto no-repeat,
            radial-gradient(circle at 12% 16%, rgba(255, 106, 0, 0.18), transparent 30%),
            linear-gradient(135deg, #080101 0%, #170303 52%, #0b0101 100%) !important;
    }
}

/* LOGIN PAGE BACKGROUND IMAGE */
body:has(#main-wrapper .login-page-wrapper) {
    background:
        linear-gradient(90deg, rgba(8, 1, 1, 0.96) 0%, rgba(8, 1, 1, 0.78) 48%, rgba(8, 1, 1, 0.58) 100%),
        url("../media/banner/full-shot-happy-couple-metaverse-date.jpg") center right / cover no-repeat,
        linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
}

body #main-wrapper:has(.login-page-wrapper) {
    background:
        linear-gradient(rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.82) 48%, rgba(8, 1, 1, 0.58) 100%),
        url("../media/banner/full-shot-happy-couple-metaverse-date.jpg") center right / cover no-repeat !important;
    background-size: 54px 54px, 54px 54px, auto, cover !important;
}

@media (max-width: 991px) {
    body:has(#main-wrapper .login-page-wrapper),
    body #main-wrapper:has(.login-page-wrapper) {
        background:
            linear-gradient(180deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.88) 58%, rgba(8, 1, 1, 0.76) 100%),
            url("../media/banner/full-shot-happy-couple-metaverse-date.jpg") center / cover no-repeat,
            linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
    }
}

/* FORGOT PASSWORD PAGE BACKGROUND IMAGE */
body:has(#main-wrapper .forgot-page-wrapper) {
    background:
        linear-gradient(90deg, rgba(8, 1, 1, 0.96) 0%, rgba(8, 1, 1, 0.78) 48%, rgba(8, 1, 1, 0.58) 100%),
        url("../media/banner/astranaut-runs-along-endless-wooden-bridge.jpg") center right / cover no-repeat,
        linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
}

body #main-wrapper:has(.forgot-page-wrapper) {
    background:
        linear-gradient(rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.82) 48%, rgba(8, 1, 1, 0.58) 100%),
        url("../media/banner/astranaut-runs-along-endless-wooden-bridge.jpg") center right / cover no-repeat !important;
    background-size: 54px 54px, 54px 54px, auto, cover !important;
}

@media (max-width: 991px) {
    body:has(#main-wrapper .forgot-page-wrapper),
    body #main-wrapper:has(.forgot-page-wrapper) {
        background:
            linear-gradient(180deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.88) 58%, rgba(8, 1, 1, 0.76) 100%),
            url("../media/banner/astranaut-runs-along-endless-wooden-bridge.jpg") center / cover no-repeat,
            linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
    }
}

/* REGISTER PAGE BACKGROUND IMAGE */
body:has(#main-wrapper .register-page-wrapper) {
    background:
        linear-gradient(90deg, rgba(8, 1, 1, 0.96) 0%, rgba(8, 1, 1, 0.78) 48%, rgba(8, 1, 1, 0.58) 100%),
        url("../media/banner/4785.jpg") center right / cover no-repeat,
        linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
}

body #main-wrapper:has(.register-page-wrapper) {
    background:
        linear-gradient(rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 106, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.82) 48%, rgba(8, 1, 1, 0.58) 100%),
        url("../media/banner/4785.jpg") center right / cover no-repeat !important;
    background-size: 54px 54px, 54px 54px, auto, cover !important;
}

@media (max-width: 991px) {
    body:has(#main-wrapper .register-page-wrapper),
    body #main-wrapper:has(.register-page-wrapper) {
        background:
            linear-gradient(180deg, rgba(8, 1, 1, 0.98) 0%, rgba(8, 1, 1, 0.88) 58%, rgba(8, 1, 1, 0.76) 100%),
            url("../media/banner/4785.jpg") center / cover no-repeat,
            linear-gradient(180deg, #080101 0%, #170202 46%, #070101 100%) !important;
    }
}
