/* ================================================
   WarpStrike Theme Override CSS
   Design System: Dark Mode Gaming Website
   Colors: Purple (#7C3AED) Primary, Rose (#F43F5E) CTA
   ================================================ */

/* ================================================
   ROOT VARIABLES
   ================================================ */
:root {
    /* Primary Colors (Neon Cyan Tech) */
    --ws-primary: #00F0FF;
    --ws-primary-light: #80FAFF;
    --ws-primary-dark: #008B94;
    --ws-secondary: #80FAFF;
    
    /* Accent Colors (Neon Pink / Hot Magenta) */
    --ws-accent: #FF007F;
    --ws-accent-light: #FF66B3;
    --ws-accent-dark: #B30059;
    
    /* Background Colors (Deep Cyber slate) */
    --ws-bg-dark: #05050A;
    --ws-bg-darker: #020204;
    --ws-bg-card: #0D0D15;
    --ws-bg-card-hover: #151522;
    
    /* Text Colors */
    --ws-text-primary: #FFFFFF;
    --ws-text-secondary: #E2E8F0;
    --ws-text-muted: #94A3B8;
    --ws-text-light: #64748B;
    
    /* Border Colors */
    --ws-border: rgba(0, 240, 255, 0.25);
    --ws-border-light: rgba(0, 240, 255, 0.1);
    
    /* Shadows & Glows */
    --ws-glow-primary: 0 0 25px rgba(0, 240, 255, 0.35);
    --ws-glow-accent: 0 0 25px rgba(255, 0, 127, 0.35);
    --ws-glow-text: 0 0 10px rgba(0, 240, 255, 0.5);
    
    /* Transitions */
    --ws-transition: all 0.3s ease;
    --ws-transition-fast: all 0.15s ease;
}

/* ================================================
   BASE OVERRIDES
   ================================================ */
body {
    background: var(--ws-bg-darker) !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: 0px solid var(--ws-border-light) !important;
    position: fixed !important;
    top: 30px;
    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(0, 240, 255, 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(0, 240, 255, 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-primary) !important;
    transition: all 0.3s ease;
    background: transparent !important;
    font-size: 14px !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(0, 240, 255, 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 - matches account (.header-icon-btn) */
.large-screens .cart-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;
    position: relative;
}

.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);
    transform: translateY(-2px);
}

.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, var(--ws-primary), var(--ws-accent)) !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(255, 0, 127, 0.05) !important;
    border: 1px solid rgba(255, 0, 127, 0.2) !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    margin-bottom: 40px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.bp-topup-disclaimer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    background: var(--ws-accent) !important;
}

.bp-disclaimer-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 0, 127, 0.1) !important;
    border: 1px solid rgba(255, 0, 127, 0.3) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2) !important;
}

/* Back to Top Redesign */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 18px !important;
    background: rgba(13, 13, 26, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid var(--ws-primary, #00F0FF) !important;
    color: var(--ws-primary, #00F0FF) !important;
    text-align: center !important;
    opacity: 0 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    -webkit-transform: translateY(20px) scale(0.9) !important;
    -ms-transform: translateY(20px) scale(0.9) !important;
    transform: translateY(20px) scale(0.9) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 9999 !important;
    cursor: pointer !important;
}

.back-to-top:hover {
    background: var(--ws-primary, #00F0FF) !important;
    border-color: var(--ws-primary, #00F0FF) !important;
    color: #05050A !important;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), 0 0 50px rgba(0, 240, 255, 0.2) !important;
    -webkit-transform: translateY(-8px) scale(1.05) !important;
    -ms-transform: translateY(-8px) scale(1.05) !important;
    transform: translateY(-8px) scale(1.05) !important;
}

.back-to-top.show {
    opacity: 1 !important;
    -webkit-transform: translateY(0) scale(1) !important;
    -ms-transform: translateY(0) scale(1) !important;
    transform: translateY(0) scale(1) !important;
}

.back-to-top i {
    transition: transform 0.3s ease !important;
}

.back-to-top:hover i {
    -webkit-transform: translateY(-3px) !important;
    -ms-transform: translateY(-3px) !important;
    transform: translateY(-3px) !important;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
        bottom: 20px !important;
        right: 20px !important;
        border-radius: 10px !important;
    }
}

.bp-disclaimer-icon {
    color: var(--ws-accent-light) !important;
    font-size: 16px !important;
}

.bp-topup-disclaimer p {
    color: var(--ws-text-secondary) !important;
    font-size: 13px !important;
    line-height: 1.6 !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(0, 240, 255, 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(0, 240, 255, 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 */
/* Sleek Game Cards Grid */
.game-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 24px !important;
    margin-top: 40px !important;
}

.game-card-item {
    background: var(--ws-bg-card) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: var(--ws-transition) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
}

/* Image container with aspect ratio */
.game-card-img-container {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    overflow: hidden !important;
    background: var(--ws-bg-darker) !important;
}

.game-card-img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Number badge */
.game-card-number-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    color: white !important;
    font-family: 'Orbitron', 'Chakra Petch', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4) !important;
    z-index: 2 !important;
    letter-spacing: 0.5px !important;
}

/* Card Body */
.game-card-body {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-grow: 1 !important;
    background: linear-gradient(to top, rgba(2, 2, 4, 0.95), rgba(13, 13, 21, 0.8)) !important;
    border-top: 1px solid var(--ws-border-light) !important;
}

.game-card-body h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--ws-text-primary) !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--ws-transition) !important;
}

.game-card-action {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--ws-primary-light) !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--ws-transition) !important;
}

.game-card-action i {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
}

/* Hover States */
.game-card-item:hover {
    transform: translateY(-8px) !important;
    border-color: var(--ws-primary) !important;
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2) !important;
}

.game-card-item:hover .game-card-img-container img {
    transform: scale(1.08) !important;
}

.game-card-item:hover .game-card-body h3 {
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3) !important;
}

.game-card-item:hover .game-card-action {
    color: white !important;
}

.game-card-item:hover .game-card-action i {
    transform: translateX(5px) !important;
}

.featured-grid,
.next-grid,
.last-grid {
    display: none !important;
}

/* Bento Grid Layout */
/* Cybernetic Features Grid */
.cyber-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

@media (max-width: 992px) {
    .cyber-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .cyber-features-grid {
        grid-template-columns: 1fr !important;
    }
}

.cyber-feature-card {
    background: linear-gradient(135deg, rgba(13, 13, 21, 0.9), rgba(5, 5, 10, 0.95)) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: var(--ws-transition) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Diagonal Cyber Cut/Glow border decoration */
.cyber-card-decor {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 24px !important;
    height: 24px !important;
    background: linear-gradient(225deg, var(--ws-primary), transparent 50%) !important;
    border-top: 2px solid var(--ws-primary) !important;
    border-right: 2px solid var(--ws-primary) !important;
    opacity: 0.3 !important;
    transition: var(--ws-transition) !important;
}

.cyber-feature-card:hover .cyber-card-decor {
    opacity: 1 !important;
    width: 32px !important;
    height: 32px !important;
    box-shadow: 0 0 15px var(--ws-primary) !important;
}

/* Tech Scanning effect line */
.cyber-card-scanner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--ws-primary), transparent) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cyber-feature-card:hover .cyber-card-scanner {
    animation: cyber-scan 2.5s linear infinite !important;
    opacity: 0.6 !important;
}

