/* ================================================== */
/* Netblast Modern Professional Override
/* Clean, minimal, tech-forward design
/* ================================================== */

:root {
  --nb-dark: #0a0a0f;
  --nb-dark-2: #12121a;
  --nb-dark-3: #1a1a2e;
  --nb-dark-card: #16162a;
  --nb-accent: #6c63ff;
  --nb-accent-light: #8b83ff;
  --nb-accent-glow: rgba(108, 99, 255, 0.15);
  --nb-gradient: linear-gradient(135deg, #6c63ff 0%, #3b82f6 100%);
  --nb-gradient-subtle: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
  --nb-text: #e4e4ef;
  --nb-text-muted: #8888a0;
  --nb-text-heading: #ffffff;
  --nb-border: rgba(255, 255, 255, 0.06);
  --nb-glass: rgba(22, 22, 42, 0.7);
  --nb-radius: 16px;
  --nb-radius-sm: 10px;
  --nb-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --nb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Global Overrides ---- */

html {
  background: var(--nb-dark) !important;
  scroll-behavior: smooth;
}

body.dark-scheme {
  background: var(--nb-dark) !important;
  color: var(--nb-text) !important;
  font-family: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

h1, h2, h3, h4, h5, h6,
.dark-scheme h1, .dark-scheme h2, .dark-scheme h3,
.dark-scheme h4, .dark-scheme h5, .dark-scheme h6 {
  font-family: 'Inter', -apple-system, sans-serif !important;
  color: var(--nb-text-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

p {
  color: var(--nb-text-muted);
  line-height: 1.75;
  font-size: 15px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--nb-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--nb-dark-3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--nb-accent);
}

/* ---- Preloader ---- */
#de-loader {
  background: var(--nb-dark) !important;
}

/* ---- Header / Navigation ---- */

header {
  background: rgba(10, 10, 15, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--nb-border) !important;
  transition: var(--nb-transition);
  padding: 10px 0 !important;
  min-height: 80px;
}

header.header-scroll {
  background: rgba(10, 10, 15, 0.95) !important;
}

header.smaller {
  background: rgba(10, 10, 15, 0.95) !important;
}

#logo img {
  max-height: 38px;
}

#mainmenu li a.menu-item {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--nb-text-muted) !important;
  padding: 0 18px !important;
  transition: var(--nb-transition);
}

#mainmenu li a.menu-item:hover,
#mainmenu li a.menu-item.active {
  color: #fff !important;
}

/* Hide counter numbers on menu items */
#mainmenu > li::before {
  display: none !important;
}

/* Style the dropdown arrow for Apps menu */
#mainmenu > li.has-child:after {
  color: var(--nb-text-muted) !important;
  font-size: 9px !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

#mainmenu > li.has-child:hover:after {
  color: #fff !important;
  transform: rotate(180deg);
}

/* ---- Apps Dropdown Styling ---- */
#mainmenu > li > ul:not(.mega) {
  background: rgba(18, 18, 28, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(108, 99, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  min-width: 210px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(108, 99, 255, 0.08) !important;
  margin-top: 12px !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#mainmenu > li > ul:not(.mega)::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: rgba(18, 18, 28, 0.95);
  border-left: 1px solid rgba(108, 99, 255, 0.15);
  border-top: 1px solid rgba(108, 99, 255, 0.15);
  transform: rotate(45deg);
}

#mainmenu > li > ul:not(.mega) li {
  border: none !important;
  margin: 0 !important;
}

#mainmenu > li > ul:not(.mega) li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 20px !important;
  color: var(--nb-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: all 0.25s ease !important;
  border-left: 3px solid transparent !important;
  background: transparent !important;
}

#mainmenu > li > ul:not(.mega) li a:hover {
  color: #fff !important;
  background: rgba(108, 99, 255, 0.1) !important;
  border-left-color: var(--nb-accent) !important;
  padding-left: 24px !important;
}

#mainmenu > li > ul:not(.mega) li a i {
  font-size: 16px;
  color: var(--nb-accent);
  width: 20px;
  text-align: center;
  transition: transform 0.25s ease;
}

#mainmenu > li > ul:not(.mega) li a:hover i {
  transform: scale(1.15);
}

