/* ============================================
   SKILLORA CLOUD — Ateex-identical design
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #d97706;
  --purple-light: #f59e0b;
  --purple-dark: #b45309;
  --green: #b8102f;
  --blue: #3b82f6;
  --bg: #09090b;
  --bg-card: #111113;
  --bg-card2: #18181b;
  --border: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --font: 'Inter', sans-serif;
  /* Brand yellow palette */
  --yellow: #f59e0b;
  --yellow-light: #fbbf24;
  --yellow-dark: #d97706;
  --yellow-glow: rgba(245, 158, 11, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: var(--font);
}

img {
  display: block;
}

svg {
  display: block;
  flex-shrink: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   DYNAMIC ISLAND NAVBAR — ULTRA TRANSPARENT GLASS
   ============================================ */

/* Wrapper: fixed at top center */
.di-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: 0 16px;
}

/* The pill itself — Ultra Transparent Liquid Glass */
.di-nav {
  pointer-events: all;
  position: relative;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px 7px 16px;
  border-radius: 100px;
  width: max-content;
  max-width: min(1200px, calc(100vw - 24px));
  margin: 0 auto;

  /* Ultra transparent glass */
  background: rgba(6, 6, 8, 0.22);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 35px rgba(227, 23, 78, 0.05);

  /* Entrance animation */
  animation: di-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.3s ease;
}

@keyframes di-enter {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Glow on hover / when dropdown open */
.di-nav:hover,
.di-nav.dd-open {
  background: rgba(8, 8, 12, 0.42);
  box-shadow:
    0 14px 45px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(227, 23, 78, 0.12),
    0 0 0 1px rgba(227, 23, 78, 0.2);
  border-color: rgba(227, 23, 78, 0.3);
}

/* Ripple pulse animation when scrolled */
.di-nav.scrolled-glow {
  background: rgba(6, 6, 10, 0.65);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-color: rgba(227, 23, 78, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(227, 23, 78, 0.12);
}

/* ---- Logo ---- */
.di-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 50px;
  transition: opacity 0.2s;
}

.di-logo:hover {
  opacity: 0.9;
}

.di-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.di-logo-img-wrap {
  background: transparent !important;
  border-radius: 8px;
  overflow: hidden;
  padding: 0 !important;
  box-shadow: none !important;
}

.di-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.di-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.di-accent {
  color: #E3174E;
}

.di-grad {
  background: linear-gradient(135deg, #E3174E 0%, #ff4d79 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Separator ---- */
.di-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin: 0 2px;
}

/* ---- Nav links row ---- */
.di-links {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.di-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.di-link:hover,
.di-link.active,
.di-link.active-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.di-link.active,
.di-link.active-link {
  color: #E3174E;
  background: rgba(227, 23, 78, 0.08);
  border: 1px solid rgba(227, 23, 78, 0.2);
}

.di-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.di-link:hover .di-icon {
  opacity: 1;
}

.di-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.55;
}

.di-has-dropdown.active-link .di-chevron,
.di-dropdown-wrap:hover .di-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ---- Dropdown wrappers ---- */
.di-dropdown-wrap {
  position: relative;
}

/* Menus */
.di-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  z-index: 200;

  background: rgba(12, 12, 16, 0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(227, 23, 78, 0.08);

  min-width: 300px;
  padding: 6px;
  transition:
    opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.22s;

  overflow: hidden;
}

.di-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 23, 78, 0.4), transparent);
}

.di-dd-sm {
  min-width: 250px;
}

/* Show on hover or when clicked/open */
.di-dropdown-wrap:hover .di-dropdown,
.di-dropdown-wrap.dd-open .di-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.di-dropdown-wrap.dd-open .di-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.di-dd-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.di-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s;
  cursor: pointer;
}

.di-dd-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.di-dd-item:hover .di-dd-icon-wrap {
  transform: scale(1.06);
}

.di-dd-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.di-dd-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.di-dd-item div p {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 1px;
}

.di-dd-item div span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
}

/* ---- Actions ---- */
.di-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.di-currency-wrap {
  position: relative;
}

.di-currency {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
  white-space: nowrap;
}

.di-currency:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(227, 23, 78, 0.3);
}

.di-currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(12, 12, 16, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 4px;
  min-width: 180px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}

.di-currency-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.di-curr-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.di-curr-option:hover,
.di-curr-option.active {
  background: rgba(227, 23, 78, 0.12);
  color: #ffffff;
}

.di-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6.5px 15px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #E3174E;
  border-radius: 50px;
  border: 1px solid rgba(227, 23, 78, 0.6);
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(227, 23, 78, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.di-login:hover {
  background: #b8102f;
  border-color: rgba(227, 23, 78, 0.8);
  box-shadow: 0 4px 20px rgba(227, 23, 78, 0.55);
  transform: translateY(-1px);
}

.di-login:active {
  transform: translateY(0);
}

/* ---- Hamburger (mobile) ---- */
.di-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px;
  cursor: pointer;
  margin-left: auto;
}

.di-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 12px;
  right: 12px;
  background: rgba(12, 12, 16, 0.98);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  z-index: 100002;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(227, 23, 78, 0.15);
  pointer-events: auto;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.mobile-link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.mobile-link:hover,
.mobile-link:active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.login-mobile {
  margin-top: 10px;
  background: #E3174E !important;
  color: white !important;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(227, 23, 78, 0.4);
}

.login-mobile:hover,
.login-mobile:active {
  background: #b8102f !important;
}

/* Media queries for navbar */
@media (max-width: 1024px) {
  .di-links,
  .di-sep {
    display: none !important;
  }
  .di-hamburger {
    display: flex !important;
  }
  .di-nav {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
  }
}

/* ============================================
   HERO SLIDER
   ============================================ */

/* ---- Section-level scroll animations ---- */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownIn {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
  }

  50% {
    box-shadow: 0 0 50px rgba(217, 119, 6, 0.7), 0 0 100px rgba(217, 119, 6, 0.2);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes gradShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmerSlide {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(200%);
  }
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-80px) translateX(30px) scale(1.2);
  }
}

@keyframes counterUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(217, 119, 6, 0.2);
  }

  50% {
    border-color: rgba(217, 119, 6, 0.6);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes hoverBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroImgKen {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

/* ==========================================================================
   CRAZYNODE-STYLE PAGE LOADER ANIMATION
   ========================================================================== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #060606;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-loader.loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(1.04) !important;
  pointer-events: none !important;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderLogoIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.loader-glow {
  position: absolute;
  inset: -24px;
  border-radius: 32px;
  background: rgba(227, 23, 78, 0.18);
  filter: blur(24px);
  animation: loaderPulseGlow 2s ease-in-out infinite;
  z-index: 0;
}

@keyframes loaderPulseGlow {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

.loader-logo {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 20px;
}

.loader-brand {
  margin-top: 24px;
  font-size: 19px;
  font-weight: 800;
  background: linear-gradient(135deg, #E3174E 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderTextIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.loader-bar-wrap {
  margin-top: 18px;
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  animation: loaderTextIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.loader-bar {
  width: 0;
  height: 100%;
  background: #E3174E;
  border-radius: 9999px;
  animation: loaderBarFill 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

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

@keyframes loaderBarFill {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ==========================================================================
   HERO SECTION — EXACT CRAZYNODE REPLICA
   ========================================================================== */
.cn-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060606;
  padding-top: 72px; /* space for fixed navbar */
}

/* ---- Background layer ---- */
.cn-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  background: #060606;
  will-change: transform;
}

/* Dot grid: CrazyNode uses 50px grid, rgba brand/0.08 */
.cn-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(227, 23, 78, 0.08) 1px, transparent 0);
  background-size: 50px 50px;
}

/* Ambient glow orbs */
.cn-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cn-orb-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(227, 23, 78, 0.09) 0%, transparent 70%);
  animation: orbPulse 8s ease-in-out infinite alternate;
}

.cn-orb-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(227, 23, 78, 0.14) 0%, transparent 70%);
}

.cn-orb-left {
  top: 25%;
  left: 20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(227, 23, 78, 0.16) 0%, transparent 70%);
  opacity: 0.35;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.cn-orb-right {
  bottom: 25%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 23, 78, 0.12) 0%, transparent 70%);
  opacity: 0.25;
  animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes orbPulse {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes orbFloat {
  0% { transform: translateY(0) scale(0.96); }
  100% { transform: translateY(-30px) scale(1.05); }
}

/* Interactive Cyber Particle Constellation Canvas */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

/* Futuristic Holographic Cyber Scanner Grid Wave */
.hero-cyber-scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(227, 23, 78, 0.2) 20%, #E3174E 50%, rgba(227, 23, 78, 0.2) 80%, transparent 100%);
  box-shadow: 0 0 24px 4px rgba(227, 23, 78, 0.7), 0 0 60px 10px rgba(227, 23, 78, 0.3);
  z-index: 2;
  pointer-events: none;
  animation: cyberScanSweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes cyberScanSweep {
  0% {
    top: -5%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 105%;
    opacity: 0;
  }
}

/* Background slide images with rounded-3xl container */
.cn-bg-images-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cn-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cn-bg-slide.active {
  opacity: 0.25;
  transform: scale(1);
}

.cn-bg-slide img,
.cn-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cn-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #060606 0%, rgba(6, 6, 6, 0.4) 50%, transparent 100%);
}

/* Bottom fade */
.cn-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, #060606, transparent);
  z-index: 3;
  pointer-events: none;
}

/* ---- Content inner ---- */
.cn-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  will-change: transform, opacity;
}

