/* Copyright © PriyxStudio, Priyx (Priyam). All Rights Reserved. */
/* 
  ELITE DARK GLASSY WHMCS THEME 
  Design: Glassmorphism, Floating Square Navbar, Animations
*/

:root {
    --bg-black: #02040a;
    --bg-darker: #050811;
    --bg-dark: #0f172a;
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-white-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    --primary: #6366f1;
    --secondary: #a855f7;
    --accent: #ff2d85;
    --text-pure: #ffffff;
    --text-dim: #94a3b8;
    --grad: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    background: var(--bg-black) !important;
    color: var(--text-pure) !important;
    font-family: 'Inter', sans-serif;
    margin: 0; padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#main-body {
    flex: 1 0 auto;
    width: 100%;
}

/* Scroll thing (Hero scroll effect) - Now a slider with moving BG */
.hero-scroll-container {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-black);
    animation: slowZoom 20s infinite alternate linear;
    padding: 0 !important;
    isolation: isolate;
}

.hero-scroll-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(5, 8, 17, 0.4) 0%, rgba(2, 4, 10, 0.9) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-slider, .slider-indicators, .hero-scroll-container > div {
    z-index: 2;
    position: relative;
}

.hero-slider {
    display: flex;
    width: 300%;
    height: 100%;
    min-height: 100%;
    align-items: stretch;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-slide {
    width: 33.333%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    text-align: left;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    background: var(--primary);
    width: 60px;
}

/* Site Loader */
#site-loader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.18), transparent 26%),
        radial-gradient(circle at 80% 28%, rgba(168, 85, 247, 0.16), transparent 24%),
        linear-gradient(145deg, rgba(3, 5, 13, 0.98) 0%, rgba(3, 5, 13, 0.95) 46%, rgba(5, 8, 17, 0.98) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11000;
    overflow: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#site-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.18;
    mask-image: radial-gradient(circle at center, #000 42%, transparent 90%);
}

.loader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.loader-particles span {
    position: absolute;
    left: var(--particle-x);
    top: var(--particle-y);
    width: var(--particle-size);
    height: var(--particle-size);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(99,102,241,0.45) 42%, rgba(99,102,241,0) 72%);
    box-shadow: 0 0 18px rgba(99,102,241,0.45);
    opacity: 0;
    animation: loaderParticleFloat var(--particle-duration) ease-in-out infinite;
    animation-delay: var(--particle-delay);
}

.loader-core {
    position: relative;
    width: min(86vw, 320px);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-core-glow {
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(99, 102, 241, 0.18) 45%, transparent 76%);
    filter: blur(12px);
    animation: loaderCorePulse 2.8s ease-in-out infinite;
}

.loader-ring {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 0 24px rgba(255,255,255,0.03);
}

.loader-ring::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    border-top-color: rgba(255,255,255,0.72);
    border-right-color: rgba(99,102,241,0.62);
}

.loader-ring-one {
    animation: loaderOrbit 3.8s linear infinite;
}

.loader-ring-two {
    inset: 20%;
    animation: loaderOrbitReverse 5.4s linear infinite;
}

.loader-ring-three {
    inset: 28%;
    animation: loaderOrbit 6.5s linear infinite;
}

.loader-bar {
    position: relative;
    z-index: 2;
    width: min(72vw, 220px);
    height: 4px;
    margin-top: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 46%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.95) 18%, rgba(99,102,241,1) 52%, rgba(168,85,247,0.95) 100%);
    box-shadow: 0 0 28px rgba(99,102,241,0.52);
    animation: loaderSweep 1.45s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-status {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    animation: loaderStatusPulse 1.9s ease-in-out infinite;
}

.loader-bar,
.loader-status {
    display: none !important;
}

@keyframes loaderSweep {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(260%); }
}

@keyframes loaderOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loaderOrbitReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes loaderCorePulse {
    0%, 100% { transform: scale(0.92); opacity: 0.7; }
    50% { transform: scale(1.04); opacity: 1; }
}

@keyframes loaderParticleFloat {
    0% {
        transform: translate3d(0, 14px, 0) scale(0.75);
        opacity: 0;
    }
    18% {
        opacity: 0.95;
    }
    100% {
        transform: translate3d(var(--particle-drift), -56px, 0) scale(1.1);
        opacity: 0;
    }
}

@keyframes loaderStatusPulse {
    0%, 100% { opacity: 0.38; letter-spacing: 2.8px; }
    50% { opacity: 0.88; letter-spacing: 3.4px; }
}

.loader-fade {
    opacity: 0;
    visibility: hidden;
}

/* Sections */
section { padding: 120px 0; }

.glass-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 0; /* SQUARE */
    padding: 40px;
    transition: 0.3s;
}

.glass-card:hover {
    background: var(--glass-white-hover);
    border-color: rgba(255,255,255,0.15);
}

.hero-title {
    font-size: 5rem; font-weight: 900; line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #444);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem; color: var(--text-dim);
    max-width: 700px; margin-bottom: 40px;
}

/* Solution Pills Marquee */
.solutions-marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.solutions-grid {
    display: flex;
    white-space: nowrap;
    gap: 15px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.solution-pill {
    background: #0f111a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
    transition: 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.solution-pill i { 
    color: #fff; 
    background: rgba(255,255,255,0.05);
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 12px; 
}

.solution-pill:hover { 
    background: rgba(255,255,255,0.08); 
    border-color: var(--accent);
    transform: translateY(-2px); 
}

/* 6-Column Feature Cards */
.feature-cards-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 80px 0;
}

.feature-mini-card {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: left;
    transition: 0.3s;
}

.feature-mini-card i { 
    font-size: 24px; 
    color: #fff; 
    margin-bottom: 25px; 
    display: block; 
}

.feature-mini-card h4 { 
    font-size: 15px; 
    font-weight: 700; 
    margin-bottom: 12px; 
    color: #fff; 
}

.feature-mini-card p { 
    font-size: 12.5px; 
    color: #94a3b8; 
    line-height: 1.5; 
    margin: 0; 
}

/* Prevent third-party/global rules from turning boxed feature copy dark */
.feature-mini-card i,
.feature-mini-card h4 {
    color: #ffffff !important;
}

.feature-mini-card p {
    color: #94a3b8 !important;
}

.feature-mini-card:hover { 
    background: #161b22;
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px); 
}

@media (max-width: 1200px) { .feature-cards-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .feature-cards-row { grid-template-columns: repeat(1, 1fr); } }

/* Fix WHMCS Default Styles to Dark & Glassy */
.list-group-item, .card, .panel {
    background: var(--glass-white) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border) !important;
    color: var(--text-pure) !important;
    border-radius: 12px !important;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-2px);
}

.btn-default, .btn-secondary {
    background: var(--glass-white) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.btn-default:hover, .btn-secondary:hover {
    background: var(--glass-white-hover) !important;
    border-color: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px);
}

input, select, textarea {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid var(--glass-border) !important;
    color: #fff !important;
}

/* Pricing & Packages Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.price-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 30px;
    color: var(--text-dim);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.price-tab.active {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.pricing-grid {
    display: block; /* Remove grid to let Bootstrap Row/Col work inside category-set */
    width: 100%;
    margin: 50px 0;
}

.category-set {
    width: 100%;
}

.pricing-card {
    background: #0d0d0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 26px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 590px;
    border-radius: 12px;
    isolation: isolate;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card.has-product-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--product-card-bg);
    background-position: center;
    background-size: cover;
    opacity: 0.48;
    filter: blur(16px) saturate(1.08);
    transform: scale(1.08);
    z-index: 0;
}

.pricing-card.has-product-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(8, 12, 24, 0.24), rgba(8, 12, 24, 0.7));
    z-index: 0;
}

.pricing-card.featured {
    border: 2px solid #5d5dff;
    box-shadow: 0 0 20px rgba(93, 93, 255, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.card-icon i { font-size: 24px; color: var(--text-dim); }
.pricing-card.featured .card-icon i { color: var(--primary); }

.homepage-product-media {
    width: 100%;
    height: 148px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.homepage-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pricing-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.pricing-card .desc { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 30px; line-height: 1.6; }

.price-box { margin-bottom: 30px; }
.price-box .currency { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-right: 2px; }
.price-box .amount { font-size: 2.5rem; font-weight: 900; }
.price-box .period { color: var(--text-dim); font-size: 0.9rem; }

.pricing-card .btn-cta {
    background: #fff;
    color: #000 !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    flex-grow: 1;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.pricing-card .features-list li i { 
    font-size: 12px;
    color: #4b5563; 
}

.top-features-label {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin: 10px 0 20px;
    letter-spacing: 0.5px;
}

.price-box .amount { font-size: 2rem; font-weight: 800; color: #fff; }
.price-box .start-from { display: block; color: var(--text-dim); font-size: 0.8rem; margin-bottom: 5px; }

.card-icon {
    width: 65px;
    height: 65px;
    background: #1a1a1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Hosting Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.advantage-card {
    background: #0d0d0e;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 35px 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.advantage-card .num {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: block;
}

.advantage-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

/* Keep Hosting Advantages copy/icons bright even if external styles override base tags */
.apex-hosting-advantages .advantage-card .num,
.apex-hosting-advantages .advantage-card p {
    color: #94a3b8 !important;
}

.apex-hosting-advantages .advantage-card h4 {
    color: #ffffff !important;
}

.apex-hosting-advantages .advantage-icon i {
    color: #ffffff !important;
}

/* Launch Faster Section Redesign */
.launch-faster-section {
    padding: 100px 0;
}

.launch-card-main {
    background: #0d0d0e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.launch-card-main::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 45, 133, 0.3) 0%, rgba(93, 93, 255, 0.3) 100%);
    z-index: -1;
    border-radius: 20px;
}

.launch-card-img {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 350px;
    height: 350px;
    background: url('img/wave-purple.png') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
    filter: blur(20px);
}

.launch-card-main h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 450px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-item:last-child { border: none; }

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 5px 0 0;
}

@media (max-width: 1200px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .advantages-grid { grid-template-columns: 1fr; }
    .launch-card-main { padding: 40px 30px; }
    .launch-card-main h2 { font-size: 2rem; }
}

/* Global Performance Section */
.global-performance-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.performance-locations {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.location-ping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.location-ping img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.location-ping .ms {
    color: #94a3b8;
    font-weight: 500;
}

.location-ping .dot {
    width: 6px;
    height: 6px;
    background: #5d5dff;
    border-radius: 50%;
    box-shadow: 0 0 10px #5d5dff;
    animation: pulse-ping 2s infinite;
}

@keyframes pulse-ping {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
    filter: brightness(0.9) contrast(1.1);
}

.map-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #5d5dff;
    border-radius: 50%;
    box-shadow: 0 0 15px #5d5dff;
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border: 1.5px solid rgba(93, 93, 255, 0.5);
    border-radius: 50%;
    animation: marker-ripple 2s infinite;
}

@keyframes marker-ripple {
    0% { width: 8px; height: 8px; opacity: 1; }
    100% { width: 35px; height: 35px; opacity: 0; }
}

/* Marker Positions - Precinct Match with Screenshot */
.marker-ny { top: 38%; left: 24%; }
.marker-london { top: 31%; left: 46%; }
.marker-frankfurt { top: 33%; left: 49%; }
.marker-singapore { top: 64%; left: 76%; }
.marker-tokyo { top: 41%; left: 86%; }

/* Login & Register Pages Redesign */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(93, 93, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.auth-logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fff;
    display: block;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.auth-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.auth-container p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* --- Auth Pages Overhaul (Apex Style) --- */

.auth-page {
    min-height: 100vh;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px 120px;
    font-family: 'Inter', sans-serif;
    z-index: 5;
}

/* Animated Mesh Background - Fixed to Viewport */
.auth-bg-layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: #000;
    pointer-events: none;
}

.auth-bg-layers::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(91, 140, 255, 0.15) 0%, 
        rgba(124, 58, 237, 0.1) 25%, 
        rgba(0, 0, 0, 0) 50%);
    animation: authMesh 20s infinite linear;
}

.auth-bg-layers::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 70%, 
        rgba(236, 72, 153, 0.08) 0%, 
        rgba(0, 0, 0, 0) 40%);
    animation: authMesh 15s infinite linear reverse;
}