@keyframes cyber-scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* Icon radar circle container */
.cyber-icon-glow {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cyber-icon-radar {
    position: absolute !important;
    width: 52px !important;
    height: 52px !important;
    border: 1px dashed var(--ws-primary-light) !important;
    border-radius: 50% !important;
    opacity: 0.4 !important;
    animation: radar-rotate 10s linear infinite !important;
}

.cyber-feature-card:hover .cyber-icon-radar {
    border-color: var(--ws-accent) !important;
    opacity: 1 !important;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3) !important;
    animation-duration: 4s !important;
}

@keyframes radar-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cyber-tech-code {
    font-family: 'Space Grotesk', 'Orbitron', monospace !important;
    font-size: 10px !important;
    color: var(--ws-text-light) !important;
    letter-spacing: 1.5px !important;
    border-left: 2px solid var(--ws-primary) !important;
    padding-left: 8px !important;
    display: none;
}

.cyber-feature-card:hover .cyber-tech-code {
    color: var(--ws-primary) !important;
    border-color: var(--ws-accent) !important;
}

/* Card Body texts styling */
.cyber-card-body h3,
.cyber-card-body h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--ws-text-primary) !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--ws-transition) !important;
}

.cyber-card-body p {
    color: var(--ws-text-muted) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Cyber Glow Badge */
.cyber-badge-glow {
    background: rgba(255, 0, 127, 0.1) !important;
    border: 1px solid rgba(255, 0, 127, 0.4) !important;
    color: var(--ws-accent-light) !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.2) !important;
}

/* Card Hover States */
.cyber-feature-card:hover {
    border-color: var(--ws-primary) !important;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.15) !important;
    transform: translateY(-5px) !important;
}

.cyber-feature-card:hover .cyber-card-body h3,
.cyber-feature-card:hover .cyber-card-body h4 {
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4) !important;
}

/* Tier Grid & Cards */
.bp-tier-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

@media (max-width: 576px) {
    .bp-tier-grid {
        grid-template-columns: 1fr !important;
    }
}

.bp-tier-card {
    background: linear-gradient(135deg, rgba(13, 13, 21, 0.8), rgba(2, 2, 4, 0.9)) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 12px !important;
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    transition: var(--ws-transition) !important;
}

.bp-tier-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: var(--ws-border-light) !important;
    transition: var(--ws-transition) !important;
}

/* Hover Effect */
.bp-tier-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--ws-primary) !important;
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.15) !important;
}

.bp-tier-card:hover::before {
    background: var(--ws-primary) !important;
}

/* Tiers customization depending on significance */
.bp-tier-badge {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--ws-text-muted) !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-family: 'Orbitron', 'Chakra Petch', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px !important;
    transition: var(--ws-transition) !important;
}

.bp-badge-highlight {
    background: rgba(0, 240, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.3) !important;
    color: var(--ws-primary) !important;
}

.bp-badge-epic {
    background: rgba(124, 58, 237, 0.15) !important;
    border-color: rgba(124, 58, 237, 0.4) !important;
    color: #a78bfa !important;
}

.bp-badge-legendary {
    background: rgba(255, 0, 127, 0.15) !important;
    border-color: rgba(255, 0, 127, 0.4) !important;
    color: var(--ws-accent) !important;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.2) !important;
}

.bp-tier-card:hover .bp-tier-badge {
    transform: scale(1.05) !important;
}

.bp-tier-range {
    color: var(--ws-text-primary) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}

.bp-tier-benefit {
    color: var(--ws-text-muted) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.bp-tier-card:hover .bp-tier-benefit {
    color: var(--ws-text-secondary) !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 .mini_cart_item .remove {
    position: absolute !important;
    top: 50% !important;
    right: 12px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--ws-accent) !important;
}

.sideCart-wrapper .mini_cart_item .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;
    }
}

/* ================================================
   REDESIGNED CYBERPUNK HERO BANNER (METAVERSE STYLE)
   ================================================ */

/* Float Card container */
.hero-banner-1 {
background: #000000 !important;
    min-height: 90vh !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 40px auto 80px !important;
    border-radius: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    width: 95%;
}

/* Redesign bottom fade */
.hero-banner-1::after {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 50%, #000000 100%) !important;
    height: 120px !important;
    z-index: 4 !important;
}

/* Custom radial overlay on background video */
.hero-banner-1 .hero-bg-overlay {
    background: radial-gradient(circle at center, rgba(13, 13, 26, 0.1) 0%, rgba(0, 0, 0, 0.8) 80%), 
                linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(13,13,26,0.4) 50%, rgba(0,0,0,0.95) 100%) !important;
    z-index: 1 !important;
}

/* Concentric tech arcs/circles */
.tech-circles {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 2 !important;
}
.tech-circles-left {
    bottom: 0 !important;
    left: 0 !important;
}
.tech-circles-left .circle {
    position: absolute !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 50% !important;
    bottom: -80px !important;
    left: -80px !important;
    transform: translate(-50%, 50%) !important;
}
.tech-circles-left .circle-1 {
    width: 250px !important;
    height: 250px !important;
}
.tech-circles-left .circle-2 {
    width: 400px !important;
    height: 400px !important;
    border-color: rgba(255, 255, 255, 0.02) !important;
}

.tech-circles-right {
    top: 0 !important;
    right: 0 !important;
}
.tech-circles-right .circle {
    position: absolute !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 50% !important;
    top: -120px !important;
    right: -120px !important;
    transform: translate(50%, -50%) !important;
}
.tech-circles-right .circle-1 {
    width: 450px !important;
    height: 450px !important;
}
.tech-circles-right .circle-2 {
    width: 650px !important;
    height: 650px !important;
    border-color: rgba(255, 255, 255, 0.03) !important;
}
.tech-circles-right .circle-3 {
    width: 900px !important;
    height: 900px !important;
    border-color: rgba(255, 255, 255, 0.01) !important;
}

/* Explore Cut-Out Corner Badge */
.hero-explore-tab {
    position: absolute !important;
    top: -1px !important;
    right: -1px !important;
    z-index: 10 !important;
    background: #0F0F23 !important; /* Blend with body background */
    padding: 16px 28px 24px 28px !important;
    border-bottom-left-radius: 36px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.explore-btn-link {
    color: #FFFFFF !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}
.explore-btn-link:hover {
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.8) !important;
}
.explore-btn-link:hover .arrow-symbol {
    transform: translate(3px, -3px) !important;
}
.arrow-symbol {
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

/* Central Character Container */
.hero-model-container {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 750px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    pointer-events: none !important;
    z-index: 3 !important;
    overflow: hidden !important;
}
.hero-model-img {
    height: 98% !important;
    width: auto !important;
    object-fit: contain !important;
    mix-blend-mode: screen !important; /* Hologram screen blending */
    opacity: 0.95 !important;
    animation: hologram-flicker 6s infinite alternate ease-in-out !important;
}

@keyframes hologram-flicker {
    0%, 100% {
        opacity: 0.9;
        filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.15)) brightness(1);
    }
    50% {
        opacity: 0.98;
        filter: drop-shadow(0 0 35px rgba(124, 58, 237, 0.45)) brightness(1.1);
    }
    98% {
        opacity: 0.95;
    }
    99% {
        opacity: 0.7; /* sudden digital artifact blink */
    }
}