.cn-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Dynamic Hero Spotlight Torch Beam */
.hero-torch-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 23, 78, 0.15) 0%, rgba(227, 23, 78, 0.05) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
  will-change: transform, left, top;
}

/* Badge (CrazyNode Glass Pill) */
.cn-badge-wrap {
  animation: cnFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.cn-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(227, 23, 78, 0.08);
  border: 1px solid rgba(227, 23, 78, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 24px rgba(227, 23, 78, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cn-badge:hover {
  background: rgba(227, 23, 78, 0.15);
  border-color: rgba(227, 23, 78, 0.55);
  box-shadow: 0 0 35px rgba(227, 23, 78, 0.35);
  transform: translateY(-2px) scale(1.02);
}

/* Live audio-wave equalizer */
.hero-eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
  margin-right: 2px;
}

.eq-bar {
  width: 2px;
  height: 100%;
  background: #E3174E;
  border-radius: 1px;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1) { animation-delay: 0.1s; height: 40%; }
.eq-bar:nth-child(2) { animation-delay: 0.35s; height: 90%; }
.eq-bar:nth-child(3) { animation-delay: 0.18s; height: 60%; }
.eq-bar:nth-child(4) { animation-delay: 0.45s; height: 100%; }

@keyframes eqBounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Live latency tag */
.hero-live-latency-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  font-family: monospace;
}

.hero-live-ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pingPulse 1.5s ease-in-out infinite;
}

@keyframes pingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.cn-badge svg {
  color: #E3174E;
  filter: drop-shadow(0 0 6px rgba(227, 23, 78, 0.8));
}

/* Title slot */
.cn-title-slot {
  margin-top: 28px;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cnTitleBlurIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.cn-h1 {
  font-size: clamp(42px, 6.8vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.12), 0 0 80px rgba(227, 23, 78, 0.25);
  transition: transform 0.3s ease;
}

/* Subtitle slot with interactive light shimmer */
.cn-sub-slot {
  margin-top: 8px;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  animation: cnFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.cn-sub {
  font-size: clamp(15.5px, 1.7vw, 18.5px);
  line-height: 1.65;
  color: #9ca3af;
  margin: 0;
  transition: color 0.3s ease;
}

.cn-sub:hover {
  color: #f3f4f6;
}

/* Price row */
.cn-price-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: cnFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.cn-price-from {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
}

.cn-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.cn-price {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: #E3174E;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(227, 23, 78, 0.45);
}

.cn-price-mo {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

/* CTA buttons */
.cn-cta-wrap {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: cnFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both;
}

.cn-primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #E3174E;
  color: #ffffff !important;
  font-size: 16.5px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 28px rgba(227, 23, 78, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  will-change: transform, box-shadow;
}

.cn-primary-btn:hover {
  background: #b8102f;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 45px rgba(227, 23, 78, 0.65), 0 0 35px rgba(227, 23, 78, 0.4);
}

/* Rotating Neon Laser Border */
.btn-laser-border {
  position: absolute;
  inset: -150%;
  background: conic-gradient(from 0deg, transparent 0deg, #ffffff 40deg, #ff4d79 80deg, transparent 120deg);
  animation: laserSpin 3.5s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cn-primary-btn:hover .btn-laser-border {
  opacity: 0.6;
}

@keyframes laserSpin {
  to { transform: rotate(360deg); }
}

.cn-primary-btn svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.cn-primary-btn:hover svg {
  transform: translateX(6px) scale(1.15);
}

.cn-primary-glow {
  position: absolute;
  inset: -4px;
  background: rgba(227, 23, 78, 0.35);
  filter: blur(18px);
  border-radius: 18px;
  opacity: 0.8;
  z-index: -1;
  transition: opacity 0.3s ease, filter 0.3s ease;
  pointer-events: none;
}

.cn-primary-btn:hover .cn-primary-glow {
  opacity: 1;
  filter: blur(28px);
}

.cn-outline-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cn-outline-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 23, 78, 0.55);
  color: #E3174E;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(227, 23, 78, 0.2);
}

/* Slide indicator pills */
.cn-pills {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: cnFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.64s both;
}

.cn-pill {
  height: 6px;
  width: 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cn-pill:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scaleY(1.4);
}

.cn-pill.active {
  width: 40px;
  background: #E3174E;
  box-shadow: 0 0 18px rgba(227, 23, 78, 0.85);
}

/* 6-card feature grid (CrazyNode Premium Mini Cards) */
.cn-feat-grid {
  margin-top: 64px;
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cn-feat {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: cnFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) calc(0.72s + var(--i, 0) * 0.08s) both;
  overflow: hidden;
}

.cn-feat::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 23, 78, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cn-feat:hover::after {
  opacity: 1;
}

.cn-feat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(227, 23, 78, 0.45);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6), 0 0 25px rgba(227, 23, 78, 0.2);
}

.cn-feat svg {
  color: #E3174E;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.cn-feat:hover svg {
  transform: scale(1.25) rotate(4deg);
  filter: drop-shadow(0 0 10px rgba(227, 23, 78, 0.8));
}

.cn-feat span {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.cn-feat:hover span {
  color: #ffffff;
}

/* ---- Animation Keyframes ---- */
@keyframes cnFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cnTitleBlurIn {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(28px) scale(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes cnTitleBlurOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-20px) scale(0.96);
  }
}

@keyframes cnSubIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes cnSubOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(-10px);
  }
}

@keyframes cnTitle3DFilterIn {
  0% {
    opacity: 0;
    filter: blur(18px) brightness(2.2) drop-shadow(0 0 40px #E3174E);
    transform: perspective(800px) rotateX(42deg) translateY(42px) scale(0.92);
    letter-spacing: 0.08em;
  }
  60% {
    filter: blur(2px) brightness(1.3) drop-shadow(0 0 25px rgba(227, 23, 78, 0.8));
    transform: perspective(800px) rotateX(-8deg) translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1) drop-shadow(0 0 35px rgba(227, 23, 78, 0.3));
    transform: perspective(800px) rotateX(0deg) translateY(0) scale(1);
    letter-spacing: -0.035em;
  }
}

@keyframes cnTitle3DFilterOut {
  0% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: perspective(800px) rotateX(0deg) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(14px) brightness(1.8) drop-shadow(0 0 25px #E3174E);
    transform: perspective(800px) rotateX(-35deg) translateY(-30px) scale(0.94);
  }
}

@keyframes cnSubKineticIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(22px) scale(0.96);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes cnPriceSuperPop {
  0% {
    opacity: 0;
    filter: blur(8px) brightness(2.5);
    transform: scale(0.45) translateY(24px) rotate(-6deg);
  }
  60% {
    opacity: 1;
    filter: blur(0) brightness(1.4);
    transform: scale(1.22) translateY(-4px) rotate(2deg);
    text-shadow: 0 0 45px #E3174E, 0 0 80px rgba(227, 23, 78, 0.9);
  }
  80% {
    transform: scale(0.96) translateY(1px) rotate(0deg);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1) translateY(0) rotate(0deg);
    text-shadow: 0 0 25px rgba(227, 23, 78, 0.5);
  }
}

@keyframes cnBadgeNeonBurst {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(227, 23, 78, 0.1);
  }
  40% {
    transform: scale(1.1) rotate(-1.5deg);
    box-shadow: 0 0 40px 6px rgba(227, 23, 78, 0.6), 0 0 80px rgba(227, 23, 78, 0.35);
    border-color: #E3174E;
    background: rgba(227, 23, 78, 0.22);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 20px rgba(227, 23, 78, 0.1);
    background: rgba(227, 23, 78, 0.06);
  }
}

/* Dynamic slide transition classes */
.cn-h1.anim-out {
  animation: cnTitle3DFilterOut 0.24s cubic-bezier(0.4, 0, 1, 1) forwards !important;
}
.cn-h1.anim-in {
  animation: cnTitle3DFilterIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.cn-sub.anim-out {
  animation: cnSubOut 0.18s cubic-bezier(0.4, 0, 1, 1) forwards !important;
}
.cn-sub.anim-in {
  animation: cnSubKineticIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both !important;
}

.cn-price.anim-out {
  animation: cnPriceOut 0.18s cubic-bezier(0.4, 0, 1, 1) forwards !important;
}
.cn-price.anim-in {
  animation: cnPriceSuperPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both !important;
}

.cn-badge.anim-pulse {
  animation: cnBadgeNeonBurst 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both !important;
}

/* ---- CRAZYNODE FULL-PAGE SCROLL REVEAL UTILITY ---- */
.cn-reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.cn-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 960px) {
  .cn-feat-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .cn-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cn-cta-wrap {
    flex-direction: column;
    width: 100%;
  }
  .cn-primary-btn,
  .cn-outline-btn {
    width: 100%;
    justify-content: center;
  }
}


/* Hero stats row */

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-dot.green {
  background: #b8102f;
  box-shadow: 0 0 6px #b8102f;
}

.stat-dot.blue {
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
}

.stat-dot.purple {
  background: #fbbf24;
  box-shadow: 0 0 6px #fbbf24;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  padding: 96px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-2px);
}

.featured-card {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, #111113 0%, #0f1a15 100%);
}

.featured-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

/* Decorative stars on featured card */
.star {
  position: absolute;
  color: #b8102f;
  font-size: 12px;
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
  top: 16px;
  left: 20px;
}

.star-2 {
  top: 10px;
  right: 40px;
  animation-delay: 0.4s;
  font-size: 10px;
}

.star-3 {
  top: 40px;
  right: 16px;
  animation-delay: 0.8s;
}

.star-4 {
  bottom: 30px;
  left: 16px;
  animation-delay: 1.2s;
}

.star-5 {
  bottom: 16px;
  right: 20px;
  animation-delay: 1.6s;
  font-size: 10px;
}