@keyframes authMesh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.auth-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-decoration: none;
    display: block;
    margin-bottom: 40px;
    transition: 0.3s;
}

.auth-page h2 {
    font-size: 2rem;
    font-weight: 850;
    color: #fff;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: -1px;
}

.auth-page p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    margin-bottom: 40px;
}

.auth-form-wrapper {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 480px; /* Make it bit small/focused */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.auth-form-wrapper .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.auth-form-wrapper label {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}

.auth-form-wrapper .form-control,
.auth-form-wrapper select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #fff !important;
    padding: 15px 18px !important;
    height: auto !important;
    font-size: 14px !important;
    appearance: none;
}

.auth-form-wrapper select option {
    background: #111 !important;
    color: #fff !important;
}

body.full-screen .primary-bg-color,
body.full-screen #main-body,
body.full-screen .container,
body.full-screen .primary-content {
    background: transparent !important;
    border: none !important;
}

.auth-form-wrapper .form-control:focus,
.auth-form-wrapper select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(91, 140, 255, 0.4) !important;
    box-shadow: 0 0 20px rgba(91, 140, 255, 0.1) !important;
}

/* Fix for Phone Number Dropdown (intl-tel-input) */
.iti { width: 100%; }
.iti__country-list {
    background-color: #111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    z-index: 1000 !important;
}
.iti__country:hover {
    background-color: rgba(91, 140, 255, 0.2) !important;
}
.iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px 0 0 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.iti__country-name, .iti__dial-code {
    color: #fff !important;
}
.iti__flag-container {
    z-index: 5 !important;
}

/* Force dark colors on all auth-form-wrapper selects and inputs */
.auth-form-wrapper select, 
.auth-form-wrapper input,
.auth-form-wrapper .form-control {
    color: #fff !important;
}

/* Fix for WHMCS default state/country dropdowns */
.auth-form-wrapper .form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 12px !important;
}

.auth-footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 35px;
    font-size: 12px;
}

.auth-footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.auth-btn-submit {
    background: #fff !important;
    color: #000 !important;
    font-weight: 800;
    width: 100%;
    padding: 18px !important;
    border-radius: 12px !important;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
}

.auth-btn-submit:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.auth-bottom-text {
    margin-top: 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.auth-bottom-text a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.auth-site-links {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 20;
}

.auth-site-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: 0.3s;
}

.auth-site-links a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Fix for WHMCS input icons in auth page */
.auth-card .input-group-text {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.auth-card .input-group-prepend {
    margin-right: -1px;
}

/* =============================================
   NAVBAR â€“ complete rewrite (fnav- prefix)
   ============================================= */

/* --- shell (transparent â€“ no box) --- */
.floating-navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(96vw, 1400px);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    min-height: 60px;
    background: transparent;
    border: none;
    border-radius: 0;
    z-index: 10000;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: none;
}
.floating-navbar.scrolled {
    top: 6px;
}

/* --- brand (floating freely) --- */
.fnav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(1.3rem,2vw,1.75rem);
    font-weight: 900;
    letter-spacing: -.03em;
    white-space: nowrap;
    flex-shrink: 0;
}
.fnav-brand:hover { color:#fff; text-decoration:none; }
.fnav-brand-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(56,189,248,0.15);
    border: 1px solid rgba(56,189,248,0.28);
    display: flex; align-items:center; justify-content:center;
    color: #7dd3fc; font-size: 14px;
}

/* --- center pill (the only translucent box) --- */
.fnav-pill {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: rgba(8,12,22,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    PADDING: 6px 10px;
    OVERFLOW: visible;
    BOX-SHADOW: 0 12px 36px rgba(0,0,0,0.4);
}
/* when user toggles 'Hide Navbar Glass Box' in Apex */
.fnav-pill-transparent {
    background: transparent !important;
    border-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

/* --- nav link (pill items) --- */
.fnav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s ease;
    line-height: 1;
    margin: 0;
}
.fnav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    text-decoration: none;
}

/* --- dropdown container --- */
.fnav-dd {
    position: relative;
}
.fnav-dd-arrow {
    font-size: 9px;
    opacity: .6;
    transition: transform .2s;
}
.fnav-dd:hover .fnav-dd-arrow { transform: rotate(180deg); }

/* --- dropdown panel --- */
.fnav-dd-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    padding: 8px;
    background: var(--bg-darker);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 10001;
    display: grid;
    gap: 3px;
}
/* bridge so mouse can travel across the gap */
.fnav-dd-panel::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
}
/* wide variant for many children */
.fnav-dd-wide { min-width: 420px; grid-template-columns: 1fr 1fr; }
/* right-aligned (profile) */
.fnav-dd-right { left: auto; right: 0; transform: translateY(8px); }

/* show on hover */
.fnav-dd:hover > .fnav-dd-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.fnav-dd:hover > .fnav-dd-right {
    transform: translateY(0);
}
/* show on click (.open toggled via JS for profile) */
.fnav-dd.open > .fnav-dd-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.fnav-dd.open > .fnav-dd-right {
    transform: translateY(0);
}

/* --- dropdown links --- */
.fnav-dd-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border-radius: 9px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s ease;
}
.fnav-dd-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}
.fnav-dd-link i { width: 18px; text-align: center; color: #5b8cff; flex-shrink:0; }
.fnav-dd-empty { padding: 10px 14px; color: rgba(148,163,184,0.7); font-size: 12px; }
.fnav-dd-danger { color: #ffb6c8; }
.fnav-dd-danger i { color: #ff6b95; }
.fnav-dd-danger:hover { background: rgba(255,45,133,0.1); color: #fff; }
.fnav-dd-cta {
    background: rgba(99,102,241,0.12);
    color: #a5b4fc !important;
    font-weight: 600;
}
.fnav-dd-cta:hover { background: rgba(99,102,241,0.22); color: #fff !important; }

/* --- right utility zone --- */
.fnav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* cart */
.fnav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 42px; height: 42px;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s;
}
.fnav-cart:hover {
    color: #fff; text-decoration: none;
    background: rgba(99,102,241,0.14);
    border-color: rgba(99,102,241,0.3);
}
.fnav-cart-badge {
    position: absolute;
    top: -3px; right: -3px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; font-size: 10px; font-weight: 800;
    box-shadow: 0 4px 10px rgba(99,102,241,0.35);
}

/* CTA button (e.g. Contact) */
.fnav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: #fff;
    color: #000 !important;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-decoration: none;
    transition: all .3s;
    border: none;
    box-shadow: 0 6px 20px rgba(255,255,255,0.10);
}
.fnav-cta:hover {
    background: #eee; color: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255,255,255,0.16);
    text-decoration: none;
}

/* alert button */
.fnav-alert {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff6b35, #e5243b);
    color: #fff !important;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(229,36,59,0.25);
}
.fnav-alert:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    text-decoration: none; color:#fff !important;
}

/* --- profile button --- */
.fnav-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: linear-gradient(135deg, rgba(255,45,133,0.18), rgba(168,85,247,0.18));
    border: 1px solid rgba(255,45,133,0.25);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    min-height: 42px;
}
.fnav-profile-btn:hover {
    background: linear-gradient(135deg, rgba(255,45,133,0.28), rgba(168,85,247,0.28));
    border-color: rgba(255,45,133,0.4);
}
.fnav-avatar {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #ff2d85, #a855f7);
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    font-size: 12px; color:#fff; flex-shrink:0;
}
.fnav-profile-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* --- responsive --- */
@media (max-width: 1280px) {
    .fnav-pill { gap: 0; padding: 4px 8px; }
    .fnav-link { padding: 8px 10px; font-size: 11px; }
    .fnav-cta, .fnav-alert { padding: 8px 14px; font-size: 11px; }
    .fnav-profile-name { max-width: 60px; font-size: 11px; }
}
@media (max-width: 1100px) {
    .floating-navbar {
        justify-content: space-between;
    }

    .fnav-pill { display: none; }
    .fnav-brand {
        flex: 0 1 auto;
        max-width: 42vw;
    }
    .fnav-right {
        margin-left: auto;
    }
    .fnav-toggle { display: flex !important; }
}

/* --- Mobile Drawer --- */
.fnav-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 320px);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 12, 22, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10002;
    padding: 86px 28px calc(28px + env(safe-area-inset-bottom));
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.fnav-mobile-drawer.open {
    right: 0;
}

