/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
:root {
    --theme-area_background: 24, 24, 24;
    --theme-area_background_light: 35, 35, 35;
    --theme-area_background_lighter: 42, 42, 42;
    --theme-area_background_veryLight: 55, 55, 55;
    --theme-brand_primary: 142, 0, 255;
    --theme-text_color: 255, 255, 255;
    --theme-main_nav_font: 255, 255, 255;
    --theme-main_nav_tab: 35, 35, 35;
    --theme-main_nav_tab_font: 255, 255, 255;
    --theme-page_background: 24, 24, 24;
    --theme-brand_gradient: linear-gradient(135deg, #8f00ff  0%, #8f00cc  100%);
    --theme-brand_gradient_webkit: -webkit-linear-gradient(135deg, #8f00ff  0%, #8f00cc 100%);
    --border--radius: 8px;
    --header--primary: 70px;
    --header--secondary: 60px;
    --primary-navigation--height: 60px;
    --secondary-navigation--height: 45px;
}
html, body {
    background-color: #111317 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #181818 !important;
}
                      body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            margin: 0;
            background-color: #181818;
        }

        .ipsLayout_container {
            max-width: 1650px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }

        .theme-header__hero {
            position: relative;
            background: url(https://api-internal-2.sellauth.com/storage/images/821872.webp) no-repeat;
            background-size: cover;
            background-position: 50% 50%;
            padding: 7em 0 9em 0;
            margin-bottom: -55px;
            
        }
        .theme-header__hero:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to top, rgb(var(--theme-page_background)), transparent);
        }
        .theme-header__hero > * {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            height: 100%;
        }
        .heroTitle--1 {
            display: flex;
            align-items: center;
            gap: 0.35em;
        }
        .heroTitle {
            color: #fff;
            font-size: clamp(30px, 4vw, 65px);
            z-index: 10;
            margin: 0;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: .25em;
        }
        .heroDesc {
            font-size: 20px;
            max-width: 620px;
            margin: unset;
            font-weight: 300;
            opacity: 0.75;
            z-index: 10;
            color: #fff;
        }
        .heroTitle > b {
            color: rgb(var(--theme-brand_primary));
        }
        .heroButtons {
            display: flex;
            align-items: center;
            gap: 2em;
            margin-top: 2em;
        }
        .heroButton-primary {
            background: var(--theme-brand_gradient);
            background-size: 200%;
            padding: 1.35em 2em;
            line-height: 1;
            border-radius: var(--border--radius);
            font-size: 16px;
            font-weight: 500;
            display: flex;
            z-index: 10;
            align-items: center;
            gap: 0.75em;
            transition: all 0.4s ease 0s;
            text-decoration: none;
            color: white;
        }
        .heroButton-primary:hover {
            background-position: 90%;
            color: #fff;
        }
        .heroButton-primary > i {
            font-size: 18px;
        }
        .heroButton-primary > i:first-of-type:after {
            opacity: 1;
        }
        .heroButton-primary > i:first-of-type:before {
            opacity: 0.4;
        }
        .heroButton-secondary {
            background: rgb(var(--theme-area_background));
            padding: 1.35em 2em;
            line-height: 1;
            border-radius: var(--border--radius);
            font-size: 16px;
            font-weight: 400;
            display: flex;
            z-index: 10;
            align-items: center;
            gap: 0.75em;
            border: 1px solid rgb(var(--theme-area_background_light));
            transition: all 0.4s ease 0s;
            text-decoration: none;
            color: white;
        }
        .heroButton-secondary:hover {
            background: rgb(var(--theme-area_background_light));
            color: #fff;
        }
        @media screen and (max-width: 979px) {
            .theme-header__secondary {
                display:none;
            }
            .theme-header__hero {
                padding: 5em 0 6em 0;
            }
            .theme-header__hero > * {
                justify-content: center;
                align-items: center;
                text-align: center;
            }
            .heroTitle >* {
                justify-content: center;
            }
            .heroButtons {
                flex-wrap: wrap;
            }
        }
        @media screen and (max-width: 800px) {
            .heroButtons {
                justify-content:center;
                gap: 1em;
                padding: 0 2em;
            }
            .heroButtons > * {
                width: 100%;
                justify-content: center;
            }
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 70vh;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        /* Header Styles */
        #theme-header {
            background: #111317;
        }

        .theme-header__primary {
            height: var(--header--primary);
            position: relative;
        }

        .theme-header__secondary {
            height: var(--header--secondary);
            border-top: 1px solid rgb(var(--theme-area_background_light));
            
            position: relative;
        }

        .theme-headerRow > * {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .headerRow_left {
            display: flex;
            align-items: center;
            gap: 2em;
            height: 100%;
        }

        #elLogo img {
            width: 40px;
            height: 40px;
        }
        /* User Navigation */
        #elUserNav {
            display: flex;
            align-items: center;
            gap: 15px;
            list-style: none;
        }

        #elUserNav li {
            display: inline-block;
        }

        #elUserNav a {
            color: rgb(var(--theme-text_color));
            text-decoration: none;
            padding: 10px 15px;
            border-radius: var(--border--radius);
            transition: background-color 0.3s;
        }

        #elUserNav a:hover {
            background: rgb(var(--theme-area_background_lighter));
        }