.star-6 {
  bottom: 10px;
  left: 48px;
  animation-delay: 2s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.3);
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   GAMES
   ============================================ */
.games-section {
  padding: 96px 0;
  background: var(--bg);
}

.games-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.game-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 260px;
  transition: border-color 0.2s;
}

.game-search-wrap:focus-within {
  border-color: rgba(217, 119, 6, 0.4);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.game-search {
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: white;
  font-family: var(--font);
  width: 100%;
}

.game-search::placeholder {
  color: var(--text-dim);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(217, 119, 6, 0.15);
}

.game-card-bg-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  transition: opacity 0.3s ease, transform 0.4s ease;
  background-size: cover;
  background-position: center;
}

.game-card:hover .game-card-bg-art {
  opacity: 0.55;
  transform: scale(1.05);
}

.game-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.game-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.game-price-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-price-tag.green { color: #4ade80; border-color: rgba(227, 23, 78, 0.3); }
.game-price-tag.purple { color: #c084fc; border-color: rgba(168, 85, 247, 0.3); }
.game-price-tag.cyan { color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); }
.game-price-tag.orange { color: #fb923c; border-color: rgba(251, 146, 60, 0.3); }
.game-price-tag.amber { color: #fcd34d; border-color: rgba(252, 211, 77, 0.3); }

.game-card-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.game-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3px;
}

.game-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.view-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  gap: 8px;
}

.view-more-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.view-more-card:hover .view-more-btn {
  background: var(--purple);
}

.view-more-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}

.view-more-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.view-more-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   CONTROL PANEL
   ============================================ */
.panel-section {
  padding: 96px 0;
  background: var(--bg);
}

.panel-tabs {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  max-width: 660px;
  margin: 0 auto 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.panel-tab {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.panel-tab.active {
  background: var(--purple);
  color: white;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.35);
}

.panel-tab:not(.active):hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.panel-content {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
}

.panel-features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.panel-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: none;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s;
}

.panel-feature-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.panel-feature-item.active {
  color: white;
  background: var(--bg-card);
  border-color: rgba(217, 119, 6, 0.3);
}

.pf-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-icon svg {
  width: 18px;
  height: 18px;
}

.panel-feature-item.active .pf-icon {
  background: rgba(217, 119, 6, 0.2);
  color: var(--purple-light);
}

.pf-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.2s;
}

.panel-feature-item:hover .pf-arrow,
.panel-feature-item.active .pf-arrow {
  opacity: 1;
}

/* Panel preview */
.panel-preview {
  background: #141417;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1c1c20;
  border-bottom: 1px solid var(--border);
}

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

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

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #28c840;
}

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.panel-preview-content {
  position: relative;
  min-height: 340px;
}

.preview-panel {
  display: none;
  flex-direction: column;
}

.preview-panel.active {
  display: flex;
}

.panel-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 12px 12px;
  display: block;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: #18181c;
}

.preview-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.preview-controls {
  display: flex;
  gap: 6px;
}

.ctrl-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ctrl-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.ctrl-btn.red-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.preview-desc-overlay {
  padding: 18px;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 10px;
  margin: 14px;
  margin-bottom: 8px;
}

.preview-desc-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.preview-desc-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* Console view */
.preview-console {
  padding: 14px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  background: #0d0d10;
}

.console-line {
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.65);
}

.c-info {
  color: #3b82f6;
  margin-right: 6px;
}

.c-warn {
  color: #f59e0b;
  margin-right: 6px;
}

.c-prompt {
  color: var(--purple-light);
  margin-right: 6px;
}

.c-cursor {
  display: inline-block;
  color: var(--purple-light);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.console-input-row {
  padding-top: 6px;
}

/* Mods/Plugins/Players preview */
.preview-mods {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #0d0d10;
}

.mod-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.mod-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mod-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #2d2d35;
  flex-shrink: 0;
}

.mod-info {
  flex: 1;
}

.mod-info p {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.mod-info span {
  font-size: 11px;
  color: var(--text-dim);
}

.mod-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  background: var(--purple);
  color: white;
  border: none;
  transition: all 0.2s;
  flex-shrink: 0;
}

.mod-btn:hover {
  background: var(--purple-dark);
}

.mod-btn.installed {
  background: rgba(16, 185, 129, 0.15);
  color: #b8102f;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mod-btn.installed:hover {
  background: rgba(16, 185, 129, 0.25);
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-section {
  padding: 96px 0;
  background: var(--bg);
}

.locations-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.5);
}

.divider-icon svg {
  width: 22px;
  height: 22px;
}

.locations-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: white;
}

.locations-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.map-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}

.map-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #b8102f;
  border-radius: 50%;
  box-shadow: 0 0 6px #b8102f;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    box-shadow: 0 0 4px #b8102f;
  }

  50% {
    box-shadow: 0 0 12px #b8102f;
  }
}

.world-map {
  width: 100%;
}

.map-svg {
  width: 100%;
  height: auto;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.location-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
}

.location-flag {
  font-size: 28px;
  flex-shrink: 0;
}

.location-info {
  flex: 1;
}

.location-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.location-region {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-left: 6px;
}

.location-cities {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-dot {
  width: 6px;
  height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
}

.wifi-icon {
  flex-shrink: 0;
}

.wifi-icon svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 96px 0;
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.faq-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.faq-tab.active {
  background: var(--purple);
  color: white;
}

.faq-tab:not(.active):hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:has(.faq-answer.open) {
  border-color: rgba(217, 119, 6, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-card2);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 18px;
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Need help card */
.need-help-card {
  background: linear-gradient(135deg, #1a1235 0%, #0f1a1a 100%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 80px;
}

.help-icon {
  width: 56px;
  height: 56px;
  background: rgba(217, 119, 6, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.help-icon svg {
  width: 26px;
  height: 26px;
  color: var(--purple-light);
}

.need-help-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.need-help-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #5865f2;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.discord-btn svg {
  width: 18px;
  height: 18px;
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070709;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 100;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* ============================================
   WHY WE EXIST
   ============================================ */
.why-section {
  padding: 80px 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.why-mission p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: auto;
}

.why-status-link {
  color: var(--purple-light);
  font-size: 12px;
  margin-left: 4px;
}

.why-quote {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(79, 70, 229, 0.04));
  border-color: rgba(217, 119, 6, 0.2);
  position: relative;
}

.quote-mark {
  font-size: 64px;
  line-height: 1;
  color: rgba(217, 119, 6, 0.25);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 20px;
}

blockquote {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  font-style: italic;
  margin-top: 30px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.quote-name {
  font-size: 13.5px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.quote-role {
  font-size: 12px;
  color: var(--text-muted);
}

.nonneg-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nonneg-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nonneg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.5);
}

.nonneg-title {
  font-size: 13.5px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.nonneg-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-section {
  padding: 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--bg-card);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 32px 16px;
}

.stat-icon {
  color: var(--text-dim);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-value {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ============================================
   SMART PLAN CALCULATOR
   ============================================ */
.calc-section {
  padding: 96px 0;
  background: var(--bg);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.calc-inputs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-group-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.preset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.preset-btn {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.preset-btn.active,
.preset-btn:hover {
  color: var(--purple-light);
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.35);
}

.calc-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-select {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23888' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
}

.calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(217, 119, 6, 0.4);
}

.range-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
  min-width: 24px;
  text-align: right;
}

.calc-accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
}

.calc-accordion:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.acc-chevron {
  transition: transform 0.25s;
}

.calc-accordion.open .acc-chevron {
  transform: rotate(180deg);
}

.calc-acc-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.plugin-row {
  display: grid;
  grid-template-columns: 100px 1fr 32px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Result panel */
.calc-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calc-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.calc-ram-display {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 14px;
}

.calc-ram-display strong {
  color: white;
}

.calc-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 70px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.calc-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.calc-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.5s ease;
}

.calc-bar-fill.yellow {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.calc-bar-fill.green {
  background: linear-gradient(90deg, #b8102f, #34d399);
}

.calc-bar-fill.red {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.bar-label {
  font-size: 11px;
  font-weight: 600;
}

.bar-label.yellow {
  color: #fbbf24;
}

.bar-label.green {
  color: #34d399;
}

.bar-label.red {
  color: #f87171;
}

.calc-tier-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-tier-label {
  font-size: 12px;
  color: var(--text-muted);
}

.calc-tiers {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}

.calc-tier {
  flex: 1;
  padding: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.calc-tier.active {
  background: var(--purple);
  color: white;
}

.calc-tier:not(.active):hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.calc-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.calc-plan {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  position: relative;
}

.calc-plan.recommended {
  border-color: rgba(217, 119, 6, 0.4);
  background: rgba(217, 119, 6, 0.07);
}

.plan-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--purple-light);
  background: rgba(217, 119, 6, 0.15);
  border-radius: 4px;
  padding: 2px 7px;
}

.plan-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.plan-tier-badge {
  font-size: 10px;
  color: var(--text-dim);
}

.plan-price {
  font-size: 22px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
}

.plan-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-ram {
  font-size: 11px;
  color: var(--text-muted);
}

.plan-btn {
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.plan-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.plan-btn-primary {
  background: linear-gradient(135deg, #d97706, #92400e);
  border-color: transparent;
  color: white;
}

.plan-btn-primary:hover {
  box-shadow: 0 2px 12px rgba(217, 119, 6, 0.4);
  transform: translateY(-1px);
}

/* ============================================
   PING TEST
   ============================================ */
.ping-section {
  padding: 96px 0;
  background: var(--bg);
}

.ping-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ping-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #b8102f;
  margin-bottom: 20px;
}

.ping-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ping-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}

.ping-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #d97706, #92400e);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.ping-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.5);
}

.ping-btn:active {
  transform: translateY(0);
}

.ping-btn.testing {
  animation: ping-pulse 1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ping-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
  }

  50% {
    box-shadow: 0 4px 40px rgba(217, 119, 6, 0.7);
  }
}

.ping-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.ping-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.ping-panel-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.ping-panel-badge.testing {
  background: rgba(16, 185, 129, 0.15);
  color: #b8102f;
  border-color: rgba(16, 185, 129, 0.3);
}

.ping-panel-badge.done {
  background: rgba(217, 119, 6, 0.15);
  color: var(--purple-light);
  border-color: rgba(217, 119, 6, 0.3);
}

.ping-locations {
  display: flex;
  flex-direction: column;
}

.ping-loc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.ping-loc:last-child {
  border-bottom: none;
}

.ping-loc:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ping-loc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ping-flag {
  font-size: 20px;
}

.ping-loc-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.best-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(217, 119, 6, 0.2);
  color: var(--purple-light);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 6px;
}

.ping-ms {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  min-width: 50px;
  text-align: right;
  transition: color 0.3s;
}

.ping-ms.fast {
  color: #b8102f;
}

.ping-ms.ok {
  color: #fbbf24;
}

.ping-ms.slow {
  color: #ef4444;
}

.ping-ms.loading {
  color: var(--purple-light);
  animation: blink 0.6s step-end infinite;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  padding: 96px 0;
  background: var(--bg);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.reviews-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.reviews-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.reviews-right {
  display: flex;
  justify-content: flex-end;
}

.trustpilot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
}

.tp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.tp-brand {
  font-size: 15px;
  font-weight: 700;
  color: white;
  flex: 1;
}

.tp-ext {
  font-size: 13px;
  color: var(--text-dim);
}

.tp-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-score {
  font-size: 28px;
  font-weight: 900;
  color: white;
}

.tp-stars {
  display: flex;
  gap: 1px;
}

.tp-star {
  font-size: 13px;
  color: #00b67a;
}

.tp-star.half {
  opacity: 0.5;
}

.tp-label {
  font-size: 13px;
  font-weight: 700;
  color: #00b67a;
}

.tp-count {
  font-size: 12px;
  color: var(--text-dim);
}

.tp-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tp-bar-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
}

.tp-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.tp-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.tp-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-top: 4px;
}

.tp-cat {
  font-size: 12px;
  color: var(--text-dim);
}

/* Review cards row */
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.review-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
  transform: translateY(-2px);
}