/* Layout Content Details */
.hero-content-container {
    z-index: 5 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.hero-left-content {
    padding: 100px 0 !important;
}
.hero-right-content {
    padding: 100px 0 !important;
}

.tech-title {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 66px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.hero-tech-subtitle {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 1px !important;
    color: #FFFFFF !important;
}

.tech-pill-btn {
    font-family: 'Orbitron', sans-serif !important;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
    padding: 14px 32px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.tech-pill-btn:hover {
    border-color: #FFFFFF !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-2px) !important;
    color: #FFFFFF !important;
}
.tech-pill-btn:hover .arrow-symbol {
    transform: translate(3px, -3px) !important;
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 991px) {
    .hero-banner-1 {
        margin: 100px 16px 16px 16px !important;
        border-radius: 28px !important;
        min-height: auto !important;
        padding: 80px 20px !important;
    }
    .hero-content-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .hero-left-content {
        padding: 40px 0 20px 0 !important;
        text-align: center !important;
    }
    .hero-left-content .content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .hero-right-content {
        padding: 20px 0 40px 0 !important;
        text-align: center !important;
        margin-top: 20px !important;
    }
    .hero-right-content .content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .tech-title {
        font-size: 38px !important;
    }
    .hero-tech-subtitle {
        font-size: 18px !important;
        text-align: center !important;
    }
    .hero-subtitle {
        text-align: center !important;
        max-width: 100% !important;
    }
    .hero-model-container {
        opacity: 0.15 !important; /* Holographic background behind content */
        max-width: 100% !important;
        height: 80% !important;
    }
    .tech-circles {
        display: none !important;
    }
    .hero-explore-tab {
        padding: 10px 18px 16px 18px !important;
        border-bottom-left-radius: 24px !important;
    }
    .btn-block {
        justify-content: center !important;
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .hero-banner-1 {
        margin: 90px 10px 10px 10px !important;
        border-radius: 20px !important;
        padding: 60px 10px !important;
    }
    .tech-title {
        font-size: 30px !important;
    }
    .hero-tech-subtitle {
        font-size: 16px !important;
    }
}

/* Tech Pill Button Hierarchies */
.primary-tech-btn {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}
.primary-tech-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #FFFFFF !important;
}
.sec-tech-btn {
    border-color: rgba(255, 255, 255, 0.2) !important;
    opacity: 0.8 !important;
}
.sec-tech-btn:hover {
    opacity: 1 !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

/* ================================================
   MOBILE & TABLET HEADER RESPONSIVENESS
   ================================================ */
@media (max-width: 991px) {
    /* Completely hide desktop header on mobile to prevent overlapping */
    header.large-screens {
        display: none !important;
    }
    
    /* Clean up mobile header alignment and dimensions */
    header.small-screen {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 70px !important;
        padding: 0 !important;
        background: #000000 !important; /* Pitch black cards style header background */
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
        z-index: 1000 !important;
    }
    
    header.small-screen .container {
        max-width: 100% !important;
        height: 100% !important;
        padding: 0 16px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    header.small-screen .mobile-menu {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
    }
    
    header.small-screen .navbar-brand {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    header.small-screen .navbar-brand img {
        height: 38px !important; /* Scale down mobile logo to fit header perfectly */
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain !important;
    }
    
    header.small-screen .hamburger-menu {
        height: 38px !important;
        width: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 10001 !important;
    }
    
    header.small-screen .hamburger-menu .bar {
        transform: none !important;
    }
    
    /* Center text, align menus properly inside mobile nav panel */
    /* Mobile nav drawer container */
    header.small-screen .mobile-navar {
        background: linear-gradient(180deg, #0d0d1a 0%, #06060c 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-left: 1px solid rgba(0, 240, 255, 0.15) !important;
        top: 0 !important;
        padding-top: 80px !important;
        z-index: 9999 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    }
    
    header.small-screen .mobile-navar ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 15px !important;
        margin: 0 !important;
    }

    header.small-screen .mobile-navar ul li {
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        list-style: none !important;
    }

    header.small-screen .mobile-navar ul li a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        font-family: 'Chakra Petch', sans-serif !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 14px 18px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.04) !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }
    
    header.small-screen .mobile-navar ul li a:hover {
        background: rgba(0, 240, 255, 0.05) !important;
        border-color: rgba(0, 240, 255, 0.2) !important;
        color: var(--ws-primary-light, #00F0FF) !important;
        padding-left: 22px !important;
    }

    header.small-screen .mobile-navar ul li.active > a, 
    header.small-screen .mobile-navar ul li a.active {
        background: linear-gradient(90deg, rgba(0, 240, 255, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%) !important;
        border-color: rgba(0, 240, 255, 0.3) !important;
        color: white !important;
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.1) !important;
    }
    
    header.small-screen .mobile-navar ul li.has-children.active > a {
        background: linear-gradient(90deg, rgba(0, 240, 255, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%) !important;
        border-color: rgba(0, 240, 255, 0.3) !important;
        color: white !important;
    }

    header.small-screen .mobile-navar .children {
        background: rgba(0, 0, 0, 0.2) !important;
        border-radius: 10px !important;
        padding: 4px !important;
        margin-top: 4px !important;
        display: none !important;
        flex-direction: column !important;
        gap: 4px !important;
        border: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    header.small-screen .mobile-navar ul li.active .children {
        display: flex !important;
    }

    header.small-screen .mobile-navar .children li a {
        background: transparent !important;
        border: none !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        justify-content: flex-start !important;
    }

    header.small-screen .mobile-navar .children li a:hover {
        color: var(--ws-primary-light, #00F0FF) !important;
        padding-left: 20px !important;
        background: transparent !important;
    }
    
    header.small-screen .mobile-icons-row {
        justify-content: space-around !important;
        gap: 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    header.small-screen .mobile-icon-btn {
        flex: 1 !important;
        justify-content: center !important;
        font-family: 'Chakra Petch', sans-serif !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-weight: 700 !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    header.small-screen .mobile-icon-btn:hover {
        background: rgba(0, 240, 255, 0.1) !important;
        border-color: rgba(0, 240, 255, 0.3) !important;
        color: white !important;
    }
}

@media (min-width: 992px) {
    header.large-screens {
        display: block !important;
    }
    header.small-screen {
        display: none !important;
    }
}

/* Elegant Points Form Styles */
.bp-input-wrapper {
    margin-bottom: 24px !important;
}

.bp-input-group {
    display: flex !important;
    align-items: stretch !important;
    background: var(--ws-bg-darker) !important;
    border: 2px solid var(--ws-border-light) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: var(--ws-transition) !important;
}

.bp-input-group:focus-within {
    border-color: var(--ws-primary) !important;
    box-shadow: var(--ws-glow-primary) !important;
}

.bp-input-prefix {
    background: rgba(0, 240, 255, 0.05) !important;
    border-right: 1px solid var(--ws-border-light) !important;
    color: var(--ws-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

.bp-input-group .form-control {
    background: transparent !important;
    border: none !important;
    color: var(--ws-text-primary) !important;
    font-size: 20px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    padding: 16px 20px !important;
    box-shadow: none !important;
    outline: none !important;
}

.bp-input-group .form-control::placeholder {
    color: var(--ws-text-light) !important;
}

.bp-currency-badge {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--ws-text-muted) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    letter-spacing: 0.5px !important;
}

/* Calculator Dashboard */
.bp-calculator-dashboard {
    background: rgba(2, 2, 4, 0.6) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 14px !important;
    padding: 20px !important;
    margin-top: 24px !important;
    position: relative !important;
}

.bp-calc-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
}

@media (max-width: 576px) {
    .bp-calc-grid {
        grid-template-columns: 1fr !important;
    }
}

.bp-calc-box {
    background: rgba(13, 13, 21, 0.8) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: var(--ws-transition) !important;
}

.bp-calc-box:hover {
    border-color: rgba(0, 240, 255, 0.3) !important;
}

.bp-box-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--ws-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
}

.bp-box-value-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.bp-box-input {
    background: transparent !important;
    border: none !important;
    color: var(--ws-text-primary) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

.bp-points-unit {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--ws-text-light) !important;
    margin-left: 8px !important;
}

/* Bonus Box Highlight */
.bp-box-bonus {
    border-color: rgba(124, 58, 237, 0.2) !important;
}

.bp-box-bonus:hover {
    border-color: rgba(124, 58, 237, 0.5) !important;
}

.bp-box-bonus .bp-box-label {
    color: #a78bfa !important;
}

.bp-box-bonus .bp-box-input {
    color: #c084fc !important;
}

.bp-plus-sign {
    color: #c084fc !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-right: 4px !important;
}

/* Total Points Box */
.bp-calc-total-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 127, 0.05)) !important;
    border: 1px solid var(--ws-primary) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1) !important;
}

.bp-total-label {
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--ws-primary-light) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.bp-pulse-icon {
    color: var(--ws-primary) !important;
    animation: bp-pulse-glow 2s infinite !important;
}

@keyframes bp-pulse-glow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

.bp-total-value-container {
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
}

.bp-total-input {
    background: transparent !important;
    border: none !important;
    color: var(--ws-primary-light) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    text-align: right !important;
    flex: 1 !important;
    min-width: 80px !important;
    max-width: 180px !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4) !important;
}

.bp-total-unit {
    font-family: 'Chakra Petch', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--ws-primary) !important;
    margin-left: 6px !important;
    letter-spacing: 0.5px !important;
}

/* ================================================
   INNER PAGE HERO BANNER
   ================================================ */
.inner-page-hero {
    position: relative !important;
    min-height: 380px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: var(--ws-bg-darker, #020204) !important;
    border-bottom: 1px solid var(--ws-border-light) !important;
    margin-top: 0px !important;
}

/* Floating particles in Hero Banner using pseudo-elements */
.inner-page-hero::before,
.inner-page-hero::after {
    content: '' !important;
    position: absolute !important;
    width: 3px !important;
    height: 3px !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* Cyan floating particles */
.inner-page-hero::before {
    background: transparent !important;
    box-shadow: 
        15vw 10vh 0 #00F0FF,
        35vw 25vh 0 rgba(0, 240, 255, 0.4),
        55vw 15vh 0 #00F0FF,
        75vw 30vh 0 rgba(0, 240, 255, 0.6),
        85vw 10vh 0 #00F0FF,
        20vw 35vh 0 rgba(0, 240, 255, 0.5),
        65vw 35vh 0 #00F0FF,
        90vw 25vh 0 rgba(0, 240, 255, 0.7) !important;
    animation: inner-particles-float-up 18s linear infinite !important;
    opacity: 0.65 !important;
}

/* Pink floating particles */
.inner-page-hero::after {
    background: transparent !important;
    box-shadow: 
        25vw 20vh 0 #FF007F,
        45vw 10vh 0 rgba(255, 0, 127, 0.5),
        60vw 25vh 0 #FF007F,
        80vw 15vh 0 rgba(255, 0, 127, 0.4),
        10vw 28vh 0 #FF007F,
        50vw 32vh 0 rgba(255, 0, 127, 0.6),
        70vw 8vh 0 #FF007F !important;
    animation: inner-particles-float-down 22s linear infinite !important;
    opacity: 0.55 !important;
}

.inner-page-hero-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px) !important;
    background-size: 35px 35px !important;
    background-position: center !important;
    pointer-events: none !important;
    opacity: 0.7 !important;
    animation: inner-grid-travel 25s linear infinite !important;
}

.inner-page-hero-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 500px !important;
    height: 250px !important;
    background: radial-gradient(ellipse, rgba(0, 240, 255, 0.06) 0%, rgba(255, 0, 127, 0.03) 50%, transparent 100%) !important;
    pointer-events: none !important;
    animation: inner-glow-pulse 8s ease-in-out infinite alternate !important;
}

@keyframes inner-grid-travel {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 70px;
    }
}

@keyframes inner-glow-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }
}