.fnav-mobile-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fnav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10003;
}

.fnav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.fnav-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

body.noscroll {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 480px) {
    .floating-navbar {
        top: 10px;
        width: calc(100vw - 20px);
        min-height: 48px;
        padding: 8px 2px;
        gap: 14px;
    }

    .fnav-brand {
        font-size: 15px;
        min-width: 0;
        max-width: 34vw;
    }

    .fnav-brand-text {
        display: block;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fnav-right {
        flex: 0 0 auto;
        gap: 7px;
        margin-left: auto;
    }

    .fnav-cart,
    .fnav-toggle {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 15px;
    }

    .fnav-cta {
        padding: 8px 12px;
        font-size: 11px;
    }

    .fnav-mobile-drawer {
        width: 100vw;
        right: -100vw;
        padding: 78px 24px calc(24px + env(safe-area-inset-bottom));
        border-left: 0;
    }

    .fnav-mobile-link {
        font-size: 15px;
        padding: 12px 0;
    }
}

/* Specific button styles for the white primary look */
.btn-cta {
    background: #fff;
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Game Grid for Universal Template */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(91, 140, 255, 0.3);
    transform: translateY(-5px);
}

.game-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.game-card .price {
    font-size: 24px;
    font-weight: 800;
    color: #5b8cff;
    margin-bottom: 16px;
}

.game-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.game-card .features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Screenshot-Perfect Game Design (EUGAMEHOST style) --- */

.game-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 180px 0 100px;
    position: relative;
    z-index: 10;
}

@media (max-width: 992px) {
    .game-hero-container {
        grid-template-columns: 1fr;
        padding-top: 140px;
        text-align: center;
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 span.blue-glow {
    color: #5b8cff;
    text-shadow: 0 0 30px rgba(91, 140, 255, 0.4);
}

.hero-content p.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-pill {
    background: rgba(91, 140, 255, 0.1);
    border: 1px solid rgba(91, 140, 255, 0.2);
    color: #5b8cff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-pill i {
    font-size: 14px;
}

/* Latency Test Box */
.latency-box {
    background: rgba(10, 13, 22, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.latency-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(91, 140, 255, 0.3), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.latency-box h3 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
    color: #fff;
}

.latency-box p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.latency-indicator {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.latency-flag {
    width: 48px;
    height: 32px;
    border-radius: 4px;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
}

.latency-ms {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 15px 0;
}

.btn-latency {
    width: 100%;
    background: #5b8cff;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-latency:hover {
    background: #4a7be6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 140, 255, 0.4);
}

/* --- Apex Premium Product Box Styles --- */

.v-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.v-plan-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left; /* Apex style uses left-alignment */
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.v-plan-card:hover {
    border-color: rgba(91, 140, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.v-plan-card.is-popular {
    border: 1.5px solid #5b8cff;
    box-shadow: 0 0 20px rgba(91, 140, 255, 0.1);
}

.game-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.game-icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.v-plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.v-plan-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    line-height: 1.5;
}

.v-pricing-offer {
    margin-bottom: 30px;
}

.v-price-label {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.v-price-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.v-price-main span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.btn-choose-plan {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 15px 25px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.btn-choose-plan:hover {
    background: #ececec;
    transform: scale(1.02);
}

.v-features-header {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.v-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v-plan-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-plan-features li i {
    color: #5b8cff;
    font-size: 10px;
}

/* FAQ Accordion */
.faq-item {
    transition: all 0.3s ease;
    overflow: hidden;
    height: auto;
    display: block; /* Change from flex to support content flow */
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.6;
}

.faq-item.active {
    background: rgba(255,255,255,0.03);
    border-color: rgba(91, 140, 255, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: #5b8cff;
}

.faq-item .fa-chevron-down {
    transition: transform 0.3s ease;
}

.v-plan-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(91, 140, 255, 0.05), transparent);
    pointer-events: none;
}

.v-plan-card:hover {
    border-color: #5b8cff;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(91, 140, 255, 0.1);
}

.v-plan-card.is-popular {
    border-color: #5b8cff;
    box-shadow: 0 0 30px rgba(91, 140, 255, 0.15);
}

.v-plan-name {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 5px;
}

.v-plan-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-bottom: 25px;
}

.v-plan-specs {
    width: 100%;
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.v-spec-item {
    font-size: 13px;
    font-weight: 800;
    color: #5b8cff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v-spec-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.v-spec-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #5b8cff;
    box-shadow: 0 0 10px #5b8cff;
}

.v-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
    width: 100%;
}

.v-plan-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-plan-features li i {
    color: #5b8cff;
    font-size: 10px;
}

.v-plan-price {
    margin-top: auto;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v-price-val {
    font-size: 2.2rem;
    font-weight: 950;
    color: #fff;
    letter-spacing: -1px;
}

.v-price-val span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

/* Built for Value Table */
.value-container {
    background: rgba(10, 13, 22, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 70px 50px;
    margin-top: 100px;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(91, 140, 255, 0.08);
    border: 1px solid rgba(91, 140, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #5b8cff;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.value-text p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Phase 3 Advanced Sections (Screenshot-Perfect) --- */

/* Platform Grid */
.platform-grid-section {
    padding: 100px 0;
}

/* Platform Grid */
.platform-grid-section {
    padding: 120px 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.platform-card:hover {
    background: rgba(91, 140, 255, 0.08);
    border-color: rgba(91, 140, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(91, 140, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.platform-card .icon-box i {
    color: #5b8cff;
    font-size: 20px;
}

.platform-card span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* --- Apex Store & Cart Redesign --- */

#order-standard_cart {
    padding: 60px 0 100px;
    background: transparent !important;
}

#order-standard_cart .cart-sidebar {
    width: 280px;
    padding-right: 30px;
}

#order-standard_cart .cart-body {
    flex: 1;
}

#order-standard_cart .header-lined h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

#order-standard_cart .header-lined p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    margin-bottom: 40px;
}

/* Product Grid Styling */
.store-page .products .product {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.store-page .products .product:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.store-page .products .product header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.store-page .products .product header span:first-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.store-page .products .product .product-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    flex-grow: 1;
}

.store-page .products .product .product-desc ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.store-page .products .product .product-desc ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.store-page .products .product .product-desc ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #007bff;
    margin-right: 12px;
    font-size: 12px;
}

.store-page .products .product footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-page .products .product .product-pricing .price {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}
/* Sidebar Styling */
#order-standard_cart .card-sidebar {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

#order-standard_cart .card-sidebar .card-header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 20px !important;
}

#order-standard_cart .card-sidebar .panel-title {
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #fff !important;
    margin: 0 !important;
}

#order-standard_cart .card-sidebar .list-group-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    transition: 0.3s;
}

#order-standard_cart .card-sidebar .list-group-item:hover,
#order-standard_cart .card-sidebar .list-group-item.active {
    background: rgba(124, 58, 237, 0.1) !important;
    color: #fff !important;
}

/* Product Cards */
#order-standard_cart .product {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#order-standard_cart .product:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.3) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

#order-standard_cart .product header {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0 0 20px 0 !important;
    margin-bottom: 20px !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

#order-standard_cart .product-desc {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    flex-grow: 1;
}

#order-standard_cart .product-desc ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
}

#order-standard_cart .product-desc li {
    padding: 6px 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

#order-standard_cart .product-desc li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #10b981;
    font-size: 12px;
}

#order-standard_cart .product-pricing {
    margin: 0 !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    font-size: 14px !important;
    text-align: center !important;
}

#order-standard_cart .product-pricing .price {
    font-size: 32px !important;
    font-weight: 900 !important;
    display: block;
    margin: 5px 0;
}

#order-standard_cart .btn-order-now {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 15px 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    width: 100% !important;
    transition: 0.3s !important;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2) !important;
}

#order-standard_cart .btn-order-now:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4) !important;
}

/* --- WiseHosting Style Overhaul --- */

/* Horizontal Step Indicator */
.cart-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    padding: 20px 0;
}

.cart-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.cart-step {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.cart-step .step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cart-step.active {
    color: #fff;
}

.cart-step.active .step-node {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.cart-step.completed {
    color: rgba(255, 255, 255, 0.6);
}

.cart-step.completed .step-node {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Config Section Blocks */
.config-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.config-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.config-section-title i {
    color: #7c3aed;
}

/* Summary Sidebar */
.summary-sidebar-apex {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.summary-sidebar-apex .summary-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.summary-sidebar-apex .product-summary-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hide default sidebars on non-store pages */
.cart-body-wide {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Visibility Logic */
#order-standard_cart .cart-sidebar {
    display: none;
}
#order-standard_cart.store-page .cart-sidebar {
    display: block;
}
#order-standard_cart.no-sidebar .cart-body {
    width: 100%;
}
#order-standard_cart.store-page .cart-body {
    width: auto;
}

.cp-preview-container {
    padding: 100px 0;
    text-align: center;
}

.cp-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.cp-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cp-tab-btn.active {
    background: #5b8cff;
    color: #fff;
    box-shadow: 0 5px 15px rgba(91, 140, 255, 0.3);
}

.cp-mockup {
    background: #0a0d16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.cp-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cp-dots {
    display: flex;
    gap: 6px;
}

.cp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cp-content {
    padding: 30px;
    text-align: left;
}

/* Comparison Table */
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.compare-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.compare-row td {
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.compare-row.highlight {
    background: rgba(91, 140, 255, 0.05);
    border-color: #5b8cff;
}

.compare-row.highlight td {
    color: #fff;
    font-weight: 700;
}

/* 2-Column FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Product icon enhancement */
.v-plan-card .game-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(91, 140, 255, 0.1);
    border: 1px solid rgba(91, 140, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.v-plan-card .game-icon-box img {
    width: 32px;
    height: 32px;
}

/* Apex Theme Manager Dynamic Enhancements */
.hero-scroll-container {
    --hero-slide-count: 1;
}

.hero-slider {
    width: calc(var(--hero-slide-count) * 100%);
}

.hero-slide {
    flex: 0 0 calc(100% / var(--hero-slide-count));
    width: calc(100% / var(--hero-slide-count));
    padding: 0 5vw;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(2, 4, 10, 0.84) 0%, rgba(2, 4, 10, 0.56) 44%, rgba(2, 4, 10, 0.8) 100%), var(--hero-slide-bg, var(--hero-default-bg, url('../img/hero-bg.png')));
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    opacity: 1;
    transform: scale(1.05);
    pointer-events: none;
}

.hero-slide-content {
    width: 100%;
    max-width: 1220px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 140px 0 120px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    align-content: center;
    position: relative;
    z-index: 1;
}

.hero-slide-content.has-hero-logo {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 72px;
}

.hero-copy {
    text-align: left;
    max-width: 760px;
}

.hero-brand-panel {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 320px;
    min-height: 260px;
    padding: 32px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.72) 0%, rgba(8, 12, 24, 0.38) 100%);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 80px rgba(1, 4, 18, 0.46), inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-brand-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}