.review-stars {
  color: #00b67a;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.review-date {
  font-size: 11px;
  color: var(--text-dim);
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, #07070a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img-box {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.footer-logo-accent {
  background: linear-gradient(90deg, #fbbf24 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #b8102f;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.22s;
}

.social-link:hover {
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.3);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-brand-inline {
  color: white;
  font-weight: 600;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-made {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-toc-link {
  font-size: 12.5px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-toc-link:hover {
  color: white;
}

/* ---- Animated features on section level ---- */
.feature-card {
  transition: border-color 0.25s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(217, 119, 6, 0.4);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(217, 119, 6, 0.08);
}

/* Why section card hover glow */
.why-card {
  transition: border-color 0.25s, box-shadow 0.3s;
}

.why-card:hover {
  box-shadow: 0 0 40px rgba(217, 119, 6, 0.08);
}

/* Location card animation */
.location-card {
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.location-card:hover {
  border-color: rgba(217, 119, 6, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Stat counter bounce */
.stat-value {
  display: inline-block;
  animation: counterUp 0.6s ease both;
}

/* Ping btn pulse */
.ping-btn {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Social links stagger */
.footer-socials .social-link:nth-child(2) {
  transition-delay: 0.05s;
}

.footer-socials .social-link:nth-child(3) {
  transition-delay: 0.1s;
}

/* Game card hover scale with glow */
.game-card:hover {
  transform: scale(1.03);
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.15);
}

/* Panel feature item active pulse */
.panel-feature-item.active {
  animation: borderGlow 3s ease-in-out infinite;
}

/* Section entry animations applied via IntersectionObserver */
.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.why-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.ping-layout {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ping-layout.in-view {
  opacity: 1;
  transform: translateY(0);
}

.need-help-card {
  animation: float 6s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .locations-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .need-help-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .games-grid {
    grid-template-columns: 1fr;
  }

  .games-header {
    flex-direction: column;
    align-items: stretch;
  }

  .game-search-wrap {
    min-width: auto;
  }

  .hero-tabs {
    gap: 2px;
  }

  .hero-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  .panel-tabs {
    flex-direction: column;
  }

  .faq-tabs {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* ============================================
   BETTER BACKGROUND — subtle amber noise
   ============================================ */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 80% 80%, rgba(245,158,11,0.04) 0%, transparent 50%);
}

/* ============================================
   LOGIN MODAL
   ============================================ */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.login-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.login-modal {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(245,158,11,0.06);
  animation: scaleIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
.login-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.login-modal-close:hover { background: rgba(255,255,255,0.12); color: white; }
.login-modal-close svg { width: 16px; height: 16px; }
.login-modal-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.02em;
}
.login-accent {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.login-modal-title { font-size: 22px; font-weight: 800; color: white; margin-bottom: 6px; }
.login-modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-field label { font-size: 12.5px; font-weight: 600; color: var(--text-muted); }
.login-field input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: white;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.login-field input:focus {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.login-field input::placeholder { color: var(--text-dim); }
.login-row { display: flex; align-items: center; justify-content: space-between; }
.login-remember { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); cursor: pointer; }
.login-forgot { font-size: 13px; color: var(--purple-light); text-decoration: none; }
.login-forgot:hover { color: white; }
.login-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; background: var(--purple); color: white;
  font-size: 15px; font-weight: 600; border: none; border-radius: 10px;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 0 20px rgba(245,158,11,0.3);
}
.login-submit:hover { background: var(--purple-dark); box-shadow: 0 0 35px rgba(245,158,11,0.5); transform: translateY(-1px); }
.login-signup { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 16px; }
.login-signup a { color: var(--purple-light); text-decoration: none; }
.login-signup a:hover { color: white; }
.login-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0; color: var(--text-dim); font-size: 12px;
}
.login-divider::before,.login-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.07); }
.login-oauth { display: flex; gap: 10px; }
.login-oauth-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px; font-size: 13.5px; font-weight: 600;
  border-radius: 10px; text-decoration: none; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.login-oauth-btn.discord { background: rgba(88,101,242,0.12); color: #7289da; }
.login-oauth-btn.discord:hover { background: rgba(88,101,242,0.22); }
.login-oauth-btn.github { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.login-oauth-btn.github:hover { background: rgba(255,255,255,0.1); color: white; }

/* ============================================
   GAME HOSTING HERO SECTION
   ============================================ */
.game-hosting-hero {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.ghh-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(245,158,11,0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(245,158,11,0.03) 100%);
  pointer-events: none;
}
.ghh-inner {
  max-width: 800px;
  display: flex; flex-direction: column; gap: 24px;
}
.ghh-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--purple-light); letter-spacing: 0.04em;
}
.ghh-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; color: white;
}
.ghh-accent {
  background: linear-gradient(90deg, #f59e0b, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ghh-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 620px; }
.ghh-price-badge {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin: 16px 0 4px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(16, 185, 129, 0.10));
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.ghh-price-from { font-size: 13px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }
.ghh-price-amount { font-size: 26px; font-weight: 800; color: #10b981; line-height: 1; letter-spacing: -0.5px; }
.ghh-price-mo { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-left: 2px; }
.ghh-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.ghh-feature {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.ghh-feature:hover { border-color: rgba(245,158,11,0.35); transform: translateY(-2px); }
.ghh-feature-icon { font-size: 22px; flex-shrink: 0; }
.ghh-feature-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 2px; }
.ghh-feature-desc { font-size: 12.5px; color: var(--text-muted); }
.ghh-actions { display: flex; align-items: center; gap: 16px; }
.ghh-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--purple); color: white;
  font-size: 15px; font-weight: 700; border-radius: 12px;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 0 25px rgba(245,158,11,0.3);
}
.ghh-cta:hover { background: var(--purple-dark); box-shadow: 0 0 45px rgba(245,158,11,0.5); transform: translateY(-2px); }
.ghh-link { font-size: 14px; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.ghh-link:hover { color: white; }

/* ============================================
   TECH STACK SECTION
   ============================================ */
.tech-section { padding: 80px 0; }
.tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.tech-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  opacity: 0; transform: translateY(24px);
}
.tech-card.in-view { opacity: 1; transform: translateY(0); }
.tech-card:hover { border-color: rgba(245,158,11,0.35); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 20px rgba(245,158,11,0.06); }
.tech-icon { font-size: 28px; }
.tech-name { font-size: 15px; font-weight: 700; color: white; }
.tech-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   DISCORD CTA SECTION
   ============================================ */
.discord-cta-section {
  position: relative; padding: 64px 0; overflow: hidden;
}
.discord-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(88,101,242,0.08) 0%, rgba(245,158,11,0.04) 100%);
  border-top: 1px solid rgba(88,101,242,0.15);
  border-bottom: 1px solid rgba(88,101,242,0.15);
}
.discord-cta-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.discord-icon-wrap {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #7289da; flex-shrink: 0;
  animation: float 5s ease-in-out infinite;
}
.discord-cta-text { flex: 1; min-width: 240px; }
.discord-cta-title { font-size: clamp(18px, 2.5vw, 26px); font-weight: 800; color: white; margin-bottom: 8px; }
.discord-cta-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.discord-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; background: rgba(88,101,242,0.15);
  border: 1.5px solid rgba(88,101,242,0.35);
  color: #7289da; font-size: 15px; font-weight: 700;
  border-radius: 12px; text-decoration: none; transition: all 0.25s;
  white-space: nowrap;
}
.discord-cta-btn:hover { background: rgba(88,101,242,0.28); color: white; transform: translateY(-2px); }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.05) 0%, transparent 60%);
  border-top: 1px solid rgba(245,158,11,0.1);
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 240px; }
.newsletter-title { font-size: clamp(20px, 3vw, 30px); font-weight: 800; color: white; margin-bottom: 8px; }
.newsletter-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(245,158,11,0.25); flex-shrink: 0; }
.newsletter-input {
  flex: 1; min-width: 220px; padding: 13px 16px;
  background: rgba(255,255,255,0.04); border: none;
  color: white; font-size: 14px; font-family: var(--font); outline: none;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-btn {
  padding: 13px 22px; background: var(--purple); color: white;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--purple-dark); }