/* Ensure header height is consistent at all scroll states */
header,
header.transparent,
header.smaller {
  padding: 10px 0 !important;
  min-height: 80px;
}

header .de-flex {
  min-height: 60px;
  align-items: center;
}

header .de-flex-col {
  display: flex;
  align-items: center;
}

.menu_side_area {
  display: flex !important;
  align-items: center !important;
  margin-left: 20px;
  height: 100%;
}

.btn-main,
a.btn-main {
  background: var(--nb-gradient) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #fff !important;
  transition: var(--nb-transition);
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-main:hover,
a.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4) !important;
  filter: brightness(1.1);
}

.btn-main.btn-line,
a.btn-main.btn-line {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}

.btn-main.btn-line:hover,
a.btn-main.btn-line:hover {
  border-color: var(--nb-accent) !important;
  background: var(--nb-accent-glow) !important;
  box-shadow: none !important;
}

/* ---- Hero / Slider Section ---- */

.nb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nb-dark);
}

.nb-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(108, 99, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.nb-hero-content {
  position: relative;
  z-index: 2;
}

.nb-hero .nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nb-accent-glow);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nb-accent-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.nb-hero .nb-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.nb-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #c0c0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nb-hero h1 .nb-gradient-text {
  background: var(--nb-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nb-hero .nb-hero-desc {
  font-size: 17px;
  color: var(--nb-text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.nb-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}

.nb-hero-actions .btn-main,
.nb-hero-actions .nb-btn-secondary {
  min-width: 180px;
  justify-content: center;
  text-align: center;
  padding: 14px 28px !important;
  box-sizing: border-box;
  height: 50px;
}

.nb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--nb-text) !important;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: var(--nb-transition);
  text-decoration: none;
  background: transparent;
}

.nb-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #fff !important;
}

/* ---- Grid background pattern ---- */
.nb-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ---- Floating orbs ---- */
.nb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.nb-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(108, 99, 255, 0.15);
  top: 10%;
  left: -5%;
  animation: float-orb 8s ease-in-out infinite;
}

.nb-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.1);
  bottom: 10%;
  right: -5%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

/* ---- Section Styling ---- */

section {
  padding: 80px 0 !important;
}

section.no-bottom {
  padding-bottom: 0 !important;
}

section.no-top {
  padding-top: 0 !important;
}

.nb-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nb-accent-light);
  margin-bottom: 12px;
}

.nb-section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--nb-gradient);
  border-radius: 1px;
}

.nb-section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  margin-bottom: 16px;
}

.nb-section-desc {
  font-size: 16px;
  color: var(--nb-text-muted);
  max-width: 560px;
}

/* ---- Cards ---- */

.nb-card {
  background: var(--nb-dark-card);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
  padding: 32px;
  transition: var(--nb-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nb-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.3), transparent);
  opacity: 0;
  transition: var(--nb-transition);
}

.nb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 99, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.nb-card:hover::before {
  opacity: 1;
}

.nb-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--nb-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--nb-accent-light);
}

.nb-card h4 {
  font-size: 18px !important;
  margin-bottom: 10px;
  font-weight: 600 !important;
}

.nb-card p {
  font-size: 14px;
  color: var(--nb-text-muted);
  margin-bottom: 0;
  flex-grow: 1;
}

/* ---- Product Showcase Cards ---- */

.nb-product-card {
  background: var(--nb-dark-card);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
  overflow: hidden;
  transition: var(--nb-transition);
  position: relative;
}

.nb-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.nb-product-card .nb-product-image {
  position: relative;
  padding: 32px 32px 0;
  display: flex;
  justify-content: center;
}

.nb-product-card .nb-product-image img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.nb-product-card .nb-product-type {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--nb-accent-glow);
  color: var(--nb-accent-light);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.nb-product-card .nb-product-body {
  padding: 24px 32px 32px;
  text-align: center;
}

.nb-product-card h3 {
  font-size: 20px !important;
  margin-bottom: 6px;
}

.nb-product-card .nb-product-tagline {
  font-size: 13px;
  color: var(--nb-text-muted);
  margin-bottom: 16px;
}

.nb-product-card .nb-product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.nb-product-card .nb-product-rating .stars {
  color: #fbbf24;
  font-size: 13px;
}