@keyframes inner-particles-float-up {
    0% {
        transform: translateY(60px) translateX(0);
    }
    50% {
        transform: translateY(0) translateX(15px);
    }
    100% {
        transform: translateY(-60px) translateX(0);
    }
}

@keyframes inner-particles-float-down {
    0% {
        transform: translateY(-60px) translateX(0);
    }
    50% {
        transform: translateY(0) translateX(-15px);
    }
    100% {
        transform: translateY(60px) translateX(0);
    }
}

.inner-page-hero-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    padding: 100px 20px 20px !important;
}

.inner-page-hero-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    font-family: 'Chakra Petch', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, #FFF 0%, var(--ws-primary-light) 50%, var(--ws-accent-light) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.35)) !important;
}

.inner-page-hero-breadcrumb {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(13, 13, 21, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    border: 1px solid var(--ws-border-light) !important;
}

.inner-page-hero-breadcrumb a,
.inner-page-hero-breadcrumb span {
    color: var(--ws-text-muted, #A0AEC0) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: var(--ws-transition-fast) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.inner-page-hero-breadcrumb a:hover {
    color: var(--ws-primary-light) !important;
}

.inner-page-hero-breadcrumb span.active {
    color: var(--ws-primary-light) !important;
    font-weight: 600 !important;
}

.inner-page-hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 768px) {
    .inner-page-hero {
        min-height: 220px !important;
    }
    .inner-page-hero-title {
        font-size: 32px !important;
        letter-spacing: 2px !important;
    }
}

/* ================================================
   About Us Page Custom styles
   ================================================ */
.about-section {
    background: var(--ws-bg-darker);
    padding: 80px 0;
    position: relative;
}

.about-desc-wrapper {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--ws-primary);
}

.about-tech-tag {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--ws-accent);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(244, 63, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.about-section h2 {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--ws-text-primary) !important;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--ws-text-primary) 0%, var(--ws-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--ws-primary-light) !important;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-section .medium-gray {
    color: var(--ws-text-secondary) !important;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Feature Cards Grid */
.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--ws-border-light, rgba(160, 174, 192, 0.1));
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    backdrop-filter: blur(10px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-card:nth-child(1) .feature-card-icon {
    color: var(--ws-primary-light);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}
.feature-card:nth-child(2) .feature-card-icon {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.1);
}
.feature-card:nth-child(3) .feature-card-icon {
    color: var(--ws-accent-light);
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.1);
}
.feature-card:nth-child(4) .feature-card-icon {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

.feature-card-deco {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--ws-primary);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.15);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.feature-card h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--ws-text-primary) !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: text-shadow 0.3s ease;
}