/* ============================================
   ACCENT COLOR OVERRIDE (amber/yellow)
   ============================================ */
.accent {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* fix live-dot for footer */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #b8102f;
  animation: glowPulse 2s ease-in-out infinite;
}

/* smooth scroll for all internal links */
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }

@media (max-width: 768px) {
  .ghh-features { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; }
  .discord-cta-inner { flex-direction: column; text-align: center; }
  .login-modal { padding: 28px 20px; margin: 16px; }
}
@media (max-width: 480px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LUCIDE CUSTOM ICONS — sizing & color rules
   ============================================ */

/* Base: all Lucide SVGs rendered by data-lucide */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Pill icons (VPS feature pills in hero slide 2) */
.ci-pill {
  width: 14px; height: 14px;
  stroke: var(--purple-light);
  stroke-width: 2.2;
  position: relative; top: -1px;
}

/* GHH label icon */
.ci-label {
  width: 15px; height: 15px;
  stroke: var(--purple-light);
  stroke-width: 2;
  position: relative; top: -1px;
}

/* GHH feature box icons */
.ci-feat {
  width: 22px; height: 22px;
  stroke: var(--purple-light);
  stroke-width: 2;
}

/* Tech card icons */
.ci-tech {
  width: 28px; height: 28px;
  stroke: var(--purple-light);
  stroke-width: 1.8;
}

/* Footer heading icons */
.ci-fh {
  width: 14px; height: 14px;
  stroke: var(--purple-light);
  stroke-width: 2.2;
  position: relative; top: -1px;
}

/* Footer heart */
.ci-heart {
  width: 14px; height: 14px;
  stroke: #ef4444;
  fill: #ef4444;
  stroke-width: 2;
  position: relative; top: -1px;
}

/* Footer flag / pin */
.ci-flag {
  width: 14px; height: 14px;
  stroke: var(--purple-light);
  stroke-width: 2;
  position: relative; top: -1px;
}

/* Ping location map-pin icons */
.ci-flag-sm {
  width: 16px; height: 16px;
  stroke: var(--purple-light);
  stroke-width: 2;
}

/* Location card flag */
.ci-flag-loc {
  width: 22px; height: 22px;
  stroke: var(--purple-light);
  stroke-width: 2;
}

/* Tech icon wrapper: centre the SVG */
.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 14px;
  margin-bottom: 12px;
}

/* GHH feature icon wrapper already has styling but needs flex */
.ghh-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 10px;
  flex-shrink: 0;
}

/* Ping flag span */
.ping-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(245,158,11,0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   GAME HOSTING HERO — full split layout
   ============================================ */
.game-hosting-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* Full-bleed background image (blurred, dark) */
.ghh-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(0px) brightness(0.25) saturate(0.8);
  transform: scale(1.04);
}

/* Dark gradient overlay */
.ghh-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,7,10,0.97) 0%, rgba(7,7,10,0.7) 55%, rgba(7,7,10,0.1) 100%),
    linear-gradient(to top, rgba(245,158,11,0.04) 0%, transparent 50%);
}

/* Two-column container */
.ghh-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

/* Left column: all old ghh-inner content */
.ghh-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

/* Right column: the Minecraft art */
.ghh-right {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghh-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(245,158,11,0.18), 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(245,158,11,0.15);
}

.ghh-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.ghh-img-wrap:hover .ghh-hero-img { transform: scale(1.03); }

.ghh-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .ghh-container { flex-direction: column; gap: 32px; }
  .ghh-right { flex: 0 0 auto; width: 100%; max-width: 520px; }
  .game-hosting-hero { min-height: auto; padding: 60px 0; }
  .ghh-bg-img { filter: blur(0px) brightness(0.2) saturate(0.8); }
}
@media (max-width: 640px) {
  .ghh-right { display: none; }
}

/* ============================================
   CURRENCY DROPDOWN
   ============================================ */
.di-currency-wrap {
  position: relative;
}
.di-currency {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 7px 12px;
  color: var(--text-muted);
  font-size: 13px; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.di-currency:hover { background: rgba(255,255,255,0.1); color: white; }
.di-curr-symbol { font-size: 14px; font-weight: 700; color: var(--purple-light); }
.di-curr-code { color: white; }
.di-curr-caret { transition: transform 0.25s; flex-shrink: 0; }
.di-currency[aria-expanded="true"] .di-curr-caret { transform: rotate(180deg); }

/* Dropdown panel */
.di-currency-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #111113;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  z-index: 9998;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,158,11,0.06);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.di-currency-dropdown.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* Option rows */
.di-curr-option {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: transparent; border: none; cursor: pointer;
  color: var(--text-muted); font-family: var(--font); font-size: 13.5px;
  transition: background 0.15s, color 0.15s; text-align: left;
}
.di-curr-option:hover { background: rgba(255,255,255,0.06); color: white; }
.di-curr-option.active { color: white; }
.di-co-symbol {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,158,11,0.1); border-radius: 6px;
  font-size: 13px; font-weight: 700; color: var(--purple-light);
  flex-shrink: 0;
}
.di-curr-option.active .di-co-symbol { background: rgba(245,158,11,0.18); }
.di-co-name { flex: 1; }
.di-co-check { color: var(--purple-light); display: none; }
.di-curr-option.active .di-co-check { display: block; }

/* ============================================
   SUBPAGE COMMON HERO & COMPONENTS
   ============================================ */
.subpage-hero {
  position: relative;
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.12) 0%, rgba(9, 9, 11, 0) 70%),
              radial-gradient(circle at 80% 60%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 70%, transparent 100%);
  pointer-events: none;
}

.subpage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--yellow-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.subpage-badge svg {
  width: 14px;
  height: 14px;
}

.subpage-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: white;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.subpage-title .accent-grad {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subpage-sub {
  max-width: 720px;
  margin: 0 auto 32px auto;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Common Section Container */
.subpage-section {
  padding: 80px 0;
  position: relative;
}

.subpage-section.alt-bg {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Glass Card Component */
.glass-card {
  background: rgba(17, 17, 19, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.1);
}

/* ============================================
   COMMITMENT PAGE STYLES
   ============================================ */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.commit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.commit-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.commit-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SLA Table */
.sla-table-card {
  background: rgba(17, 17, 19, 0.75);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 40px;
}

.sla-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.sla-table th {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sla-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sla-table tr:last-child td {
  border-bottom: none;
}

.sla-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.sla-badge.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.sla-badge.yellow { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.sla-badge.purple { background: rgba(167, 139, 250, 0.15); color: #c4b5fd; }

/* Comparison Matrix */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

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

.matrix-col {
  background: rgba(17, 17, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
}

.matrix-col.highlight {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.12);
  position: relative;
}

.matrix-col.highlight::before {
  content: 'OUR STANDARD';
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #d97706, #92400e);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.matrix-header {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.matrix-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .story-layout {
    grid-template-columns: 1fr;
  }
}

.story-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

.story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--purple-light) 50%, #3b82f6 100%);
}

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

.timeline-step::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--yellow-light);
  box-shadow: 0 0 10px var(--yellow-glow);
}

.timeline-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow-light);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-dark), #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin: 0 auto 18px auto;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.team-name {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow-light);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   CONTACT US PAGE STYLES
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: white;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select option {
  background: #111113;
  color: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d97706, #92400e);
  border: 1px solid rgba(217, 119, 6, 0.5);
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(217, 119, 6, 0.6);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

.contact-channel-card {
  background: rgba(17, 17, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}

.contact-channel-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(17, 17, 19, 0.8);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.channel-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

.channel-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Live Status Pulse Bar */
.support-status-bar {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8102f;
  box-shadow: 0 0 12px #b8102f;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */
.faq-search-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto 30px auto;
}

.faq-search-box input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-search-box input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.faq-filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.faq-pill {
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-pill:hover,
.faq-pill.active {
  background: var(--yellow);
  color: black;
  border-color: var(--yellow);
  font-weight: 700;
  box-shadow: 0 0 15px var(--yellow-glow);
}

/* ============================================
   INFRASTRUCTURE PAGE STYLES
   ============================================ */
.hardware-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.hardware-card {
  background: rgba(17, 17, 19, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hardware-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
  pointer-events: none;
}

.hardware-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--yellow-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hardware-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.hardware-list {
  list-style: none;
  padding: 0;
}

.hardware-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hardware-list li svg {
  color: #34d399;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Network topology diagram box */
.topo-box {
  background: rgba(10, 10, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  margin-top: 40px;
  text-align: center;
}

.topo-flow {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.topo-node {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 24px;
  min-width: 160px;
}

.topo-node-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
}

.topo-node-sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

.topo-arrow {
  color: var(--yellow-light);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .subpage-title {
    font-size: 34px;
  }
  .subpage-hero {
    padding: 130px 0 50px 0;
  }
}

/* ── PLAN LOGO BRANDING ── */
.card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
  transition: transform 0.25s ease;
}

.price-card:hover .card-icon img {
  transform: scale(1.1);
}

/* ── OFFER POPUP MODAL (MATCHES SCREENSHOT) ── */
.offer-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offer-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.offer-popup {
  background: #0d1527;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(37, 99, 235, 0.25);
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-popup-overlay.active .offer-popup {
  transform: scale(1);
}

.offer-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.5);
}

.offer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.offer-close:hover {
  background: rgba(239, 68, 68, 0.85);
}

.offer-banner-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.offer-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-banner-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #0d1527 100%);
}

.offer-body {
  padding: 24px 28px 28px;
  text-align: center;
}

.offer-body h2 {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.offer-body h2 .highlight {
  color: #3b82f6;
}

.offer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  line-height: 1.45;
}

.offer-coupon-box {
  background: #090e1a;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 22px;
}

.offer-coupon-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-align: left;
}

.coupon-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.2);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coupon-text .exc {
  font-size: 11px;
  font-weight: 800;
  color: #3b82f6;
  letter-spacing: 0.08em;
}

.coupon-text .desc {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.offer-code-row {
  display: flex;
  gap: 10px;
}

.offer-code-input {
  flex: 1;
  background: #05080e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  font-family: 'Inter', monospace;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-align: center;
}

.offer-copy-btn {
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.offer-copy-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.offer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transition: transform 0.15s, box-shadow 0.2s;
}

.offer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.offer-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-style: italic;
  cursor: pointer;
  transition: color 0.2s;
}

.offer-dismiss:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── COMING SOON TOAST ── */
.coming-soon-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.coming-soon-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── REVOLVING 3D GLOBE SECTION ── */
.globe-section {
  background: #07070a;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.globe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.globe-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.globe-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.globe-title .red-text {
  color: #ef4444;
  text-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
}

.globe-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.globe-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.35),
    0 0 50px rgba(239, 68, 68, 0.25),
    inset 0 0 60px rgba(0, 0, 0, 0.95);
  background: radial-gradient(circle at 40% 30%, rgba(25, 20, 30, 0.95) 0%, rgba(5, 5, 10, 0.98) 70%, #000 100%);
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.globe-canvas-wrap:active {
  cursor: grabbing;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Globe Stats Pills Row */
.globe-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.globe-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.globe-stat-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
}

.globe-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== MEET OUR OWNERS SECTION ===== */
.owners-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 30%, rgba(227, 23, 78, 0.05) 0%, transparent 70%);
}

