.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===== SKIPGRIND - OPTIMIZED GLOBAL CSS ===== */
/* GameBoost Style | Performance Optimized | All Effects */

/* ===== 1. COLOR VARIABLES ===== */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4fcf;
    --primary-light: #a29bfe;
    --secondary: #00cec9;
    --dark-bg: #0f0f1a;
    --card-bg: #1a1a2e;
    --section-bg: #16213e;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --border: rgba(108, 92, 231, 0.3);
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #ff7675;
}

/* ===== 2. GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--text);
}

/* ===== 4. CURSOR GLOW EFFECT ===== */
.cursor-glow {
    width: 60px;
    height: 60px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, rgba(0, 206, 201, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* ===== 5. PREMIUM BUTTON EFFECTS ===== */
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
button,
input[type="submit"] {
    position: relative !important;
    background: linear-gradient(135deg, #6c5ce7, #5a4fcf) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 14px 32px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3) !important;
    z-index: 1 !important;
}

.elementor-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.5) !important;
}

.elementor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.elementor-button:hover::before {
    left: 100%;
}

.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: buttonRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes buttonRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Cart Button - Cyan/Green */
.woocommerce a.button.add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
    background: linear-gradient(135deg, #00cec9, #00b894) !important;
}

/* ===== 6. INTERACTIVE CARDS ===== */
.game-card,
.product-card,
.feature-box,
.elementor-widget-icon-box,
.woocommerce ul.products li.product {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.game-card:hover,
.product-card:hover,
.feature-box:hover,
.elementor-widget-icon-box:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.4);
}

.game-card::after,
.product-card::after,
.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.game-card:hover::after,
.product-card:hover::after,
.feature-box:hover::after {
    transform: scaleX(1);
    animation: gradientFlow 2s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== 7. WOOCOMMERCE PRODUCTS ===== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s ease;
    margin: 0 !important;
}

.woocommerce ul.products li.product img {
    border-radius: 12px;
    transition: transform 0.5s;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 15px 0 10px;
    color: var(--text);
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: var(--primary-light);
}

.woocommerce ul.products li.product .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

/* ===== 8. SALE BADGE - PERFECT CIRCLE ===== */
.woocommerce span.onsale {
    background: linear-gradient(135deg, #00cec9, #00b894) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    min-width: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 50px !important;
    text-align: center !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 5px 20px rgba(0, 206, 201, 0.4) !important;
    z-index: 10 !important;
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    left: auto !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    animation: badgePulse 2s ease-in-out infinite;
}

.woocommerce ul.products li.product:hover span.onsale {
    transform: scale(1.1) !important;
    box-shadow: 0 10px 30px rgba(0, 206, 201, 0.6) !important;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 206, 201, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(0, 206, 201, 0.7);
    }
}

/* Single Product Page - Larger Badge */
.woocommerce div.product span.onsale {
    width: 60px !important;
    height: 60px !important;
    min-height: 60px !important;
    min-width: 60px !important;
    line-height: 60px !important;
    font-size: 11px !important;
    top: 20px !important;
    right: 20px !important;
}

/* Mobile - Smaller Badge */
@media (max-width: 768px) {
    .woocommerce span.onsale {
        width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        min-width: 40px !important;
        line-height: 40px !important;
        font-size: 9px !important;
        top: 10px !important;
        right: 10px !important;
    }
    
    .woocommerce div.product span.onsale {
        width: 50px !important;
        height: 50px !important;
        min-height: 50px !important;
        min-width: 50px !important;
        line-height: 50px !important;
        font-size: 10px !important;
    }
}

/* ===== 9. CART QUANTITY BUTTONS - FIX OVERLAP ===== */
.woocommerce .quantity {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    border: 2px solid var(--border) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: var(--card-bg) !important;
}

.woocommerce .quantity input.qty {
    width: 50px !important;
    height: 40px !important;
    text-align: center !important;
    border: none !important;
    border-left: 1px solid var(--border) !important;
    border-right: 1px solid var(--border) !important;
    background: var(--card-bg) !important;
    color: var(--text) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce .quantity .minus,
.woocommerce .quantity .plus {
    width: 35px !important;
    height: 40px !important;
    background: rgba(108, 92, 231, 0.2) !important;
    border: none !important;
    color: var(--primary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce .quantity .minus:hover,
.woocommerce .quantity .plus:hover {
    background: var(--primary) !important;
    color: white !important;
}

.woocommerce .quantity .minus {
    border-radius: 10px 0 0 10px !important;
}

.woocommerce .quantity .plus {
    border-radius: 0 10px 10px 0 !important;
}

/* Cart Page Quantity */
.woocommerce-page .quantity {
    display: inline-flex !important;
}

/* ===== 10. SEARCH BAR ===== */
.elementor-search-form__input {
    background: var(--card-bg) !important;
    border: 2px solid var(--border) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    color: var(--text) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.elementor-search-form__input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2) !important;
    transform: scale(1.05);
    outline: none !important;
}

.elementor-search-form__submit {
    background: var(--primary) !important;
    border-radius: 10px !important;
    transition: all 0.3s !important;
}

.elementor-search-form__submit:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary), var(--success)) !important;
}

/* ===== 11. NAVIGATION ===== */
.elementor-nav-menu--main li a {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 15px;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
}

.elementor-nav-menu--main li a:hover {
    color: var(--primary);
}

.elementor-nav-menu--main li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.elementor-nav-menu--main li a:hover::after,
.elementor-nav-menu--main li.current-menu-item a::after {
    width: 100%;
}

/* ===== 12. SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 13. SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.6);
}

/* ===== 14. NOTIFICATION TOAST ===== */
.notification-toast {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4);
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.notification-toast.show {
    transform: translateX(0);
}

/* ===== 15. ICON ANIMATIONS ===== */
.elementor-icon-box-icon i,
.elementor-icon-box-icon svg {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.elementor-widget-icon-box:hover .elementor-icon-box-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-light);
}

/* ===== 16. RESPONSIVE ===== */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px !important;
    }
    
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 20px !important; }
    body, p { font-size: 14px !important; }
    
    .elementor-button {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
    
    .elementor-icon {
        font-size: 30px !important;
    }
    
    .game-card,
    .product-card,
    .feature-box {
        padding: 20px !important;
    }
    
    .woocommerce .quantity input.qty {
        width: 40px !important;
        height: 35px !important;
    }
    
    .woocommerce .quantity .minus,
    .woocommerce .quantity .plus {
        width: 30px !important;
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 24px !important; }
    h2 { font-size: 20px !important; }
    
    .elementor-button {
        font-size: 11px !important;
        padding: 8px 16px !important;
    }
}

/* ===== 17. PERFORMANCE OPTIMIZATIONS ===== */
.elementor-widget,
.elementor-section {
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== 18. SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* ===== 19. SELECTION ===== */
::selection {
    background: rgba(108, 92, 231, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(108, 92, 231, 0.3);
    color: white;
}

/* ===== 20. FLOATING ACTION BUTTON ===== */
.floating-action-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--success));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 206, 201, 0.4);
    transition: all 0.3s;
    z-index: 9998;
    animation: fabPulse 2s ease-in-out infinite;
}

.floating-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(0, 206, 201, 0.6);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(0, 206, 201, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(0, 206, 201, 0.7); }
}

/* ===== 21. EQUAL HEIGHT CARDS ===== */
.elementor-widget-icon-box,
.feature-box {
    height: 100% !important;
}

.elementor-widget-icon-box .elementor-widget-container {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.elementor-icon-box-description {
    margin-top: auto !important;
}/* End custom CSS */