.feature-card .medium-gray {
    color: var(--ws-text-muted) !important;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* About Content Section */
.about {
    background: var(--ws-bg-darker);
}

.about .content h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--ws-primary) !important;
    font-size: 22px;
}

.about .content .medium-gray {
    color: var(--ws-text-muted) !important;
}

.about .featured-image {
    border-radius: 50%;
    max-width: 200px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    border: 3px solid var(--ws-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.about .featured-image:hover {
    transform: scale(1.15);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.7), 0 0 100px rgba(244, 63, 94, 0.3);
    border-color: var(--ws-accent);
}

.about .text-center:has(.featured-image) {
    perspective: 1000px;
}

/* About Page Buttons - Gaming Theme */
.about .cus-btn {
    background: linear-gradient(135deg, var(--ws-primary, #00F0FF), var(--ws-accent, #f43f5e)) !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    color: white !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    transition: all 0.3s ease;
}

.about .cus-btn::before {
    display: none !important;
}

.about .cus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.about .cus-btn.sec {
    background: transparent !important;
    border: 2px solid var(--ws-primary) !important;
    color: var(--ws-primary) !important;
}

.about .cus-btn.sec:hover {
    background: var(--ws-primary) !important;
    color: white !important;
}

/* About Info Panel Section */
.about.p-40 {
    background: var(--ws-bg-dark);
    padding: 80px 0 !important;
    position: relative;
}

.about-info-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 1px solid var(--ws-border-light, rgba(160, 174, 192, 0.1));
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.about-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.8;
}

.about-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--ws-primary);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

.about-info-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.about-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* First card: Cyan theme */
.col-lg-6:nth-child(1) .about-info-card::before {
    background: var(--ws-primary);
}
.col-lg-6:nth-child(1) .about-info-icon {
    color: var(--ws-primary-light);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

/* Second card: Pink theme */
.col-lg-6:nth-child(2) .about-info-card::before {
    background: var(--ws-accent);
}
.col-lg-6:nth-child(2) .about-info-card:hover {
    border-color: var(--ws-accent);
    box-shadow: 0 20px 40px rgba(244, 63, 94, 0.15);
}
.col-lg-6:nth-child(2) .about-info-icon {
    color: var(--ws-accent-light);
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.1);
}

.about-info-tag {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--ws-text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.about-info-card h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--ws-text-primary) !important;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.about-info-card .medium-gray {
    color: var(--ws-text-secondary) !important;
    font-size: 15px;
    line-height: 1.8;
}

.about-info-card .medium-gray:last-child {
    margin-bottom: 0 !important;
}

/* ================================================
   Contact Page Custom Redesign
   ================================================ */
.contact-page-wrapper {
    padding: 80px 0;
}

.contact-left-panel {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--ws-border-light);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.contact-left-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ws-primary), var(--ws-accent));
}

.contact-left-content {
    position: relative;
    z-index: 2;
}

.contact-left-content .game-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    animation: contact-icon-pulse 3s ease-in-out infinite;
}

@keyframes contact-icon-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 45px rgba(124, 58, 237, 0.7); }
}

.contact-left-content .game-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.contact-left-content h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--ws-text-primary) 0%, var(--ws-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-left-content p {
    font-size: 15px;
    color: var(--ws-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-feature-item:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateX(5px);
}

.contact-feature-item .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.contact-feature-item:hover .feature-icon {
    background: var(--ws-primary);
    color: white;
    box-shadow: 0 0 15px var(--ws-primary);
}

.contact-feature-item .feature-icon i {
    font-size: 16px;
    color: var(--ws-primary-light);
    transition: all 0.3s ease;
}

.contact-feature-item:hover .feature-icon i {
    color: white;
}

.contact-feature-item h6 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ws-primary-light) !important;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-feature-item span {
    font-size: 14px;
    color: var(--ws-text-secondary);
    line-height: 1.5;
}

.contact-feature-item span a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-feature-item span a:hover {
    color: var(--ws-primary);
}

.contact-right-panel {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--ws-border-light);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact-right-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ws-accent), var(--ws-primary));
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--ws-text-primary) !important;
}

.contact-form-header p {
    color: var(--ws-text-muted);
    font-size: 14px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--ws-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    background: rgba(15, 15, 35, 0.6) !important;
    border: 1px solid var(--ws-border-light) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    color: var(--ws-text-primary) !important;
    transition: all 0.3s ease;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--ws-text-light) !important;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--ws-primary) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2) !important;
    outline: none !important;
}

.contact-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-form-row .contact-form-group {
    flex: 1;
}

.contact-captcha {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.contact-captcha input {
    flex: 1;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
}
.page-content-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .contact-page-wrapper {
        padding: 30px 0;
    }
    
    .contact-left-panel,
    .contact-right-panel {
        padding: 40px 30px;
    }
    
    .contact-left-panel::after,
    .contact-right-panel::after {
        width: 100%;
        height: 4px;
        left: 0;
        top: 0;
    }
    
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ================================================
   Product List Page Redesign
   ================================================ */
/* Product Sidebar Categories */
.category-sidebar-menu {
    position: sticky;
    top: 110px;
    background: linear-gradient(180deg, rgba(13, 13, 21, 0.8) 0%, rgba(5, 5, 10, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-sidebar-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ws-text-primary) !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    position: relative;
}

.category-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--ws-primary);
    box-shadow: 0 0 8px var(--ws-primary);
}

.category-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--ws-text-muted) !important;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid transparent;
    cursor: pointer;
}

.category-sidebar-link i {
    font-size: 11px;
    color: var(--ws-text-light);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-sidebar-link:hover {
    background: rgba(0, 240, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.2);
    border-left-color: rgba(0, 240, 255, 0.5);
    color: var(--ws-text-primary) !important;
    padding-left: 22px;
}

.category-sidebar-link.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    border-left-color: var(--ws-primary);
    color: var(--ws-primary-light) !important;
    padding-left: 22px;
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.category-sidebar-link:hover i,
.category-sidebar-link.active i {
    color: var(--ws-primary-light);
    transform: translateX(3px);
}

.product-grid-section {
    padding: 80px 0;
    background: var(--ws-bg-darker) !important;
}

.product-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-grid-header h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--ws-text-primary) 0%, var(--ws-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-new {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.5) 0%, rgba(10, 10, 20, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--ws-border-light);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--ws-primary);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-new:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 10, 0.9) 0%, rgba(5, 5, 10, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-new:hover .product-card-overlay {
    opacity: 1;
}

.product-card-play {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.product-card-new:hover .product-card-play {
    transform: scale(1);
    opacity: 1;
}

.product-card-play svg {
    width: 20px;
    height: 20px;
    color: white;
    margin-left: 3px;
}

.product-card-body {
    padding: 24px;
}

.product-card-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    color: var(--ws-text-primary) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: var(--ws-primary-light) !important;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card-price {
    display: flex;
    flex-direction: column;
}

.product-card-price-label {
    font-size: 11px;
    color: var(--ws-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.product-card-price-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.3);
}

.product-card-btn svg {
    width: 14px;
    height: 14px;
}

/* No Products State */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.3) 0%, rgba(10, 10, 20, 0.6) 100%);
    border: 1px solid var(--ws-border-light);
    border-radius: 20px;
}