.owners-bg-wrap {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 50px 36px;
    background: url('minecraft-bg.jpg') center/cover no-repeat;
    border: 1px solid rgba(227, 23, 78, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 0 100px rgba(0, 0, 0, 0.85);
    overflow: hidden;
}

.owners-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.85) 0%, rgba(10, 10, 12, 0.95) 100%);
    backdrop-filter: blur(6px);
    z-index: 1;
}

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

.owners-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px auto;
}

.owners-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.owners-title .green-text {
    color: #E3174E;
    text-shadow: 0 0 24px rgba(227, 23, 78, 0.5);
}

.owners-subtitle {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    font-weight: 400;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.owner-card {
    position: relative;
    background: rgba(14, 17, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.owner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 23, 78, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(227, 23, 78, 0.15);
}

.owner-card-corner-dot {
    position: absolute;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E3174E;
    box-shadow: 0 0 10px #E3174E;
}
.owner-card-corner-dot.left { left: 16px; }
.owner-card-corner-dot.right { right: 16px; }

.owner-pfp-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
}

.owner-pfp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #E3174E;
    box-shadow: 0 0 24px rgba(227, 23, 78, 0.4);
}

.owner-name {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.owner-role {
    font-size: 13px;
    font-weight: 800;
    color: #E3174E;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.owner-bio {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.65;
    font-weight: 400;
}

@media (max-width: 768px) {
    .owners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .owners-bg-wrap {
        padding: 36px 18px;
    }
    .owners-title {
        font-size: 26px;
    }
}

.globe-stat-pill .green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E3174E;
  box-shadow: 0 0 10px #E3174E;
}

/* ── HERO SLIDER BACKGROUND GRADIENTS ── */
.slide-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.mc-slide-bg {
  background: radial-gradient(ellipse at center top, rgba(227, 23, 78, 0.2) 0%, rgba(10, 10, 10, 0.98) 75%), #0a0a0a;
}

.vps-slide-bg {
  background: radial-gradient(ellipse at center top, rgba(124, 58, 237, 0.2) 0%, rgba(10, 10, 10, 0.98) 75%), #0a0a0a;
}

/* ==========================================================================
   SHOPPING CART & CHECKOUT SYSTEM (PREMIUM DESIGN SYSTEM)
   ========================================================================== */

/* Navbar Cart Button & Badge */
.di-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(227, 23, 78, 0.12);
  border: 1px solid rgba(227, 23, 78, 0.3);
  color: #E3174E;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}
.di-cart-btn:hover {
  background: rgba(227, 23, 78, 0.22);
  border-color: rgba(227, 23, 78, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(227, 23, 78, 0.35);
}
.cart-badge {
  background: #E3174E;
  color: #000000;
  font-size: 11px;
  font-weight: 900;
  padding: 1px 7px;
  border-radius: 20px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 8px rgba(227, 23, 78, 0.6);
}

/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Slide-Over Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #0e0e14;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 82, 255, 0.15);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
}
.cart-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-title-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(227, 23, 78, 0.15);
  color: #E3174E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-title-text {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.cart-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.cart-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  margin: auto;
}
.cart-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cart-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.cart-empty-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.cart-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  transition: border-color 0.2s;
}
.cart-item-card:hover {
  border-color: rgba(227, 23, 78, 0.3);
}
.cart-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cart-item-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}
.cart-item-info p {
  font-size: 12px;
  color: #E3174E;
  font-weight: 600;
}
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: #ef4444;
}

.cart-item-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.cart-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-select-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  padding: 6px 10px;
  font-size: 12.5px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}
.cart-select:focus {
  border-color: #E3174E;
}

.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coupon-box {
  display: flex;
  gap: 8px;
}
.coupon-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.coupon-input:focus {
  border-color: #E3174E;
}
.coupon-btn {
  background: rgba(227, 23, 78, 0.15);
  border: 1px solid rgba(227, 23, 78, 0.3);
  color: #E3174E;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.coupon-btn:hover {
  background: #E3174E;
  color: #000000;
}

.cart-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.summary-line.discount {
  color: #E3174E;
}
.summary-line.total {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.summary-line.total .total-amount {
  color: #E3174E;
  font-size: 22px;
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #E3174E 0%, #16a34a 100%);
  color: #000000;
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(227, 23, 78, 0.3);
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(227, 23, 78, 0.5);
}

/* ==========================================================================
   CHECKOUT & PAYMENT MODAL
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.checkout-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-modal {
  background: rgba(14, 14, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(227, 23, 78, 0.15);
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkout-modal-overlay.open .checkout-modal {
  transform: scale(1);
}

.checkout-modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-steps-nav {
  display: flex;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-step-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s;
}
.checkout-step-pill.active {
  background: rgba(227, 23, 78, 0.15);
  color: #E3174E;
  border: 1px solid rgba(227, 23, 78, 0.3);
}
.checkout-step-pill.completed {
  color: rgba(255, 255, 255, 0.7);
}

.checkout-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

/* Payment Selection Grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.payment-option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}
.payment-option-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.payment-option-card.selected {
  background: rgba(0, 210, 133, 0.12);
  border-color: #00D285;
  box-shadow: 0 0 20px rgba(0, 210, 133, 0.2);
}
.payment-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-opt-info h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.payment-opt-info p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* QR Code Section */
.qr-box-wrap {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  margin-top: 16px;
}
.qr-canvas-box {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
.upi-copy-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 10px;
  width: fit-content;
  margin: 0 auto;
  font-family: monospace;
  color: #E3174E;
  font-size: 13px;
}

/* Server Provisioning Animation Modal */
.provision-anim-box {
  text-align: center;
  padding: 30px 20px;
}
.provision-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(227, 23, 78, 0.15);
  border-top-color: #E3174E;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 24px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.provision-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 20px auto 0;
  text-align: left;
}
.provision-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.provision-step-item.active {
  color: #ffffff;
  font-weight: 700;
}
.provision-step-item.done {
  color: #E3174E;
}

/* ==========================================================================
   35+ CRAZYNODE-GRADE ULTRA ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */

/* 1. Global Interactive Card Hover Lift & Glow */
.feature-card,
.game-card,
.why-card,
.owner-card,
.review-card,
.tech-card,
.panel-feature-item,
.calc-plan,
.ping-loc {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background 0.35s ease !important;
  will-change: transform, box-shadow;
}

.feature-card:hover,
.tech-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  border-color: rgba(227, 23, 78, 0.45) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 28px rgba(227, 23, 78, 0.18) !important;
}

.review-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(227, 23, 78, 0.35) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(227, 23, 78, 0.12) !important;
}

/* 2. Owner Card Floating Avatar & Border Sheen */
.owner-card {
  position: relative;
  overflow: hidden;
}
.owner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(227, 23, 78, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.owner-card:hover::before {
  opacity: 1;
}
.owner-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(227, 23, 78, 0.5) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 35px rgba(227, 23, 78, 0.22) !important;
}
.owner-pfp-img {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}
.owner-card:hover .owner-pfp-img {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 0 16px rgba(227, 23, 78, 0.6));
}