.hero-brand-panel__glow {
    position: absolute;
    inset: auto auto 20px -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, rgba(99,102,241,0) 72%);
    pointer-events: none;
}

.hero-brand-panel__label {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
}

.hero-brand-panel__logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 220px;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
}

.hero-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: 0.3s ease;
}

.btn-hero-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media img {
    width: 100%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.45));
}

.nav-link-button {
    margin-left: 0;
}

.nav-link-item,
.nav-link-button,
.nav-dropdown-toggle,
.nav-dropdown-item,
.nav-dropdown-cta {
    gap: 8px;
}

.nav-dropdown-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.advantage-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.advantage-icon i {
    color: var(--primary);
    font-size: 18px;
}

.service-item-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.service-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: var(--primary);
    flex-shrink: 0;
}

.location-copy {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 110px;
}

.location-copy strong {
    color: #fff;
    font-size: 0.9rem;
}

.location-copy small {
    color: var(--text-dim);
    font-size: 0.72rem;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 126px 0 118px;
    }

    .hero-slide-content.has-hero-logo {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-brand-panel {
        justify-self: center;
        min-height: 220px;
        max-width: 280px;
    }
}
.nav-dropdown-toggle.nav-link-button {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
}

.nav-dropdown-toggle.nav-link-button:hover {
    background: #e0e0e0;
    color: #000;
}
.hero-media {
    min-height: 320px;
}

.hero-media-art {
    width: 100%;
    max-width: 520px;
    min-height: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 24px 70px rgba(0, 0, 0, 0.45);
}

.slider-indicators {
    left: 50%;
    bottom: 52px;
    transform: translateX(-50%);
    width: max-content;
}

.indicator {
    display: block;
    border-radius: 999px;
    flex: 0 0 auto;
}

footer.footer.apex-site-footer {
    position: relative;
    margin-top: auto;
    padding: 80px 0 50px;
    background: rgba(2, 4, 10, 0.85) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
    color: var(--text-pure);
}

footer.footer.apex-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, color-mix(in srgb, var(--primary) 20%, transparent), transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.apex-site-footer__topbar {
    display: none;
}

.apex-site-footer__inner {
    padding: 54px 0 0;
}

.apex-site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.apex-site-footer__column h4 {
    position: relative;
    margin: 0 0 28px;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.apex-site-footer__column h4::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.apex-site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.apex-site-footer__links li + li {
    margin-top: 14px;
}

.apex-site-footer__links a {
    color: var(--text-pure);
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.apex-site-footer__links a:hover {
    color: var(--accent);
    transform: translateX(3px);
    opacity: 1;
}

.apex-site-footer__meta {
    max-width: 1048px;
    margin: 58px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.apex-site-footer__meta p {
    margin: 0 0 10px;
    color: var(--text-dim);
    font-size: 0.94rem;
    line-height: 1.7;
}

.apex-site-footer__help {
    font-weight: 700;
    color: var(--text-pure) !important;
}

.apex-site-footer__socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.apex-site-footer__social-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-pure);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.apex-site-footer__social-link:hover {
    transform: translateY(-2px);
    color: var(--text-pure);
    background: var(--grad);
    border-color: color-mix(in srgb, var(--primary) 60%, transparent);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--primary) 28%, transparent);
}

@media (max-width: 991px) {
    .apex-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
    }
}

@media (max-width: 575px) {
    .apex-site-footer__inner {
        padding-top: 42px;
    }

    .apex-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apex-site-footer__column h4 {
        margin-bottom: 22px;
    }

    .apex-site-footer__meta {
        margin-top: 42px;
    }
}

.apex-games-showcase {
    padding: 40px 0 24px;
}

.apex-games-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: rgba(11, 27, 55, 0.62);
    color: #38bdf8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.apex-games-showcase__title {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
}

.apex-games-showcase__subtitle {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
}

.apex-games-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.apex-game-showcase-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(5, 10, 21, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 26px 52px rgba(2, 6, 23, 0.34);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.apex-game-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.34);
    box-shadow: 0 32px 60px rgba(2, 6, 23, 0.45);
}

.apex-game-showcase-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, rgba(14, 24, 45, 0.95), rgba(8, 47, 73, 0.72));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.apex-game-showcase-card__media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.7) 82%, rgba(3, 7, 18, 0.92) 100%),
        radial-gradient(circle at top, rgba(59, 130, 246, 0.2), transparent 48%);
}

.apex-game-showcase-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 20px;
}

.apex-game-showcase-card__body h3 {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.apex-game-showcase-card__price {
    margin: 0;
    color: #34d399;
    font-size: 0.94rem;
    font-weight: 700;
}

.apex-game-showcase-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    background: rgba(11, 37, 74, 0.72);
    color: #f8fafc;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.apex-game-showcase-card__button:hover {
    background: rgba(18, 54, 104, 0.92);
    border-color: rgba(96, 165, 250, 0.45);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.apex-games-showcase__footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.apex-games-showcase__footer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.apex-games-showcase__footer-button:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.34);
    background: rgba(18, 30, 54, 0.95);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .apex-games-showcase {
        padding-top: 24px;
    }

    .apex-games-showcase__grid {
        grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
        gap: 16px;
    }

    .apex-game-showcase-card__body {
        padding: 16px;
    }
}

/* Apex Client Area Shell */
.apex-client-shell {
    display: flex;
    gap: 0;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.apex-client-sidebar {
    width: 270px;
    min-width: 270px;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.96) 0%, rgba(8, 12, 24, 0.8) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: none;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
}

.apex-client-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: #fff;
    font-size: 16px;
}

.apex-client-brand__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
}

.apex-client-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apex-client-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    background: transparent;
}