.nb-product-card .nb-product-rating .rating-text {
  font-size: 13px;
  color: var(--nb-text-muted);
}

.nb-product-card .nb-product-price {
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 16px;
}

.nb-product-card .nb-btn-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--nb-text);
  transition: var(--nb-transition);
}

.nb-product-card .nb-btn-product:hover {
  background: var(--nb-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.nb-product-card.nb-coming-soon {
  opacity: 0.6;
}

.nb-product-card.nb-coming-soon:hover {
  transform: none;
  box-shadow: none;
}

/* ---- Stats ---- */

.nb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.nb-stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--nb-dark-card);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
}

.nb-stat-item .nb-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--nb-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.nb-stat-item .nb-stat-label {
  font-size: 13px;
  color: var(--nb-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ---- Reviews ---- */

.nb-review-card {
  background: var(--nb-dark-card);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
  padding: 28px;
  min-height: 200px;
}

.nb-review-card .nb-review-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.nb-review-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--nb-text);
  font-style: italic;
}

/* ---- CTA Section ---- */

.nb-cta {
  background: var(--nb-dark-card);
  border: 1px solid var(--nb-border);
  border-radius: calc(var(--nb-radius) * 1.5);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.nb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.nb-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  margin-bottom: 12px;
}

.nb-cta p {
  font-size: 15px;
  max-width: 500px;
  margin-bottom: 24px;
}

.nb-store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.nb-store-badges img {
  height: 44px;
  border-radius: 8px;
  transition: var(--nb-transition);
}

.nb-store-badges img:hover {
  transform: scale(1.05);
}

/* ---- Subheader ---- */

#subheader {
  padding: 160px 0 80px !important;
  position: relative;
  background: var(--nb-dark) !important;
  overflow: hidden;
}

#subheader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

#subheader .jarallax-img {
  opacity: 0.15 !important;
}

#subheader .subtitle {
  color: var(--nb-accent-light) !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- Feature List (for game/app detail pages) ---- */

.nb-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

/* ---- Footer ---- */

footer {
  background: var(--nb-dark-2) !important;
  border-top: 1px solid var(--nb-border);
  padding: 64px 0 0 !important;
}

footer h5 {
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nb-text-heading) !important;
  margin-bottom: 20px;
}

footer .widget ul {
  list-style: none;
  padding: 0;
}

footer .widget ul li {
  margin-bottom: 8px;
}

footer .widget ul li a {
  color: var(--nb-text-muted) !important;
  font-size: 14px;
  transition: var(--nb-transition);
}

footer .widget ul li a:hover {
  color: var(--nb-text-heading) !important;
  padding-left: 4px;
}

footer p {
  color: var(--nb-text-muted);
  font-size: 14px;
}

.subfooter {
  background: transparent !important;
  border-top: 1px solid var(--nb-border) !important;
  padding: 20px 0 !important;
  margin-top: 48px;
  font-size: 13px;
  color: var(--nb-text-muted) !important;
}

.subfooter a {
  color: var(--nb-text-muted) !important;
  transition: var(--nb-transition);
}

.subfooter a:hover {
  color: var(--nb-text-heading) !important;
}

.social-icons a {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--nb-border) !important;
  color: var(--nb-text-muted) !important;
  font-size: 14px !important;
  transition: var(--nb-transition);
  margin-right: 8px;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.social-icons a i {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

.social-icons a:hover {
  background: var(--nb-accent-glow) !important;
  border-color: rgba(108, 99, 255, 0.3) !important;
  color: var(--nb-accent-light) !important;
}

/* ---- Newsletter ---- */

#form_subscribe {
  position: relative;
}

#form_subscribe .form-control {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: 50px !important;
  padding: 12px 50px 12px 20px !important;
  color: var(--nb-text) !important;
  font-size: 14px;
}

#form_subscribe .form-control:focus {
  border-color: var(--nb-accent) !important;
  box-shadow: 0 0 0 3px var(--nb-accent-glow) !important;
}

#form_subscribe #btn-subscribe {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--nb-gradient) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
}

#form_subscribe #btn-subscribe i {
  color: #fff !important;
  font-size: 14px !important;
  background: transparent !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
}

/* ---- Contact Form ---- */

.form-control {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius-sm) !important;
  padding: 14px 18px !important;
  color: var(--nb-text) !important;
  font-size: 14px;
  transition: var(--nb-transition);
}