.no-products-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--ws-primary-light);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.no-products-icon svg {
    width: 38px;
    height: 38px;
}

.no-products h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ws-text-primary) !important;
    margin-bottom: 12px;
}

.no-products p {
    color: var(--ws-text-muted);
    font-size: 15px;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--ws-primary);
    color: var(--ws-primary-light);
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.view-all-btn:hover {
    background: var(--ws-primary);
    color: white !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
}

.view-all-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-sidebar-menu {
        position: static;
        margin-bottom: 24px;
        padding: 16px;
    }
    
    .category-sidebar-title {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .category-sidebar-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    
    .category-sidebar-list::-webkit-scrollbar {
        display: none;
    }
    
    .category-sidebar-link {
        white-space: nowrap;
        padding: 8px 16px;
    }
    
    .category-sidebar-link i {
        display: none;
    }
}

/* ================================================
   Product Tabs Section Redesign
   ================================================ */
.product-tabs-section {
    padding: 100px 0;
    background: var(--ws-bg-darker) !important;
}

/* Product Detail Vertical Tabs Nav */
.product-tabs-side-nav {
    position: sticky;
    top: 110px;
    background: linear-gradient(180deg, rgba(13, 13, 21, 0.8) 0%, rgba(5, 5, 10, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-tabs-side-nav .product-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--ws-text-muted) !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid transparent;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-tabs-side-nav .product-tab-btn i {
    font-size: 14px;
    color: var(--ws-text-light);
    transition: all 0.3s ease;
}

.product-tabs-side-nav .product-tab-btn:hover {
    background: rgba(0, 240, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.2);
    border-left-color: rgba(0, 240, 255, 0.5);
    color: var(--ws-text-primary) !important;
    padding-left: 24px;
}

.product-tabs-side-nav .product-tab-btn.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    border-left-color: var(--ws-primary);
    color: var(--ws-primary-light) !important;
    padding-left: 24px;
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.product-tabs-side-nav .product-tab-btn:hover i,
.product-tabs-side-nav .product-tab-btn.active i {
    color: var(--ws-primary-light);
    transform: scale(1.1);
}

.product-tab-content {
    display: none;
    animation: fadeInUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.product-tab-content.active {
    display: block;
}

.tab-content-card {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--ws-border-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tab-content-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ws-text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-content-text {
    color: var(--ws-text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.tab-content-text p {
    margin-bottom: 20px;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-feature-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.02);
    transform: translateY(-3px);
}

.service-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-feature-item:hover .service-feature-icon {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    box-shadow: 0 0 15px var(--ws-primary);
}

.service-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ws-primary-light);
    transition: all 0.3s ease;
}

.service-feature-item:hover .service-feature-icon svg {
    color: white;
}

.service-feature-content h4 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ws-primary-light) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-feature-content p {
    font-size: 14px;
    color: var(--ws-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Training Section */
.training-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.training-section-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ws-primary-light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.training-section-subtitle {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ws-text-primary) !important;
}

.training-section-desc {
    color: var(--ws-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.training-list-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ws-text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-list,
.training-notes-list {
    color: var(--ws-text-muted);
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.training-list li,
.training-notes-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.training-list li::before,
.training-notes-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--ws-primary-light);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--ws-primary-light);
}

.training-notes-list li::before {
    background: var(--ws-accent);
    box-shadow: 0 0 6px var(--ws-accent);
}

/* How It Works Steps */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.how-it-works-step {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.how-it-works-step:hover {
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.02);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.how-it-works-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.how-it-works-step:hover .how-it-works-icon {
    background: var(--ws-primary);
    border-color: var(--ws-primary);
    box-shadow: 0 0 20px var(--ws-primary);
}

.how-it-works-icon svg {
    width: 28px;
    height: 28px;
    color: var(--ws-primary-light);
    transition: all 0.4s ease;
}

.how-it-works-step:hover .how-it-works-icon svg {
    color: white;
}

.how-it-works-number {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--ws-primary-light);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.how-it-works-step-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ws-text-primary) !important;
    text-transform: uppercase;
}

.how-it-works-step-desc {
    font-size: 14px;
    color: var(--ws-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-tabs-section {
        padding: 60px 0;
    }
    
    .product-tabs-side-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding: 16px;
        margin-bottom: 24px;
        scrollbar-width: none;
    }
    
    .product-tabs-side-nav::-webkit-scrollbar {
        display: none;
    }
    
    .product-tabs-side-nav .product-tab-btn {
        white-space: nowrap;
        padding: 10px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
    }
    
    .product-tabs-side-nav .product-tab-btn:hover,
    .product-tabs-side-nav .product-tab-btn.active {
        padding-left: 16px;
        border-left: none;
    }
    
    .product-tabs-side-nav .product-tab-btn:hover {
        border-bottom-color: rgba(0, 240, 255, 0.5);
    }
    
    .product-tabs-side-nav .product-tab-btn.active {
        border-bottom-color: var(--ws-primary);
    }
    
    .tab-content-card {
        padding: 30px 20px;
    }
}

/* ================================================
   Product Detail Page Redesign
   ================================================ */
.product-detail-section {
    padding: 80px 0 20px 0;
    background: var(--ws-bg-darker) !important;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-detail-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--ws-bg-card);
    border: 1px solid var(--ws-border-light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-detail-image-wrapper:hover .product-detail-image {
    transform: scale(1.05);
}

.product-detail-info {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--ws-border-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-detail-category {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--ws-primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-detail-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--ws-text-primary) 0%, var(--ws-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-detail-summary {
    color: var(--ws-text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-detail-purchase-panel {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.product-detail-points-box {
    flex-shrink: 0;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 160px;
}

.product-detail-points-label {
    font-size: 11px;
    color: var(--ws-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.product-detail-points-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--ws-primary-light) !important;
    line-height: 1;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

@media (max-width: 576px) {
    .product-detail-purchase-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }
    .product-detail-points-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 20px;
        min-width: auto;
        text-align: center;
    }
}

.product-detail-cart-form {
    display: flex;
    flex-direction: column;
}

.product-detail-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    color: white !important;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.product-detail-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.product-detail-cart-btn svg {
    width: 18px;
    height: 18px;
}

/* Optional Training Section */
.optional-training-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.optional-training-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.optional-training-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ws-text-primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.optional-training-title svg {
    width: 20px;
    height: 20px;
    color: var(--ws-primary-light);
}

.optional-training-toggle {
    position: relative;
    width: 56px;
    height: 30px;
}

.optional-training-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.optional-training-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.optional-training-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.optional-training-toggle input:checked + .optional-training-slider {
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
}

.optional-training-toggle input:checked + .optional-training-slider:before {
    transform: translateX(26px);
}

.optional-training-desc {
    color: var(--ws-text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.optional-training-readmore {
    color: var(--ws-primary-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    transition: color 0.3s ease;
}

.optional-training-readmore:hover {
    color: var(--ws-accent-light);
}

/* Training Slider Section */
.training-slider-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.training-slider-section.hidden {
    display: none;
}

.training-slider-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.training-slider-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ws-text-primary) !important;
}

.training-slider-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ws-primary-light) !important;
}

.training-slider-wrapper {
    position: relative;
    padding: 20px 0;
}

.training-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.training-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transition: transform 0.2s ease;
}

.training-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.training-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.training-slider-tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ws-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
}


/* ================================================
   Sleek & Unified Auth (Login/Register/Forgot) Redesign
   ================================================ */
.auth-page-section {
    padding: 80px 0;
    background: var(--ws-bg-darker) !important;
}

.auth-page-wrapper {
    display: flex;
    min-height: 650px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--ws-border-light);
}

/* Left Panel - Gaming Intro */
.auth-left-panel {
    position: relative;
    width: 50%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%), #0d0d15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
    border-right: 1px solid rgba(0, 240, 255, 0.1);
}

.auth-left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/media/blogs/bd-1.png') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 1;
}

.auth-left-panel-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.auth-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.auth-left-content .game-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.35);
    border: 1px solid rgba(0, 240, 255, 0.2);
    animation: auth-icon-pulse 3s infinite ease-in-out;
}