.apex-client-nav-link i {
    width: 18px;
    text-align: center;
    color: color-mix(in srgb, var(--primary) 70%, #ffffff);
}

.apex-client-nav-link:hover,
.apex-client-nav-link.active {
    background: color-mix(in srgb, var(--primary) 18%, transparent);
    color: #fff;
}

.apex-client-follow {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.apex-client-follow__icons {
    display: flex;
    gap: 10px;
}

.apex-client-follow__icons a {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.apex-client-follow__stars {
    display: flex;
    gap: 4px;
    color: #34d399;
}

.apex-client-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0 28px 40px 28px;
}

.apex-client-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    border-radius: 0;
    background: rgba(10, 14, 26, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.apex-client-topbar__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.apex-client-topbar__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.apex-client-topbar__credits {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.apex-client-topbar__credits strong {
    color: var(--primary);
    margin-left: 6px;
}

.apex-client-topbar__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.apex-client-topbar__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}

.apex-client-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apex-client-sidebar-toggle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: color-mix(in srgb, var(--primary) 14%, rgba(255, 255, 255, 0.08));
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.apex-client-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 10, 0.6);
    border: none;
    z-index: 999;
}

.apex-client-tabs {
    display: inline-flex;
    gap: 12px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
}

.apex-client-tab {
    padding: 8px 20px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: 0.25s ease;
}

.apex-client-tab.active,
.apex-client-tab:hover {
    background: var(--primary);
    color: #0f172a;
}

.apex-client-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.apex-client-card {
    background: rgba(8, 12, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.apex-client-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.apex-client-card__value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.apex-client-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 12px;
    background: var(--primary);
    color: #0f172a !important;
    font-weight: 700;
    text-decoration: none;
}

.apex-client-card__note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.apex-client-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.apex-client-panel {
    background: rgba(8, 12, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px;
}

.apex-client-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.apex-client-panel__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.apex-client-panel__action {
    color: #38bdf8;
    font-size: 12px;
    text-decoration: none;
}

.apex-client-table {
    background: rgba(8, 12, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 18px;
}

.apex-client-shell .table {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.apex-client-shell .apex-client-table .dataTables_wrapper,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_length,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_filter,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_info,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_paginate {
    color: rgba(255, 255, 255, 0.72);
}

.apex-client-shell .apex-client-table .dataTables_wrapper table.table-list {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.apex-client-shell .table thead th {
    background-color: rgba(255, 255, 255, 0.035) !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.apex-client-shell .apex-client-table table.table-list thead th.sorting,
.apex-client-shell .apex-client-table table.table-list thead th.sorting_asc,
.apex-client-shell .apex-client-table table.table-list thead th.sorting_desc {
    background-color: rgba(255, 255, 255, 0.035) !important;
}

.apex-client-shell .table tbody tr {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.apex-client-shell .table tbody th,
.apex-client-shell .table tbody td,
.apex-client-shell .apex-client-table table.table-list tbody td,
.apex-client-shell .apex-client-table table.dataTable tbody tr > .sorting_1,
.apex-client-shell .apex-client-table table.dataTable tbody tr > .sorting_2,
.apex-client-shell .apex-client-table table.dataTable tbody tr > .sorting_3 {
    background-color: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

.apex-client-shell .apex-client-table table.table-list tbody tr:hover > td,
.apex-client-shell .apex-client-table table.dataTable tbody tr:hover > td,
.apex-client-shell .apex-client-table table.dataTable tbody tr:hover > th {
    background-color: rgba(99, 102, 241, 0.08) !important;
}

.apex-client-shell .apex-client-table table.dataTable td.dataTables_empty {
    background-color: rgba(255, 255, 255, 0.018) !important;
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 26px 12px !important;
}

.apex-client-shell .apex-client-table table.dataTable.no-footer {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.apex-client-shell .apex-client-table .dataTables_filter label .form-control,
.apex-client-shell .apex-client-table .dataTables_length select {
    background-color: rgba(255, 255, 255, 0.045) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

.apex-client-shell .apex-client-table .dataTables_filter label .form-control:focus,
.apex-client-shell .apex-client-table .dataTables_length select:focus {
    border-color: rgba(99, 102, 241, 0.65) !important;
    box-shadow: 0 0 0 0.15rem rgba(99, 102, 241, 0.18) !important;
}

.apex-client-shell .apex-client-table .page-link,
.apex-client-shell .apex-client-table .pagination > li > a,
.apex-client-shell .apex-client-table .pagination > li > span,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_paginate .paginate_button {
    background: rgba(255, 255, 255, 0.045) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.apex-client-shell .apex-client-table .page-link:hover,
.apex-client-shell .apex-client-table .pagination > li > a:hover,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(99, 102, 241, 0.18) !important;
    border-color: rgba(99, 102, 241, 0.35) !important;
    color: #fff !important;
}

.apex-client-shell .apex-client-table .page-item.disabled .page-link,
.apex-client-shell .apex-client-table .pagination > .disabled > a,
.apex-client-shell .apex-client-table .pagination > .disabled > span,
.apex-client-shell .apex-client-table .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    background: rgba(255, 255, 255, 0.025) !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
    color: rgba(255, 255, 255, 0.42) !important;
}

.apex-client-cardbox {
    background: rgba(8, 12, 24, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
}

.apex-client-shell .product-details-tab-container {
    background: rgba(8, 12, 24, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

.apex-client-shell .product-details-tab-container {
    padding: 22px !important;
}

.apex-client-shell .module-client-area {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    padding: 0 !important;
    text-align: left !important;
}

.apex-client-shell .responsive-tabs-sm {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 0 !important;
    margin: 24px 0 12px;
}

.apex-client-shell .responsive-tabs-sm .nav-item a,
.apex-client-shell .responsive-tabs-sm .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-weight: 800;
}

.apex-client-shell .responsive-tabs-sm .nav-item a.active,
.apex-client-shell .responsive-tabs-sm .nav-link.active,
.apex-client-shell .responsive-tabs-sm .nav-item a:hover,
.apex-client-shell .responsive-tabs-sm .nav-link:hover {
    background: rgba(99, 102, 241, 0.18) !important;
    border-color: rgba(99, 102, 241, 0.45) !important;
    color: #fff !important;
}

.apex-client-shell .responsive-tabs-sm-connector {
    display: none !important;
}

.apex-module-panel {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(8, 12, 24, 0.72);
    color: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.apex-module-panel__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.apex-module-panel__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.18);
    color: #7dd3fc;
}

.apex-module-panel__title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.apex-module-panel__meta {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.apex-module-panel__actions {
    display: flex;
    padding: 20px;
}

.apex-module-primary-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding-right: 22px !important;
    padding-left: 22px !important;
    border-radius: 12px !important;
}

.apex-virtualizor-loader {
    padding: 24px 20px 28px;
}

.apex-virtualizor-loader .progress-bar-value {
    width: 100%;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.apex-virtualizor-loader .progress-bar-value::before {
    content: "";
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.95), rgba(99, 102, 241, 1));
    animation: apexVirtualizorIndeterminate 1.35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.apex-virtualizor-loader__status {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.apex-virtualizor-frame {
    display: none;
    min-height: 720px;
    border: 0;
    background: #02040a;
}

@keyframes apexVirtualizorIndeterminate {
    0% { transform: translateX(-115%); }
    100% { transform: translateX(260%); }
}

@media (max-width: 576px) {
    .apex-module-panel__header,
    .apex-module-panel__actions {
        padding-right: 16px;
        padding-left: 16px;
    }

    .apex-module-primary-action {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .apex-client-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .apex-client-shell {
        flex-direction: column;
        padding: 0 0 40px;
        width: 100%;
        margin: 0;
    }

    .apex-client-sidebar {
        width: min(88vw, 320px);
        min-width: 0;
        max-width: 100vw;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        height: 100dvh;
        z-index: 1000;
        transform: translateX(-110%);
        transition: transform 0.3s ease;
        border-radius: 0 22px 22px 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-bottom: calc(22px + env(safe-area-inset-bottom));
    }

    .apex-client-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apex-client-topbar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0;
    }

    .apex-client-sidebar-toggle {
        display: inline-flex;
    }

    .apex-client-shell.apex-sidebar-open .apex-client-sidebar {
        transform: translateX(0);
    }

    .apex-client-shell.apex-sidebar-open .apex-client-overlay {
        display: block;
    }
}

@media (max-width: 768px) {
    .apex-client-cards {
        grid-template-columns: 1fr;
    }

    .apex-client-tabs {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .apex-client-tab {
        flex: 1 1 40%;
        text-align: center;
    }

    .apex-client-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .apex-client-main {
        padding: 0 14px 28px;
    }

    .apex-client-sidebar {
        width: 100vw;
        border-radius: 0;
        padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
    }

    .apex-client-nav {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .apex-client-nav-link {
        border-radius: 12px;
        padding: 12px 14px;
    }

    .apex-client-topbar {
        padding: 16px;
        gap: 12px;
    }

    .apex-client-topbar__title {
        width: 100%;
        font-size: 18px;
    }

    .apex-client-topbar__actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .apex-client-topbar__credits {
        width: 100%;
        order: 2;
    }

    .apex-client-follow {
        margin-top: 12px;
    }
}
.apex-client-body #main-body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.apex-client-body #main-body > .container {
    max-width: none;
    padding: 0;
}

.apex-client-body #main-body .primary-content {
    padding: 0;
}

.nav-account-dropdown {
    display: flex;
    align-items: center;
}

.nav-alert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-alert-link:hover {
    color: #fff;
    background: #f87171;
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.45);
}


/* User Request: Make primary buttons white globally */
.btn-primary { background-color: #ffffff !important; color: #1e293b !important; border-color: #ffffff !important; font-weight: 700 !important; }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { background-color: #f1f5f9 !important; border-color: #f1f5f9 !important; color: #0f172a !important; }

/* Global contrast recovery for dark Apex surfaces */
body.primary-bg-color {
    --text-pure: #ffffff !important;
    --text-dim: #94a3b8 !important;
}

body.primary-bg-color .text-dark,
body.primary-bg-color .text-body {
    color: var(--text-pure, #ffffff) !important;
}

body.primary-bg-color .text-muted,
body.primary-bg-color .text-black-50 {
    color: var(--text-dim, #94a3b8) !important;
}

body.primary-bg-color .card,
body.primary-bg-color .panel,
body.primary-bg-color .well,
body.primary-bg-color .list-group-item,
body.primary-bg-color .glass-card,
body.primary-bg-color .feature-mini-card,
body.primary-bg-color .pricing-card,
body.primary-bg-color .advantage-card,
body.primary-bg-color .launch-card-main,
body.primary-bg-color .game-card,
body.primary-bg-color .v-plan-card,
body.primary-bg-color .platform-card,
body.primary-bg-color .apex-game-showcase-card,
body.primary-bg-color .apex-client-card,
body.primary-bg-color .apex-client-cardbox,
body.primary-bg-color .summary-sidebar-apex,
body.primary-bg-color .summary-sidebar-apex .product-summary-card {
    color: var(--text-pure, #ffffff) !important;
}

body.primary-bg-color .card h1,
body.primary-bg-color .card h2,
body.primary-bg-color .card h3,
body.primary-bg-color .card h4,
body.primary-bg-color .card h5,
body.primary-bg-color .card h6,
body.primary-bg-color .panel h1,
body.primary-bg-color .panel h2,
body.primary-bg-color .panel h3,
body.primary-bg-color .panel h4,
body.primary-bg-color .panel h5,
body.primary-bg-color .panel h6,
body.primary-bg-color .well h1,
body.primary-bg-color .well h2,
body.primary-bg-color .well h3,
body.primary-bg-color .well h4,
body.primary-bg-color .well h5,
body.primary-bg-color .well h6,
body.primary-bg-color .feature-mini-card h1,
body.primary-bg-color .feature-mini-card h2,
body.primary-bg-color .feature-mini-card h3,
body.primary-bg-color .feature-mini-card h4,
body.primary-bg-color .feature-mini-card h5,
body.primary-bg-color .feature-mini-card h6,
body.primary-bg-color .pricing-card h1,
body.primary-bg-color .pricing-card h2,
body.primary-bg-color .pricing-card h3,
body.primary-bg-color .pricing-card h4,
body.primary-bg-color .pricing-card h5,
body.primary-bg-color .pricing-card h6,
body.primary-bg-color .advantage-card h1,
body.primary-bg-color .advantage-card h2,
body.primary-bg-color .advantage-card h3,
body.primary-bg-color .advantage-card h4,
body.primary-bg-color .advantage-card h5,
body.primary-bg-color .advantage-card h6 {
    color: var(--text-pure, #ffffff) !important;
}

body.primary-bg-color .card p,
body.primary-bg-color .card li,
body.primary-bg-color .card small,
body.primary-bg-color .panel p,
body.primary-bg-color .panel li,
body.primary-bg-color .panel small,
body.primary-bg-color .well p,
body.primary-bg-color .well li,
body.primary-bg-color .well small,
body.primary-bg-color .feature-mini-card p,
body.primary-bg-color .pricing-card .desc,
body.primary-bg-color .pricing-card .features-list li,
body.primary-bg-color .advantage-card .num,
body.primary-bg-color .advantage-card p {
    color: var(--text-dim, #94a3b8) !important;
}

body.primary-bg-color .feature-mini-card i,
body.primary-bg-color .advantage-icon i,
body.primary-bg-color .card-icon i,
body.primary-bg-color .icon-box i,
body.primary-bg-color .service-item-icon i,
body.primary-bg-color .game-icon-box i {
    color: var(--text-pure, #ffffff) !important;
}

/* Apex standard_cart orderform skin */
body.primary-bg-color #order-standard_cart {
    --apex-order-bg: #0a0a0b;
    --apex-order-surface: #151516;
    --apex-order-surface-2: #1e1e20;
    --apex-order-border: rgba(255, 255, 255, 0.11);
    --apex-order-border-soft: rgba(255, 255, 255, 0.07);
    --apex-order-text: #ffffff;
    --apex-order-muted: #b6bac5;
    --apex-order-dim: #7b8190;
    --apex-order-accent: #5b3ff2;
    --apex-order-danger: #ef4444;
    width: min(1235px, calc(100vw - 34px));
    margin: 0 auto;
    padding: 28px 0 72px;
    color: var(--apex-order-text);
    background: transparent !important;
    font-size: 13px;
}

body.primary-bg-color #order-standard_cart::before {
    content: "Shopping Cart";
    display: block;
    margin: 0 0 24px;
    padding: 11px 16px;
    border: 1px solid var(--apex-order-border);
    border-radius: 6px;
    background: var(--apex-order-surface);
    color: var(--apex-order-text);
    font-weight: 800;
}

body.primary-bg-color #order-standard_cart > .row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    margin: 0;
}

body.primary-bg-color #order-standard_cart .cart-sidebar {
    display: block !important;
    float: none !important;
    flex: 0 0 228px;
    width: 228px !important;
    padding: 0 !important;
    position: sticky;
    top: 102px;
    align-self: flex-start;
}

body.primary-bg-color #order-standard_cart .cart-body {
    float: none !important;
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    padding: 0 !important;
}

body.primary-bg-color #order-standard_cart .cart-body > .row:has(> .secondary-cart-body),
body.primary-bg-color #order-standard_cart #frmConfigureProduct > .row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    margin: 0;
}

body.primary-bg-color #order-standard_cart .secondary-cart-body {
    float: none !important;
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    padding: 0 !important;
}

body.primary-bg-color #order-standard_cart .secondary-cart-sidebar {
    float: none !important;
    flex: 0 0 300px;
    width: 300px !important;
    padding: 0 !important;
    position: sticky;
    top: 102px;
    align-self: flex-start;
}

body.primary-bg-color #order-standard_cart .header-lined {
    margin: 0 0 22px;
    padding: 0 0 22px;
    border-bottom: 1px solid var(--apex-order-border-soft);
}

body.primary-bg-color #order-standard_cart .header-lined h1 {
    margin: 0 0 6px;
    color: var(--apex-order-text) !important;
    font-size: 22px !important;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

body.primary-bg-color #order-standard_cart .header-lined p,
body.primary-bg-color #order-standard_cart > p,
body.primary-bg-color #order-standard_cart .cart-body > p,
body.primary-bg-color #order-standard_cart .secondary-cart-body > p {
    color: var(--apex-order-muted) !important;
    line-height: 1.55;
}

body.primary-bg-color #order-standard_cart .card-sidebar,
body.primary-bg-color #order-standard_cart .sidebar-collapsed .panel,
body.primary-bg-color #order-standard_cart .panel,
body.primary-bg-color #order-standard_cart .card,
body.primary-bg-color #order-standard_cart .well {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    box-shadow: none !important;
    color: var(--apex-order-text) !important;
}

body.primary-bg-color #order-standard_cart .card-sidebar {
    overflow: hidden;
    margin-bottom: 14px !important;
}

body.primary-bg-color #order-standard_cart .card-sidebar .card-header,
body.primary-bg-color #order-standard_cart .card-sidebar .panel-heading,
body.primary-bg-color #order-standard_cart .sidebar-collapsed .card-header {
    padding: 12px 15px !important;
    background: #242425 !important;
    border-bottom: 1px solid var(--apex-order-border-soft) !important;
}

body.primary-bg-color #order-standard_cart .card-sidebar .panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    color: var(--apex-order-text) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body.primary-bg-color #order-standard_cart .card-sidebar .panel-title .card-minimise {
    margin-left: auto;
    color: var(--apex-order-muted) !important;
    font-size: 11px;
}

body.primary-bg-color #order-standard_cart .card-sidebar .list-group,
body.primary-bg-color #order-standard_cart .card-sidebar .list-group-item {
    background: transparent !important;
}

body.primary-bg-color #order-standard_cart .card-sidebar .list-group-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px !important;
    border: 0 !important;
    color: var(--apex-order-text) !important;
    font-size: 12px !important;
    font-weight: 800;
    text-decoration: none !important;
}

body.primary-bg-color #order-standard_cart .card-sidebar .list-group-item i {
    width: 14px;
    color: var(--apex-order-muted) !important;
    text-align: center;
}

body.primary-bg-color #order-standard_cart .card-sidebar .list-group-item:hover,
body.primary-bg-color #order-standard_cart .card-sidebar .list-group-item.active {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .sidebar-collapsed {
    display: none !important;
}