.form-control:focus {
  border-color: var(--nb-accent) !important;
  box-shadow: 0 0 0 3px var(--nb-accent-glow) !important;
  outline: none;
}

textarea.form-control {
  min-height: 150px;
}

.d-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nb-text) !important;
  margin-bottom: 6px;
  display: block;
}

/* ---- Subtitle override ---- */

.subtitle {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--nb-accent-light) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.subtitle::before,
.subtitle::after {
  display: none !important;
}

/* ---- blink animation override ---- */
.blink {
  animation: none !important;
}

/* ---- Testimonial carousel override ---- */

.de_testi.type-2 blockquote {
  background: var(--nb-dark-card) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius) !important;
  padding: 28px !important;
}

.de_testi.type-2 blockquote p {
  font-style: italic;
  font-size: 14px;
}

.d-stars i {
  color: #fbbf24 !important;
  font-size: 13px;
}

/* ---- Gallery items / Game collection ---- */

.de-item {
  border-radius: var(--nb-radius) !important;
  overflow: hidden !important;
}

.de-item .d-overlay {
  border-radius: var(--nb-radius) !important;
}

/* ---- Year card ---- */

.year-card {
  background: var(--nb-dark-card) !important;
  border: 1px solid var(--nb-border) !important;
  border-radius: var(--nb-radius) !important;
}

/* ---- pricing / sw-price ---- */

.sw-price {
  display: none !important;
}

/* ---- Jarallax sections ---- */

.padding60 {
  border-radius: var(--nb-radius) !important;
  border: 1px solid var(--nb-border) !important;
  overflow: hidden !important;
}

/* ---- Mobile responsive ---- */

@media (max-width: 992px) {
  .nb-hero h1 {
    font-size: 2rem !important;
  }

  .nb-cta {
    padding: 40px 24px;
  }

  .nb-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  section {
    padding: 60px 0 !important;
  }

  /* Mobile dropdown styling */
  #mainmenu > li > ul:not(.mega) {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    min-width: unset !important;
    padding: 0 !important;
  }

  #mainmenu > li > ul:not(.mega)::before {
    display: none;
  }

  #mainmenu > li > ul:not(.mega) li {
    padding-left: 20px !important;
    border: none !important;
  }

  #mainmenu > li > ul:not(.mega) li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    color: var(--nb-text-muted) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-left: none !important;
  }

  #mainmenu > li > ul:not(.mega) li:last-child a {
    border-bottom: none !important;
  }

  #mainmenu > li > ul:not(.mega) li a:hover {
    background: transparent !important;
    padding-left: 16px !important;
    color: #fff !important;
  }

  /* Fix the expand arrow for dropdown parent on mobile */
  header.header-mobile #mainmenu > li > span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
  }

  /* Make all menu items taller on mobile */
  #mainmenu li a.menu-item {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 15px !important;
  }

  #mainmenu li {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
  }

  /* Hide language text, show only flag on mobile */
  .menu_side_area .custom-no-hover span {
    display: none !important;
  }

  .menu_side_area .custom-no-hover img {
    margin-right: 0 !important;
  }

  .menu_side_area .custom-no-hover {
    padding: 8px !important;
    min-width: unset !important;
  }

  /* Smaller theme toggle on mobile */
  .nb-theme-toggle {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-right: 8px;
  }
}

@media (max-width: 576px) {
  .nb-hero h1 {
    font-size: 1.8rem !important;
  }

  .nb-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nb-stat-item .nb-stat-number {
    font-size: 1.8rem;
  }

  .nb-product-card .nb-product-image img {
    width: 90px;
    height: 90px;
  }
}

/* ---- Animations ---- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nb-animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.nb-delay-1 { animation-delay: 0.1s; }
.nb-delay-2 { animation-delay: 0.2s; }
.nb-delay-3 { animation-delay: 0.3s; }
.nb-delay-4 { animation-delay: 0.4s; }

/* ---- Trust badges ---- */

.nb-trust-bar {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  margin-top: 48px;
  border-top: 1px solid var(--nb-border);
}

.nb-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--nb-text-muted);
}

.nb-trust-item i {
  color: var(--nb-accent-light);
  font-size: 18px;
}