/* 3. Icon Hover Pop & Rotation */
.feature-icon,
.tech-icon,
.ghh-feature-icon,
.stat-icon,
.pf-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.feature-card:hover .feature-icon,
.tech-card:hover .tech-icon,
.ghh-feature:hover .ghh-feature-icon {
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 20px rgba(227, 23, 78, 0.35);
}

/* 4. Live Dot Radiant Pulse Animation */
@keyframes radiantPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 23, 78, 0.7);
    transform: scale(0.95);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(227, 23, 78, 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 23, 78, 0);
    transform: scale(0.95);
  }
}
.live-dot,
.globe-badge-dot,
.globe-stat-pill .green-dot {
  background: #E3174E !important;
  animation: radiantPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

/* 5. Shimmer / Sheen Effect on Buttons & Badges */
@keyframes buttonShimmer {
  0% { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(200%) skewX(-20deg); }
}

.cn-primary-btn,
.ghh-cta,
.checkout-btn,
.ping-btn,
.plan-btn-primary,
.offer-btn {
  position: relative;
  overflow: hidden !important;
}

.cn-primary-btn::after,
.ghh-cta::after,
.checkout-btn::after,
.ping-btn::after,
.plan-btn-primary::after,
.offer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-150%) skewX(-20deg);
  pointer-events: none;
}

.cn-primary-btn:hover::after,
.ghh-cta:hover::after,
.checkout-btn:hover::after,
.ping-btn:hover::after,
.plan-btn-primary:hover::after,
.offer-btn:hover::after {
  animation: buttonShimmer 1.1s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* 6. Dynamic Gradient Text Shimmer */
@keyframes textGradShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.accent,
.green-text,
.ghh-accent,
.red-text {
  background: linear-gradient(135deg, #E3174E 0%, #ff5c8a 50%, #E3174E 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: textGradShimmer 4s ease infinite !important;
}

/* 7. Floating Minecraft Hero Image */
@keyframes floatBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.ghh-hero-img {
  animation: floatBob 5s ease-in-out infinite;
  transition: filter 0.4s ease;
}
.ghh-hero-img:hover {
  filter: drop-shadow(0 0 35px rgba(227, 23, 78, 0.55));
}

/* 8. Games Grid Card Zoom & Overlay Slide */
.game-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}
.game-card .game-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.game-card:hover .game-img {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 23, 78, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px rgba(227, 23, 78, 0.25);
}

/* 9. Smart Calculator Slider Glowing Track */
.calc-range {
  accent-color: #E3174E;
  transition: filter 0.2s ease;
}
.calc-range:hover {
  filter: drop-shadow(0 0 8px rgba(227, 23, 78, 0.6));
}
.range-value {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

/* 10. Calculator Plan Selection Cards Pop */
.calc-plan {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc-plan:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(227, 23, 78, 0.5);
}
.calc-plan.recommended {
  box-shadow: 0 8px 30px rgba(227, 23, 78, 0.2);
  border-color: rgba(227, 23, 78, 0.4);
}

/* 11. Accordion Arrow Spin & Smooth Slide */
.calc-accordion .acc-chevron,
.faq-chevron {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc-accordion.open .acc-chevron,
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #E3174E;
}

/* 12. Trustpilot Floating Stars Pulse */
.tp-stars .tp-star {
  display: inline-block;
  transition: transform 0.2s ease;
}
.trustpilot-card:hover .tp-stars .tp-star {
  animation: starPop 0.4s ease both;
}
@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* 13. Discord CTA Glowing Background Pulse */
@keyframes discordGlow {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.04); }
}
.discord-cta-bg {
  animation: discordGlow 6s ease-in-out infinite;
}
.discord-cta-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.discord-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.55);
}

/* 14. Globe Stat Pills Soft Float */
.globe-stat-pill {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.globe-stat-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 23, 78, 0.4);
  background: rgba(227, 23, 78, 0.08);
}