body.primary-bg-color #order-standard_cart .products {
    margin: 0;
}

body.primary-bg-color #order-standard_cart .products .row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin: 0;
}

body.primary-bg-color #order-standard_cart .products .row::before,
body.primary-bg-color #order-standard_cart .products .row::after {
    display: none;
}

body.primary-bg-color #order-standard_cart .products [class*="col-"] {
    flex: 1 1 calc(50% - 13px);
    max-width: calc(50% - 13px);
    padding: 0 !important;
}

body.primary-bg-color #order-standard_cart .products .product {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    height: 100%;
    margin: 0 !important;
    padding: 26px !important;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    box-shadow: none !important;
    transform: none !important;
}

body.primary-bg-color #order-standard_cart .products .product:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: #181819 !important;
}

body.primary-bg-color #order-standard_cart .products .product header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 22px !important;
    padding: 0 0 22px !important;
    border-bottom: 1px solid var(--apex-order-border-soft) !important;
    background: transparent !important;
}

body.primary-bg-color #order-standard_cart .products .product header span:first-child {
    color: var(--apex-order-text) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

body.primary-bg-color #order-standard_cart .products .product header .qty {
    color: var(--apex-order-muted) !important;
    font-size: 12px !important;
    font-style: normal;
}

body.primary-bg-color #order-standard_cart .products .product div.product-desc {
    float: none !important;
    width: 100% !important;
    flex: 1 1 auto;
    padding: 0 !important;
    color: var(--apex-order-muted) !important;
    font-size: 13px !important;
}

body.primary-bg-color #order-standard_cart .products .product div.product-desc p {
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart .products .product div.product-desc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 18px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.primary-bg-color #order-standard_cart .products .product div.product-desc li {
    display: flex !important;
    align-items: center;
    gap: 9px;
    padding: 0 !important;
    border: 0 !important;
    color: var(--apex-order-text) !important;
    font-size: 13px !important;
}

body.primary-bg-color #order-standard_cart .products .product div.product-desc li::before {
    content: "\f00c";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .products .product div.product-desc .feature-value {
    color: #ffffff !important;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .products .product footer {
    float: none !important;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    width: 100% !important;
    margin: 26px 0 0 !important;
    padding: 24px 0 0 !important;
    border-top: 1px solid var(--apex-order-border-soft);
    text-align: left !important;
}

body.primary-bg-color #order-standard_cart .products .product .btn-order-now {
    width: auto !important;
    min-width: 106px;
    padding: 10px 16px !important;
    border-color: #ffffff !important;
    background: #ffffff !important;
    color: #09090b !important;
    font-size: 12px !important;
    text-transform: none !important;
}

body.primary-bg-color #order-standard_cart .products .product .btn-order-now:hover {
    background: #e5e7eb !important;
    color: #09090b !important;
}

body.primary-bg-color #order-standard_cart .product-pricing {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--apex-order-muted) !important;
    text-align: left !important;
}

body.primary-bg-color #order-standard_cart .product-pricing .price {
    display: inline-block;
    margin: 0 4px 0 0;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
}

body.primary-bg-color #order-standard_cart .product-pricing small {
    display: block;
    margin-top: 4px;
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart .btn,
body.primary-bg-color #order-standard_cart button,
body.primary-bg-color #order-standard_cart input,
body.primary-bg-color #order-standard_cart select,
body.primary-bg-color #order-standard_cart textarea {
    letter-spacing: 0;
}

body.primary-bg-color #order-standard_cart .btn-primary,
body.primary-bg-color #order-standard_cart .btn-success,
body.primary-bg-color #order-standard_cart .btn-info,
body.primary-bg-color #order-standard_cart .btn-checkout {
    border: 1px solid transparent !important;
    border-radius: 6px !important;
    background: var(--apex-order-accent) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 900 !important;
    text-transform: none !important;
}

body.primary-bg-color #order-standard_cart .btn-primary:hover,
body.primary-bg-color #order-standard_cart .btn-success:hover,
body.primary-bg-color #order-standard_cart .btn-info:hover,
body.primary-bg-color #order-standard_cart .btn-checkout:hover {
    background: #6a52ff !important;
    color: #ffffff !important;
    transform: none !important;
}

body.primary-bg-color #order-standard_cart .btn-default,
body.primary-bg-color #order-standard_cart .btn-secondary {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 6px !important;
    background: #f8fafc !important;
    color: #111827 !important;
    font-weight: 900 !important;
}

body.primary-bg-color #order-standard_cart .btn-link {
    color: #60a5fa !important;
}