/* ---- Glass panel ---- */

.nb-glass {
  background: var(--nb-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
}

/* ---- About page specific ---- */

.nb-timeline {
  position: relative;
  padding-left: 40px;
}

.nb-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--nb-accent), transparent);
}

.nb-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.nb-timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nb-accent);
  box-shadow: 0 0 0 4px var(--nb-accent-glow);
}

/* ---- Divider ---- */

.nb-divider {
  width: 100%;
  height: 1px;
  background: var(--nb-border);
  margin: 40px 0;
}

/* ---- Swiper overrides ---- */

.swiper-slide {
  background: var(--nb-dark) !important;
}

.sw-caption {
  z-index: 10;
}

.swiper-inner {
  background-size: cover !important;
  background-position: center !important;
}

.sw-overlay {
  background: rgba(10, 10, 15, 0.75) !important;
}

/* ---- Custom flag button styling ---- */

.custom-no-hover {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

.custom-no-hover:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Prevent theme from pushing btn-main down on scroll */
header.smaller .btn-main {
  margin-top: 0 !important;
}

/* ---- Float text ---- */

.float-text span a {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
}

/* ---- Theme Toggle Button ---- */

.nb-theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--nb-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--nb-transition);
  font-size: 16px;
  margin-right: 12px;
  position: relative;
  overflow: hidden;
}

.nb-theme-toggle:hover {
  border-color: var(--nb-accent);
  color: var(--nb-accent-light);
  background: var(--nb-accent-glow);
}

.nb-theme-toggle .icon-sun,
.nb-theme-toggle .icon-moon {
  position: absolute;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nb-theme-toggle .icon-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

.nb-theme-toggle .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ================================================== */
/* LIGHT THEME
/* ================================================== */

body.light-scheme {
  --nb-dark: #f5f5fa;
  --nb-dark-2: #eeeef4;
  --nb-dark-3: #e4e4ee;
  --nb-dark-card: #ffffff;
  --nb-accent: #5b54e6;
  --nb-accent-light: #5b54e6;
  --nb-accent-glow: rgba(91, 84, 230, 0.1);
  --nb-gradient: linear-gradient(135deg, #5b54e6 0%, #3574e0 100%);
  --nb-gradient-subtle: linear-gradient(135deg, rgba(91, 84, 230, 0.06) 0%, rgba(53, 116, 224, 0.06) 100%);
  --nb-text: #2d2d3a;
  --nb-text-muted: #6b6b80;
  --nb-text-heading: #1a1a2e;
  --nb-border: rgba(0, 0, 0, 0.08);
  --nb-glass: rgba(255, 255, 255, 0.7);
  --nb-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--nb-dark) !important;
  color: var(--nb-text) !important;
}

/* Toggle icon states for light mode */
body.light-scheme .nb-theme-toggle {
  border-color: rgba(0, 0, 0, 0.12);
  color: #6b6b80;
}

body.light-scheme .nb-theme-toggle:hover {
  border-color: var(--nb-accent);
  color: var(--nb-accent);
  background: var(--nb-accent-glow);
}

body.light-scheme .nb-theme-toggle .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body.light-scheme .nb-theme-toggle .icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

/* ---- Light: Global ---- */

body.light-scheme {
  -webkit-font-smoothing: auto;
}

body.light-scheme html,
html:has(body.light-scheme) {
  background: #f5f5fa !important;
}

body.light-scheme h1, body.light-scheme h2, body.light-scheme h3,
body.light-scheme h4, body.light-scheme h5, body.light-scheme h6 {
  color: var(--nb-text-heading) !important;
  -webkit-text-fill-color: var(--nb-text-heading);
}

body.light-scheme p {
  color: var(--nb-text-muted);
}

/* ---- Light: Scrollbar ---- */
body.light-scheme ::-webkit-scrollbar-track {
  background: #f0f0f5;
}

body.light-scheme ::-webkit-scrollbar-thumb {
  background: #cbcbd5;
}

/* ---- Light: Preloader ---- */
body.light-scheme #de-loader {
  background: #f5f5fa !important;
}

/* ---- Light: Header ---- */

body.light-scheme header {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-scheme header.header-scroll,
body.light-scheme header.smaller {
  background: rgba(255, 255, 255, 0.95) !important;
}

body.light-scheme #logo a {
  background: #080813;
  padding: 6px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
}