/* 15. Footer Social Icons Spin-Hover */
.social-link {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link:hover {
  transform: translateY(-4px) scale(1.15) rotate(6deg);
  color: #E3174E;
  background: rgba(227, 23, 78, 0.12);
  border-color: rgba(227, 23, 78, 0.4);
}

/* 16. Back To Top Floating Glow */
.back-to-top {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  background: #E3174E;
  box-shadow: 0 8px 25px rgba(227, 23, 78, 0.6);
}

/* 18. Micro-Pill Tag Hover Pop */
.plan-tier-badge,
.best-badge,
.ping-panel-badge,
.footer-status-badge {
  transition: transform 0.25s ease, background 0.25s ease;
}
.plan-tier-badge:hover,
.best-badge:hover {
  transform: scale(1.08);
}

/* 19. Stat Bar Counter Value Glow */
.stat-value {
  transition: text-shadow 0.3s ease, color 0.3s ease;
}
.stat-item:hover .stat-value {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(227, 23, 78, 0.8);
}

/* 20. Code Box Interactive Copy Pop */
.offer-coupon-box,
.upi-copy-box {
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.offer-coupon-box:hover,
.upi-copy-box:hover {
  transform: scale(1.03);
  border-color: rgba(227, 23, 78, 0.6);
  box-shadow: 0 0 24px rgba(227, 23, 78, 0.25);
}

/* ==========================================================================
   COMPLETE MOBILE RESPONSIVE MASTER OVERHAUL (100% GLITCH-FREE & ROBUST)
   ========================================================================== */

/* Prevent horizontal viewport overflow & micro-glitches */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* Responsive Containers */
.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

/* Tablet & Mobile Breakpoints */
@media (max-width: 1024px) {
  /* Navbar */
  .di-links,
  .di-sep {
    display: none !important;
  }
  .di-hamburger {
    display: flex !important;
    z-index: 1002;
  }
  .di-wrapper {
    top: 12px;
    padding: 0 12px;
  }
  .di-nav {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
    padding: 8px 14px !important;
    border-radius: 40px !important;
  }

  /* Grid Layouts */
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .ghh-container {
    flex-direction: column !important;
    text-align: center;
    gap: 36px;
  }
  .ghh-left {
    max-width: 100% !important;
  }
  .ghh-features {
    grid-template-columns: repeat(2, 1fr) !important;
    text-align: left;
  }
  .ghh-actions {
    justify-content: center !important;
  }
  .calc-layout {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .ping-layout {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .reviews-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .review-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .panel-content {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .panel-features-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Dynamic Island Navbar Mobile */
  .di-wrapper {
    top: 8px !important;
    padding: 0 10px !important;
  }
  .di-nav {
    padding: 6px 14px !important;
    border-radius: 30px !important;
    background: rgba(10, 10, 14, 0.92) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    justify-content: space-between !important;
  }
  .di-logo-icon {
    width: 26px !important;
    height: 26px !important;
  }
  .di-logo-img {
    width: 26px !important;
    height: 26px !important;
  }
  .di-logo-text {
    font-size: 15px !important;
  }
  /* HIDE currency, cart, login on mobile — only show logo + hamburger */
  .di-currency-wrap,
  .di-cart-btn,
  .di-login,
  .di-sep {
    display: none !important;
  }
  .di-actions {
    gap: 0 !important;
  }
  .di-hamburger {
    display: flex !important;
    padding: 6px 8px !important;
    margin-left: auto !important;
  }

  /* Mobile Dropdown Menu */
  .mobile-menu {
    top: 60px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 14px !important;
    border-radius: 16px !important;
    background: rgba(10, 10, 14, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85) !important;
  }
  .mobile-link {
    padding: 12px 14px !important;
    font-size: 14.5px !important;
  }

  /* Hero Section Mobile Perfection */
  .cn-hero-section {
    min-height: auto !important;
    padding-top: 84px !important;
    padding-bottom: 40px !important;
  }
  .cn-hero-inner {
    padding: 20px 14px 40px !important;
    max-width: 100% !important;
  }
  .cn-badge-wrap {
    margin-bottom: 8px !important;
  }
  .cn-badge {
    padding: 6px 12px !important;
    font-size: 11.5px !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .hero-live-latency-tag {
    font-size: 10px !important;
    padding: 1px 6px !important;
  }
  .cn-title-slot {
    min-height: auto !important;
    margin-top: 14px !important;
    margin-bottom: 10px !important;
  }
  .cn-h1 {
    font-size: 28px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
  }
  .cn-sub-slot {
    min-height: auto !important;
    margin-top: 6px !important;
    margin-bottom: 12px !important;
  }
  .cn-sub {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #9ca3af !important;
  }
  .cn-price-row {
    margin-top: 12px !important;
  }
  .cn-price {
    font-size: 32px !important;
  }
  .cn-cta-wrap {
    margin-top: 20px !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .cn-primary-btn,
  .cn-outline-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .cn-pills {
    margin-top: 20px !important;
  }
  .cn-feat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 32px !important;
    width: 100% !important;
  }
  .cn-feat {
    padding: 12px 6px !important;
    border-radius: 12px !important;
  }
  .cn-feat svg {
    width: 18px !important;
    height: 18px !important;
  }
  .cn-feat span {
    font-size: 11px !important;
    white-space: normal !important;
  }

  /* All Page Sections Mobile Spacing */
  .features-section,
  .why-section,
  .owners-section,
  .games-section,
  .calc-section,
  .ping-section,
  .reviews-section,
  .panel-section,
  .globe-section,
  .faq-section,
  .tech-section,
  .newsletter-section {
    padding: 44px 0 !important;
  }

  .section-title,
  .owners-title,
  .globe-title,
  .reviews-title,
  .ping-title,
  .ghh-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }
  .section-sub,
  .owners-subtitle,
  .globe-sub,
  .reviews-desc,
  .ping-desc,
  .ghh-desc {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .stat-divider {
    display: none !important;
  }
  .stat-item {
    padding: 12px 8px !important;
  }
  .stat-value {
    font-size: 22px !important;
  }
  .stat-label {
    font-size: 10.5px !important;
  }

  /* Games Grid */
  .games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .games-header {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }
  .game-search-wrap {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* GHH Feature List */
  .ghh-features {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ghh-hero-img {
    max-width: 240px !important;
    height: auto !important;
  }
  .ghh-actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  .ghh-cta,
  .ghh-link {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Smart Plan Calculator */
  .preset-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .preset-btn {
    font-size: 12px !important;
    padding: 8px !important;
  }
  .calc-row-2col {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .calc-tiers {
    width: 100% !important;
  }
  .calc-tier {
    flex: 1 !important;
    font-size: 12px !important;
    padding: 6px 8px !important;
  }
  .calc-plans {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Ping Test Panel */
  .ping-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .ping-loc {
    padding: 10px 12px !important;
  }
  .ping-loc-name {
    font-size: 12px !important;
  }

  /* Control Panel Section */
  .panel-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
  }
  .panel-tab {
    flex-shrink: 0 !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  .panel-features-list {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .panel-feature-item {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
  .browser-bar {
    padding: 8px 12px !important;
  }
  .preview-console,
  .preview-mods {
    padding: 14px !important;
  }

  /* 3D Globe Section */
  .globe-wrapper {
    height: 280px !important;
    margin: 16px 0 !important;
  }
  .globe-stats-row {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
  }
  .globe-stat-pill {
    justify-content: center !important;
    padding: 8px 12px !important;
    font-size: 12.5px !important;
  }

  /* FAQ Accordion Tabs */
  .faq-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
  }
  .faq-tab {
    flex-shrink: 0 !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  .faq-question {
    font-size: 13.5px !important;
    padding: 14px 12px !important;
  }
  .faq-answer {
    padding: 0 12px 14px !important;
    font-size: 13px !important;
  }
  .need-help-card {
    margin-top: 24px !important;
    padding: 20px !important;
  }

  /* Tech Grid */
  .tech-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .tech-card {
    padding: 18px !important;
  }

  /* Newsletter */
  .newsletter-inner {
    flex-direction: column !important;
    padding: 24px 16px !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .newsletter-form {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .newsletter-input,
  .newsletter-btn {
    width: 100% !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  /* Discord CTA Banner */
  .discord-cta-inner {
    flex-direction: column !important;
    padding: 24px 16px !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .discord-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .footer-bottom-right {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  /* Cart Drawer & Modals */
  .cart-drawer {
    width: 100% !important;
    max-width: 100vw !important;
  }
  .checkout-modal {
    width: calc(100vw - 20px) !important;
    margin: 10px auto !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
  }
  .checkout-steps-nav {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .checkout-step-pill {
    font-size: 11.5px !important;
    padding: 6px 10px !important;
  }
  .offer-popup {
    width: calc(100vw - 24px) !important;
    padding: 20px 14px !important;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .games-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-plans {
    grid-template-columns: 1fr !important;
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-row-2col {
    grid-template-columns: 1fr !important;
  }
  .preset-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .cn-h1 {
    font-size: 26px !important;
  }
  .cn-price {
    font-size: 30px !important;
  }
  .cn-feat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}



/* ═══════════════════════════════════════════════════════════
   ULTRA MOBILE MASTER RESPONSIVE OVERHAUL (100% GLITCH-FREE)
   Eliminates all horizontal overflow, fixes viewport ratios,
   and adapts all elements for mobile screens (320px - 768px).
═══════════════════════════════════════════════════════════ */

/* 1. Viewport & Body Root Constraint */
html {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 2. Global Safety for Containers */
.container,
.main-wrap,
.page-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ── NAVBAR: Pixel-Perfect Mobile Pill ─────────────────────── */
@media (max-width: 768px) {
  .di-wrapper {
    top: 8px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .di-nav {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }
  
  .di-logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }
  
  .di-logo-icon,
  .di-logo-img {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
  }
  
  .di-logo-text {
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* Hide desktop items on mobile to keep navbar clean */
  .di-links,
  .di-sep,
  .di-currency-wrap,
  .di-cart-btn,
  .di-login {
    display: none !important;
  }
  
  .di-hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
    padding: 6px !important;
    margin-left: auto !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 8px !important;
  }
}

/* ── ALL HERO SECTIONS: Responsive Mobile Heights & Fonts ───── */
@media (max-width: 768px) {
  /* Index Hero */
  .cn-hero-section {
    min-height: auto !important;
    height: auto !important;
    padding-top: 76px !important;
    padding-bottom: 36px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .cn-hero-inner {
    padding: 16px 12px 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .cn-h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    word-break: break-word !important;
  }
  
  .cn-sub {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    padding: 0 4px !important;
  }
  
  .cn-badge {
    padding: 5px 10px !important;
    font-size: 11px !important;
    gap: 6px !important;
    max-width: 100% !important;
    white-space: normal !important;
  }
  
  .cn-cta-wrap {
    margin-top: 18px !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }
  
  .cn-primary-btn,
  .cn-outline-btn {
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 14.5px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  
  .cn-feat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 24px !important;
    width: 100% !important;
  }
  
  /* VPS, Bot, Minecraft Hero Pages */
  .vps-hero,
  .bot-hero,
  .mc-hero {
    height: auto !important;
    min-height: auto !important;
    padding: 84px 14px 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .vps-hero-text,
  .bot-hero-text,
  .mc-hero-text {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  .vps-hero-title,
  .bot-hero-title,
  .mc-hero-title {
    font-size: clamp(24px, 7.5vw, 36px) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
  }
  
  .vps-hero-sub,
  .bot-hero-sub,
  .mc-hero-sub {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    padding: 0 4px !important;
  }
  
  .vps-badge-pill,
  .bot-badge-pill,
  .mc-badge-pill {
    font-size: 11px !important;
    padding: 5px 12px !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
    white-space: normal !important;
  }
  
  .vps-hero-actions,
  .bot-hero-actions,
  .mc-hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  
  .vps-cta-btn,
  .vps-secondary-btn,
  .bot-cta-btn,
  .bot-secondary-btn,
  .mc-cta-btn,
  .mc-secondary-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 14.5px !important;
    box-sizing: border-box !important;
  }
}

/* ── ALL SECTIONS & GRIDS: Smooth Mobile Adaptation ────────── */
@media (max-width: 768px) {
  section,
  .section,
  [class*="-section"] {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  
  /* Buttons & Toggle Switches */
  .cpu-toggle,
  .tier-toggle,
  .billing-toggle,
  .series-toggle {
    width: 100% !important;
    max-width: 100% !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  
  .cpu-btn,
  .tier-btn,
  .series-btn {
    flex: 1 1 auto !important;
    min-width: 120px !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
  
  /* Plans & Pricing Cards */
  .pricing-outer,
  .plans-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  
  .pricing-grid,
  .plans-grid,
  .tier-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }
  
  .price-card,
  .plan-card,
  .pricing-card {
    width: 100% !important;
    padding: 20px 16px !important;
    box-sizing: border-box !important;
  }
  
  /* Features & Reviews Grids */
  .features-grid,
  .why-grid,
  .tech-grid,
  .games-grid,
  .review-cards,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }
  
  /* Calculator & Configurator */
  .calc-layout,
  .calc-box,
  .calc-left,
  .calc-right,
  .calc-card,
  .calc-plans,
  .preset-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .preset-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  
  .preset-btn {
    padding: 8px 6px !important;
    font-size: 12px !important;
  }
  
  /* Globe Section */
  .globe-wrapper {
    max-width: 320px !important;
    width: 100% !important;
    margin: 0 auto 24px !important;
  }
  
  .globe-stats-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }
  
  .globe-stat-pill {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

/* ── EXTRA SMALL MOBILE (≤480px) ────────────────────────────── */
@media (max-width: 480px) {
  .cn-feat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  
  .cn-feat {
    padding: 10px 4px !important;
  }
  
  .cn-feat span {
    font-size: 10.5px !important;
  }
  
  .section-title,
  .plans-title,
  .globe-title,
  .reviews-title,
  .ping-title {
    font-size: 22px !important;
    line-height: 1.22 !important;
  }
  
  .section-sub,
  .globe-sub,
  .reviews-desc,
  .ping-desc {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}

/* ── MEDIA & EMBED OVERFLOW SHIELD ─────────────────────────── */
img, svg, video, canvas, iframe {
  max-width: 100% !important;
  height: auto;
}

/* Exceptions for full-bleed background animations */
.cn-hero-bg,
.vps-hero-bg,
.bot-hero-bg,
.mc-hero-bg,
.vps-hero-anim,
.bot-hero-anim,
.mc-hero-anim,
.hero-particles-canvas {
  max-width: none !important;
  height: 100% !important;
}

/* ── USER PROFILE NAVBAR DROPDOWN ─────────────────────────── */
.user-profile-wrap {
  position: relative;
  display: inline-block;
}

.user-profile-wrap .di-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 220px;
  background: rgba(14, 14, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 210, 133, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-profile-wrap.dd-open .di-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-profile-wrap .di-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.18s;
}

.user-profile-wrap .di-dd-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.user-profile-wrap .di-dd-meta {
  display: flex;
  flex-direction: column;
}

.user-profile-wrap .di-dd-meta strong {
  font-size: 13px;
  font-weight: 700;
}

.user-profile-wrap .di-dd-meta span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