body.primary-bg-color #order-standard_cart .form-control,
body.primary-bg-color #order-standard_cart .field,
body.primary-bg-color #order-standard_cart .custom-select,
body.primary-bg-color #order-standard_cart textarea,
body.primary-bg-color #order-standard_cart input[type="text"],
body.primary-bg-color #order-standard_cart input[type="email"],
body.primary-bg-color #order-standard_cart input[type="password"],
body.primary-bg-color #order-standard_cart input[type="tel"],
body.primary-bg-color #order-standard_cart input[type="number"],
body.primary-bg-color #order-standard_cart select {
    min-height: 38px;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 6px !important;
    background: var(--apex-order-surface-2) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.primary-bg-color #order-standard_cart textarea {
    min-height: 88px;
}

body.primary-bg-color #order-standard_cart .form-control:focus,
body.primary-bg-color #order-standard_cart .field:focus,
body.primary-bg-color #order-standard_cart textarea:focus,
body.primary-bg-color #order-standard_cart input:focus,
body.primary-bg-color #order-standard_cart select:focus {
    border-color: rgba(255, 255, 255, 0.28) !important;
    background: #252529 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(91, 63, 242, 0.2) !important;
}

body.primary-bg-color #order-standard_cart ::placeholder {
    color: var(--apex-order-dim) !important;
}

body.primary-bg-color #order-standard_cart label {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.primary-bg-color #order-standard_cart .field-container,
body.primary-bg-color #order-standard_cart .product-info,
body.primary-bg-color #order-standard_cart #productAddonsContainer,
body.primary-bg-color #order-standard_cart .domain-checker-bg,
body.primary-bg-color #order-standard_cart .account-select-container .account {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: var(--apex-order-text) !important;
}

body.primary-bg-color #order-standard_cart .field-container,
body.primary-bg-color #order-standard_cart .product-info {
    padding: 20px;
    margin: 0 0 22px;
}

body.primary-bg-color #order-standard_cart .product-info .product-title {
    margin: 0 0 8px;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .sub-heading,
body.primary-bg-color #order-standard_cart .sub-heading-borderless {
    height: auto !important;
    margin: 28px 0 20px !important;
    border-top: 1px solid var(--apex-order-border-soft) !important;
    text-align: center;
}

body.primary-bg-color #order-standard_cart .sub-heading span,
body.primary-bg-color #order-standard_cart .sub-heading-borderless span {
    position: relative;
    top: -10px;
    display: inline-block;
    padding: 0 18px;
    background: var(--bg-black) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .form-group {
    margin-bottom: 18px;
}

body.primary-bg-color #order-standard_cart .domain-selection-options {
    margin: 0 0 16px;
}

body.primary-bg-color #order-standard_cart .domain-selection-options .option {
    margin: 0 0 8px !important;
    padding: 14px !important;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-selection-options .option-selected {
    background: #202022 !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

body.primary-bg-color #order-standard_cart .domain-input-group {
    margin-top: 13px;
}

body.primary-bg-color #order-standard_cart .input-group-addon,
body.primary-bg-color #order-standard_cart .input-group-text {
    border-color: var(--apex-order-border) !important;
    background: #2a2a2d !important;
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart #DomainSearchResults,
body.primary-bg-color #order-standard_cart #searchDomainInfo,
body.primary-bg-color #order-standard_cart .suggested-domains,
body.primary-bg-color #order-standard_cart #spotlightTlds {
    border-radius: 8px;
    color: #ffffff;
}

body.primary-bg-color #order-standard_cart .primary-domain-header,
body.primary-bg-color #order-standard_cart .suggested-domains .panel-heading,
body.primary-bg-color #order-standard_cart .suggested-domains .card-header {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px 8px 0 0;
    background: #242425 !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .spotlight-tld,
body.primary-bg-color #order-standard_cart .suggested-domains,
body.primary-bg-color #order-standard_cart .suggested-domains .list-group-item {
    border-color: var(--apex-order-border) !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart #orderSummary {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

body.primary-bg-color #order-standard_cart .order-summary {
    margin: 0 0 18px !important;
    padding: 22px 20px !important;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .order-summary h2 {
    margin: 0 0 24px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-align: left !important;
}

body.primary-bg-color #order-standard_cart .order-summary .summary-container,
body.primary-bg-color #order-standard_cart .order-summary .summary-totals,
body.primary-bg-color #order-standard_cart .order-summary .bordered-totals,
body.primary-bg-color #order-standard_cart .order-summary .recurring-totals {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--apex-order-border-soft);
}

body.primary-bg-color #order-standard_cart .order-summary .clearfix {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    color: #ffffff !important;
    font-size: 12px;
}

body.primary-bg-color #order-standard_cart .order-summary .product-name {
    display: block;
    margin-bottom: 6px;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .order-summary .product-group {
    display: block;
    margin-bottom: 12px;
    color: var(--apex-order-muted) !important;
    font-size: 12px;
}

body.primary-bg-color #order-standard_cart .order-summary .total-due-today {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--apex-order-border-soft);
}

body.primary-bg-color #order-standard_cart .order-summary .total-due-today span {
    display: block;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .order-summary .total-due-today .amt {
    color: #ffffff !important;
    font-size: 18px !important;
}

body.primary-bg-color #order-standard_cart #btnCompleteProductConfig,
body.primary-bg-color #order-standard_cart .btn-checkout {
    width: 100%;
    min-height: 46px;
}

body.primary-bg-color #order-standard_cart .view-cart-items-header {
    display: none;
}

body.primary-bg-color #order-standard_cart .view-cart-items {
    border: 0 !important;
    background: transparent !important;
}

body.primary-bg-color #order-standard_cart .view-cart-items .item {
    margin: 0 0 14px !important;
    padding: 20px !important;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .view-cart-items .item:nth-child(even) {
    background: var(--apex-order-surface) !important;
}

body.primary-bg-color #order-standard_cart .view-cart-items .item-title {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

body.primary-bg-color #order-standard_cart .view-cart-items .item-group,
body.primary-bg-color #order-standard_cart .view-cart-items .item-domain,
body.primary-bg-color #order-standard_cart .view-cart-items .cycle,
body.primary-bg-color #order-standard_cart .view-cart-items small {
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart .view-cart-items .item-price {
    color: #ffffff !important;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .empty-cart,
body.primary-bg-color #order-standard_cart .btn-remove-from-cart {
    color: #f87171 !important;
}

body.primary-bg-color #order-standard_cart .promo,
body.primary-bg-color #order-standard_cart .promo-code-cart-container,
body.primary-bg-color #order-standard_cart .view-cart-tabs .tab-content {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
}

body.primary-bg-color #order-standard_cart .view-cart-tabs .nav-tabs {
    border-bottom-color: var(--apex-order-border) !important;
}

body.primary-bg-color #order-standard_cart .view-cart-tabs .nav-tabs > li > a,
body.primary-bg-color #order-standard_cart .view-cart-tabs .nav-tabs .nav-link {
    color: #ffffff !important;
    background: transparent !important;
    border-color: var(--apex-order-border) !important;
}

body.primary-bg-color #order-standard_cart .view-cart-tabs .nav-tabs > li.active > a,
body.primary-bg-color #order-standard_cart .view-cart-tabs .nav-tabs .nav-link.active {
    background: var(--apex-order-surface) !important;
}

body.primary-bg-color #order-standard_cart .prepend-icon {
    position: relative;
}

body.primary-bg-color #order-standard_cart .prepend-icon .field-icon {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 50%;
    width: 18px;
    margin: 0;
    transform: translateY(-50%);
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart .prepend-icon .field-icon i {
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart .prepend-icon .field {
    padding-left: 38px !important;
}

body.primary-bg-color #order-standard_cart #frmCheckout .sub-heading {
    margin-top: 36px !important;
}

body.primary-bg-color #order-standard_cart .marketing-email-optin,
body.primary-bg-color #order-standard_cart .checkout-security-msg,
body.primary-bg-color #order-standard_cart .alert {
    border-radius: 8px !important;
}

body.primary-bg-color #order-standard_cart .alert-info,
body.primary-bg-color #order-standard_cart .alert-warning {
    border: 1px solid rgba(234, 179, 8, 0.34) !important;
    background: rgba(234, 179, 8, 0.18) !important;
    color: #fde68a !important;
}

body.primary-bg-color #order-standard_cart .alert-danger {
    border: 1px solid rgba(239, 68, 68, 0.38) !important;
    background: rgba(127, 29, 29, 0.24) !important;
    color: #fecaca !important;
}

body.primary-bg-color #order-standard_cart .alert-success {
    border: 1px solid rgba(34, 197, 94, 0.36) !important;
    background: rgba(20, 83, 45, 0.24) !important;
    color: #bbf7d0 !important;
}

body.primary-bg-color #order-standard_cart .panel-addon {
    overflow: hidden;
    text-align: left !important;
}

body.primary-bg-color #order-standard_cart .panel-addon .panel-body {
    padding: 18px !important;
}

body.primary-bg-color #order-standard_cart .panel-addon .panel-price,
body.primary-bg-color #order-standard_cart .panel-addon .panel-add {
    padding: 10px 18px !important;
    border-top: 1px solid var(--apex-order-border-soft);
    background: #202022 !important;
    color: #ffffff !important;
    font-weight: 900;
}

body.primary-bg-color #order-standard_cart .panel-addon-selected {
    border-color: rgba(91, 63, 242, 0.72) !important;
}

body.primary-bg-color #recommendationsModal .modal-content,
body.primary-bg-color #order-standard_cart .modal-content {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    body.primary-bg-color #order-standard_cart {
        width: min(100%, calc(100vw - 28px));
    }

    body.primary-bg-color #order-standard_cart .cart-sidebar {
        flex-basis: 214px;
        width: 214px !important;
    }

    body.primary-bg-color #order-standard_cart .secondary-cart-sidebar {
        flex-basis: 286px;
        width: 286px !important;
    }
}