body.light-scheme #mainmenu li a.menu-item {
  color: #6b6b80 !important;
}

body.light-scheme #mainmenu li a.menu-item:hover,
body.light-scheme #mainmenu li a.menu-item.active {
  color: #1a1a2e !important;
}

body.light-scheme #mainmenu > li.has-child:after {
  color: #6b6b80 !important;
}

body.light-scheme #mainmenu > li.has-child:hover:after {
  color: #1a1a2e !important;
}

/* ---- Light: Dropdown ---- */

body.light-scheme #mainmenu > li > ul:not(.mega) {
  background: rgba(255, 255, 255, 0.97) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
}

body.light-scheme #mainmenu > li > ul:not(.mega)::before {
  background: rgba(255, 255, 255, 0.97);
  border-left-color: rgba(0, 0, 0, 0.08);
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-scheme #mainmenu > li > ul:not(.mega) li a {
  color: #6b6b80 !important;
}

body.light-scheme #mainmenu > li > ul:not(.mega) li a:hover {
  color: #1a1a2e !important;
  background: rgba(91, 84, 230, 0.06) !important;
}

body.light-scheme #mainmenu > li > ul:not(.mega) li a i {
  color: var(--nb-accent);
}

/* ---- Light: Language Button ---- */

body.light-scheme .custom-no-hover {
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #4a4a5a !important;
}

body.light-scheme .custom-no-hover:hover {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

body.light-scheme .custom-no-hover span {
  color: #4a4a5a !important;
}

/* ---- Light: Buttons ---- */

body.light-scheme .btn-main,
body.light-scheme a.btn-main {
  box-shadow: 0 4px 15px rgba(91, 84, 230, 0.2);
}

body.light-scheme .btn-main:hover,
body.light-scheme a.btn-main:hover {
  box-shadow: 0 8px 25px rgba(91, 84, 230, 0.3) !important;
}

body.light-scheme .btn-main.btn-line,
body.light-scheme a.btn-main.btn-line {
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #2d2d3a !important;
}

body.light-scheme .btn-main.btn-line:hover,
body.light-scheme a.btn-main.btn-line:hover {
  border-color: var(--nb-accent) !important;
  background: var(--nb-accent-glow) !important;
  color: var(--nb-accent) !important;
}

body.light-scheme .nb-btn-secondary {
  border-color: rgba(0, 0, 0, 0.12);
  color: #2d2d3a !important;
}

body.light-scheme .nb-btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
  color: #1a1a2e !important;
}

/* ---- Light: Hero ---- */

body.light-scheme .nb-hero {
  background: var(--nb-dark);
}