@keyframes auth-icon-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 35px rgba(0, 240, 255, 0.35);
    }
    50% {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
    }
}

.auth-left-content .game-icon svg {
    width: 44px;
    height: 44px;
    color: white;
}

.auth-left-content h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--ws-text-primary) 0%, var(--ws-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-left-content p {
    font-size: 14px;
    color: var(--ws-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ws-text-secondary);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.auth-feature-item:hover {
    background: rgba(0, 240, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.15);
    transform: translateX(5px);
}

.auth-feature-item .feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-feature-item .feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--ws-primary-light);
}

/* Right Panel - Input Form */
.auth-right-panel {
    width: 50%;
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.auth-form-header {
    margin-bottom: 35px;
}

.auth-form-header h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ws-text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form-header p {
    color: var(--ws-text-muted);
    font-size: 13px;
    margin: 0;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--ws-text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-form-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    color: var(--ws-text-primary) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auth-form-group input::placeholder {
    color: var(--ws-text-light) !important;
    opacity: 0.5;
}

.auth-form-group input:focus {
    border-color: rgba(0, 240, 255, 0.4) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15) !important;
    outline: none !important;
    background: rgba(0, 0, 0, 0.4) !important;
}

.auth-form-row {
    display: flex;
    gap: 16px;
}

.auth-form-row .auth-form-group {
    flex: 1;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ws-primary);
    cursor: pointer;
}

.auth-checkbox label {
    color: var(--ws-text-muted);
    font-size: 13px;
    cursor: pointer;
    margin: 0;
}

.auth-forgot a {
    color: var(--ws-primary-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-forgot a:hover {
    color: var(--ws-accent-light);
}

.auth-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px 30px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Chakra Petch', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.25);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.3);
}

.auth-footer-link {
    text-align: center;
    margin-top: 24px;
}

.auth-footer-link p {
    color: var(--ws-text-muted);
    font-size: 13px;
    margin: 0;
}

.auth-footer-link a {
    color: var(--ws-primary-light);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer-link a:hover {
    color: var(--ws-accent-light);
}

.auth-captcha {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.auth-captcha input {
    flex: 1;
}

.auth-captcha img {
    border-radius: 10px;
    border: 1px solid var(--ws-border-light);
    height: 48px;
}

/* Responsive auth styles */
@media (max-width: 991px) {
    .auth-page-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .auth-left-panel, .auth-right-panel {
        width: 100%;
    }
    
    .auth-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
        min-height: auto;
        padding: 40px 30px;
    }
    
    .auth-left-content h2 {
        font-size: 28px;
    }
    
    .auth-left-content p {
        margin-bottom: 24px;
    }
    
    .auth-right-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .auth-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .auth-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .auth-captcha {
        flex-direction: column;
        align-items: stretch;
    }
    
    .auth-captcha img {
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
    }
}


/* ================================================
   Cart Page Redesign
   ================================================ */
.cart-section {
    padding: 80px 0;
    background: var(--ws-bg-darker) !important;
    min-height: 70vh;
}

.cart-continue {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
}

.cart-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ws-text-muted) !important;
    font-size: 13px;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-continue-btn:hover {
    color: var(--ws-primary-light) !important;
}

.cart-continue-btn svg {
    width: 16px;
    height: 16px;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1200px) {
    .cart-grid {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

.cart-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-product-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cart-product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.05);
}

@media (max-width: 768px) {
    .cart-product-card {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .cart-product-actions {
        grid-column: 1 / -1;
        justify-content: flex-end !important;
        flex-direction: row !important;
        align-items: center !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 16px;
        margin-top: 8px;
        gap: 20px;
    }
}

.cart-product-image {
    width: 140px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--ws-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .cart-product-image {
        width: 100px;
        height: 75px;
    }
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cart-product-card:hover .cart-product-image img {
    transform: scale(1.05);
}

.cart-product-points-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.05) !important;
    border: 1.5px dashed rgba(0, 240, 255, 0.2) !important;
}

.cart-product-points-only svg {
    width: 24px;
    height: 24px;
    color: var(--ws-primary-light);
}

.cart-product-points-only .points-badge {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--ws-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-product-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ws-text-primary) !important;
    line-height: 1.3;
    margin: 0;
}

.cart-product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-price {
    font-size: 13px;
    color: var(--ws-text-muted);
}

.cart-product-price span {
    color: var(--ws-primary-light);
    font-weight: 600;
}

.cart-product-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    justify-content: center;
}

.cart-product-total {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(239, 68, 68, 0.15) !important;
    color: #ff4a4a !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-remove-btn:hover {
    background: #ff4a4a !important;
    color: white !important;
    border-color: #ff4a4a !important;
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.3);
}

.cart-remove-btn svg {
    width: 14px;
    height: 14px;
}

/* Empty Cart State */
.cart-empty {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 24px;
    border: 1px solid var(--ws-border-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: auth-icon-pulse 3s infinite ease-in-out;
}

.cart-empty-icon svg {
    width: 44px;
    height: 44px;
    color: var(--ws-primary-light);
}

.cart-empty h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ws-text-primary) !important;
    text-transform: uppercase;
}

.cart-empty p {
    color: var(--ws-text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    color: white !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-empty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

/* Cart Summary Sidebar */
.cart-summary {
    position: sticky;
    top: 110px;
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%);
    border-radius: 24px;
    border: 1px solid var(--ws-border-light);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cart-summary-header {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-summary-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ws-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-summary-title svg {
    width: 20px;
    height: 20px;
    color: var(--ws-primary-light);
}

.cart-summary-body {
    padding: 30px;
}

.cart-summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-item-label {
    font-size: 13px;
    color: var(--ws-text-muted);
}

.cart-summary-item-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ws-text-secondary);
}

.cart-summary-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-row .label {
    font-size: 13px;
    color: var(--ws-text-muted);
}

.cart-summary-row .value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ws-text-secondary);
}

.cart-summary-row.total {
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.cart-summary-row.total .label {
    font-size: 15px;
    font-weight: 700;
    color: var(--ws-text-primary);
}

.cart-summary-row.total .value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--ws-primary-light) !important;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    color: white !important;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.cart-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.cart-checkout-btn svg {
    width: 18px;
    height: 18px;
}