@media (max-width: 991px) {
    body.primary-bg-color #order-standard_cart > .row,
    body.primary-bg-color #order-standard_cart .cart-body > .row:has(> .secondary-cart-body),
    body.primary-bg-color #order-standard_cart #frmConfigureProduct > .row {
        flex-direction: column;
        gap: 18px;
    }

    body.primary-bg-color #order-standard_cart .cart-sidebar,
    body.primary-bg-color #order-standard_cart .cart-body,
    body.primary-bg-color #order-standard_cart .secondary-cart-body,
    body.primary-bg-color #order-standard_cart .secondary-cart-sidebar {
        position: static;
        flex: 0 1 auto;
        width: 100% !important;
    }

    body.primary-bg-color #order-standard_cart .products [class*="col-"] {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    body.primary-bg-color #order-standard_cart {
        width: min(100%, calc(100vw - 20px));
        padding-top: 18px;
        font-size: 12px;
    }

    body.primary-bg-color #order-standard_cart::before {
        margin-bottom: 16px;
    }

    body.primary-bg-color #order-standard_cart .header-lined h1 {
        font-size: 20px !important;
    }

    body.primary-bg-color #order-standard_cart .products .product {
        padding: 20px !important;
    }

    body.primary-bg-color #order-standard_cart .products .product div.product-desc ul {
        grid-template-columns: minmax(0, 1fr);
    }

    body.primary-bg-color #order-standard_cart .products .product footer {
        align-items: stretch;
        flex-direction: column;
    }

    body.primary-bg-color #order-standard_cart .products .product footer .btn {
        width: 100%;
    }

    body.primary-bg-color #order-standard_cart .field-container,
    body.primary-bg-color #order-standard_cart .product-info,
    body.primary-bg-color #order-standard_cart .order-summary,
    body.primary-bg-color #order-standard_cart .view-cart-items .item {
        padding: 16px !important;
    }
}

/* Dark Apex fixes for native and plugin dropdowns */
body.primary-bg-color select,
body.primary-bg-color .custom-select,
body.primary-bg-color .form-control,
body.primary-bg-color .field,
body.primary-bg-color .selectize-input {
    color-scheme: dark !important;
}

body.primary-bg-color .custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.9rem center !important;
    background-size: 14px 10px !important;
}

body.primary-bg-color select option,
body.primary-bg-color select optgroup,
body.primary-bg-color .custom-select option,
body.primary-bg-color .custom-select optgroup,
body.primary-bg-color #order-standard_cart select option,
body.primary-bg-color #order-standard_cart select optgroup {
    background-color: #151516 !important;
    color: #ffffff !important;
}

body.primary-bg-color select option:checked,
body.primary-bg-color .custom-select option:checked,
body.primary-bg-color #order-standard_cart select option:checked {
    background-color: #252529 !important;
    box-shadow: 0 0 0 999px #252529 inset !important;
    color: #ffffff !important;
}

body.primary-bg-color .dropdown-menu,
body.primary-bg-color .multiselect-container,
body.primary-bg-color .selectize-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: #151516 !important;
    color: #ffffff !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
}

body.primary-bg-color .dropdown-item,
body.primary-bg-color .dropdown-menu > li > a,
body.primary-bg-color .multiselect-container > li > a,
body.primary-bg-color .selectize-dropdown .option {
    color: #ffffff !important;
}

body.primary-bg-color .dropdown-item:hover,
body.primary-bg-color .dropdown-item:focus,
body.primary-bg-color .dropdown-menu > li > a:hover,
body.primary-bg-color .dropdown-menu > li > a:focus,
body.primary-bg-color .multiselect-container > li > a:hover,
body.primary-bg-color .multiselect-container > li.active > a,
body.primary-bg-color .selectize-dropdown .option:hover,
body.primary-bg-color .selectize-dropdown .active {
    background: #252529 !important;
    color: #ffffff !important;
}

/* The stock WHMCS announcements article preview is light by default. */
body.primary-bg-color .announcements .announcement article {
    border-left-color: rgba(91, 63, 242, 0.72) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-dim, #b6bac5) !important;
}

body.primary-bg-color .announcements .announcement article,
body.primary-bg-color .announcements .announcement article p,
body.primary-bg-color .announcements .announcement article li,
body.primary-bg-color .announcements .announcement article span {
    color: var(--text-dim, #b6bac5) !important;
}

body.primary-bg-color .announcements .announcement article a {
    color: #60a5fa !important;
}

/* Dark Apex fixes for support ticket markdown editor and attachments */
body.primary-bg-color .md-editor {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    background: #151516 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.primary-bg-color .md-editor > .md-header,
body.primary-bg-color .md-editor > .btn-toolbar,
body.primary-bg-color .md-editor .md-footer {
    border-color: rgba(255, 255, 255, 0.09) !important;
    background: #151516 !important;
    color: #ffffff !important;
}

body.primary-bg-color .md-editor > .md-header,
body.primary-bg-color .md-editor > .btn-toolbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
}

body.primary-bg-color .md-editor > textarea.markdown-editor,
body.primary-bg-color .md-editor > textarea.markdown-editor:focus,
body.primary-bg-color .md-editor > .md-preview {
    min-height: 260px;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: #0f1117 !important;
    color: #e5e7eb !important;
    caret-color: #ffffff;
    box-shadow: none !important;
}

body.primary-bg-color div.md-editor.active {
    border-color: rgba(91, 63, 242, 0.65) !important;
    box-shadow: 0 0 0 2px rgba(91, 63, 242, 0.16) !important;
}

body.primary-bg-color .md-editor .btn,
body.primary-bg-color .md-editor .btn-default {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

body.primary-bg-color .md-editor .btn:hover,
body.primary-bg-color .md-editor .btn:focus,
body.primary-bg-color .md-editor .btn.active,
body.primary-bg-color .md-editor .btn:active {
    background: rgba(91, 63, 242, 0.22) !important;
    border-color: rgba(91, 63, 242, 0.45) !important;
    color: #ffffff !important;
}

body.primary-bg-color .md-editor .md-controls .md-control,
body.primary-bg-color .md-editor .md-fullscreen-controls a {
    color: rgba(255, 255, 255, 0.58) !important;
}

body.primary-bg-color .md-editor .md-controls .md-control:hover,
body.primary-bg-color .md-editor .md-fullscreen-controls a:hover {
    color: #ffffff !important;
}

body.primary-bg-color .markdown-editor-status {
    background: #151516 !important;
    color: rgba(255, 255, 255, 0.52) !important;
}

body.primary-bg-color .md-editor.md-fullscreen-mode {
    background: #0f1117 !important;
}

body.primary-bg-color .md-editor.md-fullscreen-mode .md-input,
body.primary-bg-color .md-editor.md-fullscreen-mode .md-input:focus,
body.primary-bg-color .md-editor.md-fullscreen-mode .md-input:hover,
body.primary-bg-color .md-editor.md-fullscreen-mode .md-preview {
    background: #0f1117 !important;
    color: #e5e7eb !important;
}

body.primary-bg-color .custom-file-label {
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: #151516 !important;
    color: rgba(255, 255, 255, 0.76) !important;
}

body.primary-bg-color .custom-file-label::after {
    border-left-color: rgba(255, 255, 255, 0.12) !important;
    background: #202024 !important;
    color: #ffffff !important;
}

body.primary-bg-color .custom-file-input:focus ~ .custom-file-label {
    border-color: rgba(91, 63, 242, 0.65) !important;
    box-shadow: 0 0 0 2px rgba(91, 63, 242, 0.16) !important;
}

/* Dark Apex fixes for register-domain cart page */
body.primary-bg-color #order-standard_cart .domain-checker-container {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
}

body.primary-bg-color #order-standard_cart .domain-checker-container .input-group-box {
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: #202024 !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-checker-container.domain-checker-advanced textarea {
    border: 0 !important;
    background: #1a1a1d !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-checker-container.domain-checker-advanced textarea::placeholder {
    color: rgba(255, 255, 255, 0.52) !important;
}

body.primary-bg-color #order-standard_cart .domain-checker-container.domain-checker-advanced .multiselect,
body.primary-bg-color #order-standard_cart .domain-checker-container.domain-checker-advanced .btn-group > .btn {
    border-color: var(--apex-order-border) !important;
    background: #151516 !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .featured-tld,
body.primary-bg-color #order-standard_cart .domain-promo-box {
    overflow: hidden;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

body.primary-bg-color #order-standard_cart .featured-tld .img-container {
    background: #202024 !important;
}

body.primary-bg-color #order-standard_cart .featured-tld .img-container img {
    filter: invert(1) hue-rotate(180deg) saturate(1.05) brightness(1.15);
}

body.primary-bg-color #order-standard_cart .featured-tld .price {
    background: #252529 !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing h4,
body.primary-bg-color #order-standard_cart .domain-promo-box h3 {
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-promo-box p,
body.primary-bg-color #order-standard_cart .domain-promo-box .small {
    color: var(--apex-order-muted) !important;
}

body.primary-bg-color #order-standard_cart .domain-promo-box i {
    color: rgba(255, 255, 255, 0.86) !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .bg-white {
    overflow: hidden;
    border: 1px solid var(--apex-order-border) !important;
    border-radius: 8px !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .tld-pricing-header,
body.primary-bg-color #order-standard_cart .domain-pricing .tld-pricing-header .row,
body.primary-bg-color #order-standard_cart .domain-pricing .tld-pricing-header [class*="col-"] {
    border-color: rgba(91, 63, 242, 0.58) !important;
    background: #242425 !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .tld-pricing-header [class*="col-"] {
    border-bottom-color: rgba(91, 63, 242, 0.58) !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .tld-row {
    border-bottom: 1px solid var(--apex-order-border-soft) !important;
    background: var(--apex-order-surface) !important;
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .tld-row:nth-child(even),
body.primary-bg-color #order-standard_cart .domain-pricing .tld-row.highlighted {
    background: #1e1e20 !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .two-row-center {
    border-right-color: rgba(91, 63, 242, 0.45) !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .tld-row strong {
    color: #ffffff !important;
}

body.primary-bg-color #order-standard_cart .domain-pricing .tld-row small {
    color: var(--apex-order-muted) !important;
}
