/* ================================================
   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;
    }
}