.cart-continue-shopping {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--ws-text-muted);
    font-size: 13px;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-continue-shopping:hover {
    color: var(--ws-primary-light);
}

.cart-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 10px;
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-secure-badge svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .cart-section {
        padding: 40px 0;
    }
    
    .cart-summary {
        position: static;
    }
}

/* Available Credits indicator */
.available-credits-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 14px;
    margin-bottom: 25px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

.available-credits-bar span {
    color: var(--ws-text-muted);
}

.available-credits-bar strong {
    color: var(--ws-primary-light);
    font-weight: 800;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Optional Training Addon inside Cart Card */
.cart-product-addon-details {
    position: relative;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 14px;
    display: inline-block;
    min-width: 280px;
}

.cart-product-addon-details .addon-title {
    color: #22c55e;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.cart-product-addon-details .addon-delete-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
    font-size: 10px;
    transition: all 0.2s ease;
}

.cart-product-addon-details .addon-delete-btn:hover {
    background: #ff4a4a;
    transform: scale(1.1);
}

.cart-product-addon-details .addon-formula {
    color: var(--ws-text-muted);
    font-size: 11px;
    margin-bottom: 4px;
    font-family: 'Chakra Petch', sans-serif;
}

.cart-product-addon-details .addon-total {
    color: var(--ws-text-primary);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
}

/* ================================================
   Generic Content Page (Privacy, TOS, etc.) Redesign
   ================================================ */
.page-content-wrapper {
    padding: 80px 0;
    background: var(--ws-bg-darker) !important;
}

.page-content-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.page-content-inner p, .page-content-inner li ul li {
    color: var(--ws-text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 400;
}

.page-content-inner h1, 
.page-content-inner h2, 
.page-content-inner h3, 
.page-content-inner h4 {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--ws-text-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.page-content-inner h1 { font-size: 28px; }
.page-content-inner h2 { font-size: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 12px; }
.page-content-inner h3 { font-size: 20px; }
.page-content-inner h4 { font-size: 16px; }

.page-content-inner ul, 
.page-content-inner ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.page-content-inner li {
color: var(--ws-text-primary);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 40px 0;
    }
    
    .page-content-inner {
        padding: 30px 20px;
    }
}

/* ================================================
   Header Responsiveness Overrides
   ================================================ */
.large-screens .custom-jpont {
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
}

.large-screens .custom-jpont a {
    color: var(--ws-primary-light) !important;
    font-family: 'Chakra Petch', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px dashed rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1280px) {
    header.large-screens {
        width: 96% !important;
        top: 15px !important;
    }
    
    .large-screens .navbar-brand img {
        height: 32px !important;
    }
    
    .large-screens .navbar-nav.mainmenu {
        gap: 2px !important;
    }
    
    .large-screens .navbar-nav.mainmenu > li > a {
        padding: 20px 8px !important;
        font-size: 12px !important;
    }
    
    .large-screens .navbar-nav.right-content {
        gap: 6px !important;
    }
    
    .large-screens .header-icon-btn {
        width: 34px !important;
        height: 34px !important;
    }
    
    .large-screens .header-icon-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .large-screens .custom-jpont a {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
}


/* ================================================
   User Dashboard Redesign
   ================================================ */
.dashboard-page-wrapper {
    padding: 60px 0;
    background: var(--ws-bg-darker) !important;
    min-height: 80vh;
    margin-top: 60px;
    margin-bottom: 60px;
}

.dashboard-sidebar {
    position: sticky;
    top: 110px;
    z-index: 10;
}

.sidebar-menu {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--ws-border-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ws-text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    color: var(--ws-text-muted) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%) !important;
    border-color: rgba(0, 240, 255, 0.3) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.1);
}

.sidebar-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.sidebar-link.logout {
    margin-top: 16px;
    background: rgba(239, 68, 68, 0.05) !important;
    border-color: rgba(239, 68, 68, 0.15) !important;
    color: #ff4a4a !important;
}

.sidebar-link.logout:hover {
    background: #ff4a4a !important;
    border-color: #ff4a4a !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.2);
}

/* Content Card */
.dashboard-content-card {
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--ws-border-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.content-card-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ws-text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.content-card-title svg {
    width: 20px;
    height: 20px;
    color: var(--ws-primary-light);
}

/* Table Styling */
.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--ws-text-primary);
}

.dashboard-table thead th {
    background: rgba(0, 240, 255, 0.04);
    padding: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ws-text-muted);
    border-bottom: 2px solid rgba(0, 240, 255, 0.2);
    text-align: left;
}

.dashboard-table tbody td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--ws-text-secondary);
}

.dashboard-table tbody tr {
    transition: all 0.2s ease;
}

.dashboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.dashboard-table .order-number {
    color: var(--ws-primary-light);
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
}

.dashboard-table .order-date {
    color: var(--ws-text-muted);
    font-size: 11px;
}

.dashboard-table .status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.completed,
.status-badge.delivered {
    background: rgba(34, 197, 94, 0.08) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.08) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(251, 191, 36, 0.2) !important;
}

.status-badge.processing {
    background: rgba(124, 58, 237, 0.08) !important;
    color: var(--ws-primary-light) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.08) !important;
    color: #ff4a4a !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    color: var(--ws-text-muted) !important;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--ws-primary) !important;
    border-color: var(--ws-primary) !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    transform: translateY(-1px);
}

/* Password Form Styling */
.password-form-card {
    max-width: 600px;
    margin: 0 auto;
}

.password-form-group {
    margin-bottom: 20px;
}

.password-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--ws-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Chakra Petch', sans-serif;
}

.password-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    color: var(--ws-text-primary) !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--ws-primary) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15) !important;
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.15) !important;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent)) !important;
    border: none;
    border-radius: 14px;
    color: white !important;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

/* Alert Messages */
.alert-success-msg {
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.08) !important;
    border: 1px solid rgba(34, 197, 94, 0.15) !important;
    border-radius: 12px;
    color: #22c55e;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.alert-error-msg {
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(239, 68, 68, 0.15) !important;
    border-radius: 12px;
    color: #ff4a4a;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.no-orders-msg {
    text-align: center;
    padding: 60px 20px;
    color: var(--ws-text-muted);
}

.no-orders-msg svg {
    width: 48px;
    height: 48px;
    color: var(--ws-primary);
    opacity: 0.4;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .dashboard-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-link {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dashboard-content-card {
        padding: 20px;
    }
    
    .dashboard-table {
        font-size: 12px;
    }
    
    .dashboard-table thead th,
    .dashboard-table tbody td {
        padding: 10px 8px;
    }
}


/* Back to Top Redesign */
.back-to-top {
    position: fixed !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    -webkit-transform: translateY(20px) !important;
    -ms-transform: translateY(20px) !important;
    transform: translateY(20px) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 9999 !important;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--ws-accent), var(--ws-primary)) !important;
    color: white !important;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.6) !important;
    -webkit-transform: translateY(-5px) !important;
    -ms-transform: translateY(-5px) !important;
    transform: translateY(-5px) !important;
}

.back-to-top.show {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
        bottom: 16px !important;
        right: 16px !important;
    }
}