body.light-scheme .nb-hero::before {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(91, 84, 230, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(53, 116, 224, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(91, 84, 230, 0.04) 0%, transparent 50%);
}

body.light-scheme .nb-hero h1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #3a3a5e 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

body.light-scheme .nb-hero h1 .nb-gradient-text {
  background: var(--nb-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

body.light-scheme .nb-grid-bg {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

body.light-scheme .nb-orb-1 {
  background: rgba(91, 84, 230, 0.08);
}

body.light-scheme .nb-orb-2 {
  background: rgba(53, 116, 224, 0.06);
}

body.light-scheme .nb-badge {
  background: rgba(91, 84, 230, 0.08);
  border-color: rgba(91, 84, 230, 0.15);
}

/* ---- Light: Trust bar ---- */

body.light-scheme .nb-trust-bar {
  border-top-color: rgba(0, 0, 0, 0.08);
}

/* ---- Light: Cards ---- */

body.light-scheme .nb-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-scheme .nb-card:hover {
  border-color: rgba(91, 84, 230, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

body.light-scheme .nb-card-icon {
  background: rgba(91, 84, 230, 0.08);
}

/* ---- Light: Product Cards ---- */

body.light-scheme .nb-product-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-scheme .nb-product-card:hover {
  border-color: rgba(91, 84, 230, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.light-scheme .nb-product-card .nb-btn-product {
  border-color: rgba(0, 0, 0, 0.1);
  color: #2d2d3a;
}

body.light-scheme .nb-product-card .nb-btn-product:hover {
  color: #fff;
}

/* ---- Light: Stats ---- */

body.light-scheme .nb-stat-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ---- Light: Reviews ---- */

body.light-scheme .nb-review-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-scheme .nb-review-card p {
  color: #4a4a5a;
}

body.light-scheme .de_testi.type-2 blockquote {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-scheme .de_testi.type-2 blockquote p {
  color: #4a4a5a !important;
}

/* ---- Light: CTA ---- */

body.light-scheme .nb-cta {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-scheme .nb-cta::before {
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(91, 84, 230, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(53, 116, 224, 0.04) 0%, transparent 50%);
}

/* ---- Light: Subheader ---- */

body.light-scheme #subheader {
  background: var(--nb-dark) !important;
}

/* ---- Light: Footer ---- */

body.light-scheme footer {
  background: #eeeef4 !important;
  border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-scheme footer h5 {
  color: #1a1a2e !important;
}

body.light-scheme footer .widget ul li a {
  color: #6b6b80 !important;
}

body.light-scheme footer .widget ul li a:hover {
  color: #1a1a2e !important;
}

body.light-scheme .subfooter {
  border-top-color: rgba(0, 0, 0, 0.06) !important;
  color: #6b6b80 !important;
}

body.light-scheme .subfooter a {
  color: #6b6b80 !important;
}

body.light-scheme .subfooter a:hover {
  color: #1a1a2e !important;
}

body.light-scheme .social-icons a {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #6b6b80 !important;
}

body.light-scheme .social-icons a:hover {
  background: var(--nb-accent-glow) !important;
  border-color: rgba(91, 84, 230, 0.2) !important;
  color: var(--nb-accent) !important;
}

/* ---- Light: Forms ---- */

body.light-scheme .form-control {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #2d2d3a !important;
}

body.light-scheme .form-control::placeholder {
  color: #9999aa;
}

body.light-scheme .form-control:focus {
  border-color: var(--nb-accent) !important;
  box-shadow: 0 0 0 3px rgba(91, 84, 230, 0.1) !important;
}

body.light-scheme .d-label {
  color: #2d2d3a !important;
}

/* ---- Light: Newsletter ---- */

body.light-scheme #form_subscribe .form-control {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* ---- Light: Timeline ---- */

body.light-scheme .nb-timeline::before {
  background: linear-gradient(to bottom, var(--nb-accent), rgba(91, 84, 230, 0.1));
}

/* ---- Light: Glass panels ---- */

body.light-scheme .nb-glass {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.06);
}

/* ---- Light: Year card ---- */

body.light-scheme .year-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ---- Light: Swiper / Slider ---- */

body.light-scheme .swiper-slide {
  background: var(--nb-dark) !important;
}

body.light-scheme .sw-overlay {
  background: rgba(245, 245, 250, 0.8) !important;
}

/* ---- Light: Divider ---- */

body.light-scheme .nb-divider {
  background: rgba(0, 0, 0, 0.08);
}

/* ---- Light: Section label ---- */

body.light-scheme .nb-section-label {
  color: var(--nb-accent);
}

/* ---- Light: Float text ---- */

body.light-scheme .float-text {
  color: #6b6b80;
}

body.light-scheme .float-text span a {
  color: #6b6b80 !important;
}

/* ---- Light: Scrollbar v ---- */

body.light-scheme .scrollbar-v {
  background: rgba(0, 0, 0, 0.06);
}

/* ---- Light: Mobile menu ---- */

@media (max-width: 992px) {
  body.light-scheme #mainmenu > li > ul:not(.mega) {
    background: transparent !important;
  }

  body.light-scheme #mainmenu > li > ul:not(.mega) li a {
    color: #6b6b80 !important;
    border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  }

  body.light-scheme #mainmenu > li > ul:not(.mega) li a:hover {
    color: #1a1a2e !important;
  }

  body.light-scheme #mainmenu li {
    border-bottom-color: rgba(0, 0, 0, 0.06) !important;
  }

  body.light-scheme #mainmenu li a.menu-item {
    color: #2d2d3a !important;
  }
}

/* ---- Light: Padding section override ---- */

body.light-scheme .padding60 {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

/* ---- Light: Product detail hero image shadow ---- */

body.light-scheme .nb-product-card .nb-product-image img {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