.ipsButton {
    background: radial-gradient(42.59% 43.59% at 50% 111.01%, rgba(var(--theme-brand_primary), 0.50) 0%, rgba(var(--theme-brand_primary), 0) 100%), 
                linear-gradient(180deg, rgba(var(--theme-brand_primary), 0.20) 0%, rgba(var(--theme-brand_primary), 0.10) 100%);
    color: rgb(var(--theme-main_nav_font));
    border: 1px solid transparent;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ipsButton:hover {
    background: radial-gradient(42.59% 43.59% at 50% 111.01%, rgba(var(--theme-brand_primary), 0.60) 0%, rgba(var(--theme-brand_primary), 0) 100%), 
                linear-gradient(180deg, rgba(var(--theme-brand_primary), 0.30) 0%, rgba(var(--theme-brand_primary), 0.20) 100%);
    color: rgb(var(--theme-main_nav_font));
    border: 1px solid transparent;
}
        /* Primary Navigation */
        .ipsNavBar_primary {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0;
        }

        .ipsNavBar_primary > ul {
            margin: 0;
            padding: 0;
            list-style: none;
            min-width: 0;
            flex: 1;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .ipsNavBar_primary > ul > li {
            display: flex;
            align-items: center;
            height: 100%;
            margin-bottom: 0;
        }

        .ipsNavBar_primary > ul > li > a {
            line-height: 1;
            border-radius: var(--border--radius);
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 400;
            color: rgba(var(--theme-main_nav_font), 0.7);
            font-size: 16px;
            padding: 0.5em 1em;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
        }

        .ipsNavBar_primary > ul > li[data-active] > a,
        .ipsNavBar_primary > ul > li.ipsNavBar_active > a {
            background: radial-gradient(42.59% 43.59% at 50% 111.01%, rgba(var(--theme-brand_primary), 0.50) 0, rgba(var(--theme-brand_primary), 0) 100%), linear-gradient(180deg, rgba(var(--theme-brand_primary), 0.20) 0, rgba(var(--theme-brand_primary), 0.10) 100%);
            color: rgb(var(--theme-main_nav_font));
        }

        .ipsNavBar_primary > ul > li[data-active] > a:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            border: 1px solid transparent;
            background: linear-gradient(-130deg, rgba(var(--theme-brand_primary), 0.35), transparent, transparent, transparent, rgba(var(--theme-brand_primary), 0.35));
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            background-origin: border-box;
            z-index: -1;
        }

        .ipsNavBar_primary > ul > li > a:after {
            content: "";
            background: var(--theme-brand_gradient);
            background-size: 200%;
            width: 0px;
            height: 2px;
            border-radius: 100vw;
            position: absolute;
            bottom: 0px;
            opacity: 0;
            outline: 2px solid rgb(var(--theme-area_background));
            transition: all 0.5s ease 0s;
        }

        .ipsNavBar_primary > ul > li[data-active] > a:after,
        .ipsNavBar_primary > ul > li.ipsNavBar_active > a:after,
        .ipsNavBar_primary > ul > li:not([data-active]) > a:hover:after {
            width: 35px;
            opacity: 1;
            transition: all 0.5s ease 0s;
        }

        .ipsNavBar_primary > ul > li > a:hover {
            color: rgb(var(--theme-main_nav_font));
        }

        .ipsNavBar_primary > ul > li > a ._icon {
            margin-right: 0.5em;
            font-size: 16px;
            line-height: 1;
        }

        .ipsNavBar_primary > ul > li > a i {
            line-height: 1;
            color: rgb(var(--theme-text_color));
        }

        .ipsNavBar_primary > ul > li[data-active] > a ._icon > i,
        .ipsNavBar_primary > ul > li.ipsNavBar_active > a ._icon > i,
        .ipsNavBar_primary > ul > li:not([data-active]) > a:hover ._icon > i {
            color: rgb(var(--theme-brand_primary));
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            background-image: var(--theme-brand_gradient_webkit);
            background-image: var(--theme-brand_gradient);
            background-size: 200% auto;
        }

        /* Custom Links */
        .elLinks_custom {
            display: flex;
            align-items: center;
            height: 50px;
        }

        .cNavBar_custom {
            position: relative;
            margin: 0;
            list-style: none;
            display: flex;
            align-items: center;
            height: 100%;
            background: rgb(var(--theme-area_background_lighter));
            border-radius: var(--border--radius);
            padding: 0 1.5em;
            z-index: 1;
        }

        .cNavBar_custom:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            border: 1px solid transparent;
            background: linear-gradient(-140deg, rgb(var(--theme-area_background_veryLight)), transparent, transparent, transparent, rgb(var(--theme-area_background_veryLight)));
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            background-origin: border-box;
            z-index: -1;
        }

        .cNavBar_custom > li > a {
            font-size: 0.75rem;
            line-height: 1;
            text-transform: uppercase;
            font-weight: 600;
            gap: 0.5em;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: color 0.3s;
        }

        .cNavBar_custom > li:not(:last-child) {
            border-right: 1px solid rgb(var(--theme-area_background_veryLight));
            padding-right: 1.5em;
            margin-right: 1.5em;
        }

        .cNavBar_custom > li.item-discord > a {
            color: #5865f2;
        }

        .cNavBar_custom > li.item-keys > a {
            color: #77ff9d;
        }

        .cNavBar_custom > li > a:hover {
            color: #fff;
        }

        .cNavBar_custom > li > a > i {
            font-size: 1.5em;
        }

        /* Mobile Navigation */
        #elMobileNav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgb(var(--theme-area_background));
            border-top: 1px solid rgb(var(--theme-area_background_light));
            padding: 10px 0;
            z-index: 9999;
        }

        #elMobileNav ul {
            display: flex;
            justify-content: space-around;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #elMobileNav li a {
            width: 44px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            font-size: 22px;
            position: relative;
            display: block;
            color: rgba(var(--theme-text_color), 0.7);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        #elMobileNav li a:hover {
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .ipsResponsive_showDesktop {
                display: none !important;
            }
            
            #elMobileNav {
                display: block;
            }

            .theme-header__secondary {
                display: none;
            }

            .headerRow_left {
                gap: 1em;
            }

            #elLogo img {
                width: 30px;
                height: 30px;
            }

            .cOnlineUsers {
                order: 2;
            }
        }

        /* Login Form Styles */
        .ipsMenu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgb(var(--theme-area_background_lighter));
            border-radius: var(--border--radius);
            padding: 20px;
            min-width: 300px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 10000;
        }

        .ipsHide {
            display: none;
        }

        .ipsPad {
            padding: 20px;
        }

        .ipsType_sectionHead {
            font-size: 18px;
            margin-bottom: 15px;
            color: rgb(var(--theme-text_color));
        }

        .ipsFieldRow {
            margin-bottom: 15px;
        }

        .ipsFieldRow input {
            width: 100%;
            padding: 12px;
            border: 1px solid rgb(var(--theme-area_background_light));
            border-radius: var(--border--radius);
            background: rgb(var(--theme-area_background));
            color: rgb(var(--theme-text_color));
        }

        .ipsFieldRow_checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ipsFieldRow_label {
            color: rgb(var(--theme-text_color));
        }

        .ipsFieldRow_desc {
            font-size: 12px;
            color: rgba(var(--theme-text_color), 0.6);
        }
               .section-header {
            position: relative;
            text-align: center;
            padding: 40px 0;
        }
        
        .section-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #8f00ff ;
            border-radius: 20px;
            color: #8f00ff ;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .section-title-container {
            position: relative;
            margin: 20px 0;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: bold;
            margin: 0;
            position: relative;
            display: inline-block;
        }
        
        /* First word with purple outline only */
        .section-title .first-word {
            -webkit-text-stroke: 2px #8f00ff ;
            color: transparent;
            margin-right: 0.3em;
        }
        
        /* Rest of the words in white */
        .section-title .rest-words {
            color: white;
        }
        
        .title-underline {
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 6px;
        }
        
        .section-subtitle {
            color: #9ca3af;
            font-size: 1.2rem;
            margin: 20px 0 0 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        
        .slide-up {
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
  .section-title {
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 3.5rem;
    font-weight: bold;
  }
  
  .section-title h2 .first-word {
    -webkit-text-stroke: 2px #8f00ff ;
    color: transparent;
    display: inline;
  }
  
  .section-title h2 .rest-words {
    color: white;
    display: inline;
  }
  .section-title,
.section-subtitle {
    text-align: center;  
    width: 100%;        
    display: flex;       
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
}


.section-title h2 {
    margin-bottom: 0px;
}
.superbar .btn-primary {
  display:inline-flex; align-items:center; gap:.55rem;
  border-radius: 999px; padding:.55rem .95rem; color:#fff;
  border:1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.25);
  font-weight:700;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
// PRODUCT PAGE
body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.container-fluid {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 992px) {
  
  .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  

  .product-main-container {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }
  
  .tab-content {
    background: transparent !important;
    border: none !important;
    padding: 10px !important;
  }
  
  .variant-option {
    padding: 12px !important;
  }
  
  .buy-buttons .btn {
    padding: 12px 16px !important;
  }
}
h5 {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
}