/* Extracted from gaming-dedicated-servers.php style block 1 */
/* ============================================================
   GAMING PAGE CSS - v2.0
   Theme: Cyberpunk RGB Neon (theme-gaming)
   Primary:   #8B5CF6  (violet)
   Secondary: #EC4899  (neon pink)
   Accent:    #06B6D4  (cyber cyan)
   Boost:     #00FF88  (neon green)
   ============================================================ */

body.theme-gaming {
  --color-primary:         #8B5CF6;
  --color-primary-light:   #A78BFA;
  --color-primary-dark:    #7C3AED;
  --color-primary-darker:  #1a0830;
  --color-primary-rgb:     139, 92, 246;

  --color-secondary:       #EC4899;
  --color-secondary-light: #F472B6;
  --color-secondary-dark:  #DB2777;
  --color-secondary-rgb:   236, 72, 153;

  --color-accent:          #06B6D4;
  --color-accent-light:    #22D3EE;
  --color-accent-rgb:      6, 182, 212;

  --gaming-green:          #00FF88;
  --gaming-green-rgb:      0, 255, 136;

  --border-primary:        rgba(139,92,246,0.22);
  --border-secondary:      rgba(139,92,246,0.10);

  --gradient-horizontal:   linear-gradient(90deg, #8B5CF6, #EC4899);
  --gradient-primary:      linear-gradient(135deg, #7C3AED, #8B5CF6, #EC4899);
  --gradient-card-header:  linear-gradient(145deg, #1a0830, #7C3AED, #8B5CF6);

  --shadow-md:   0 10px 20px rgba(139,92,246,0.22);
  --shadow-lg:   0 15px 30px rgba(139,92,246,0.32);
  --shadow-xl:   0 20px 40px rgba(139,92,246,0.18);
  --shadow-glow: 0 0 30px rgba(139,92,246,0.35);
}

/* ── Global dark override ── */
body.theme-gaming { background: #0b0f1a; color: #e2e8f0; }

/* ── RGB scanline overlay on hero ── */
@keyframes rgb-drift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes neon-pulse {
  0%,100% { opacity: 1; text-shadow: 0 0 20px rgba(139,92,246,0.8), 0 0 60px rgba(139,92,246,0.4); }
  50%      { opacity: 0.92; text-shadow: 0 0 40px rgba(236,72,153,0.9), 0 0 80px rgba(6,182,212,0.5); }
}
@keyframes border-rgb {
  0%   { border-color: #8B5CF6; box-shadow: 0 0 20px rgba(139,92,246,0.6); }
  33%  { border-color: #EC4899; box-shadow: 0 0 20px rgba(236,72,153,0.6); }
  66%  { border-color: #06B6D4; box-shadow: 0 0 20px rgba(6,182,212,0.6); }
  100% { border-color: #8B5CF6; box-shadow: 0 0 20px rgba(139,92,246,0.6); }
}
@keyframes float-glow {
  0%,100% { transform: translateY(0);   filter: drop-shadow(0 0 12px rgba(139,92,246,0.7)); }
  50%      { transform: translateY(-8px); filter: drop-shadow(0 0 24px rgba(236,72,153,0.8)); }
}
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes corner-blink {
  0%,90%,100% { opacity: 1; }
  95%          { opacity: 0.2; }
}

/* ── HERO ── */
.gaming-hero {
  position: relative;
  background: #0b0f1a;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}
.gaming-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.gaming-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gaming-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.gaming-hero__orb--1 { width:600px;height:600px;top:-200px;left:-150px;  background:radial-gradient(circle,#8B5CF6,transparent 70%); }
.gaming-hero__orb--2 { width:500px;height:500px;top:50%;right:-100px;   background:radial-gradient(circle,#EC4899,transparent 70%); }
.gaming-hero__orb--3 { width:400px;height:400px;bottom:-100px;left:35%;  background:radial-gradient(circle,#06B6D4,transparent 70%); }
.gaming-hero__scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), transparent);
  animation: scanline 6s linear infinite;
  pointer-events: none;
}
.gaming-hero__content { position: relative; z-index: 5; }

/* Hero badge */
.gaming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 2px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.5);
  color: #A78BFA;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.gaming-badge::before,
.gaming-badge::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border: 1px solid #8B5CF6;
  animation: corner-blink 3s ease-in-out infinite;
}
.gaming-badge::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.gaming-badge::after  { bottom: -3px; right: -3px; border-left: none; border-top: none; }

/* Hero headline */
.gaming-hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.gaming-hero__title .rgb-text {
  background: linear-gradient(90deg, #8B5CF6, #EC4899, #06B6D4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rgb-drift 4s ease-in-out infinite;
}
.gaming-hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Hero stat bar */
.gaming-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 30px 0;
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 4px;
  overflow: hidden;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.gaming-stat {
  flex: 1;
  min-width: 130px;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(139,92,246,0.2);
  background: rgba(10,8,20,0.7);
  backdrop-filter: blur(8px);
}
.gaming-stat:last-child { border-right: none; }
.gaming-stat__value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, #8B5CF6, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.gaming-stat__label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero CTA buttons */
.btn-gaming-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid rgba(139,92,246,0.6);
  box-shadow: 0 0 24px rgba(139,92,246,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gaming-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gaming-primary:hover { box-shadow: 0 0 40px rgba(139,92,246,0.8), 0 0 80px rgba(139,92,246,0.3); transform: translateY(-2px); }
.btn-gaming-primary:hover::after { opacity: 1; }

.btn-gaming-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  background: transparent;
  color: #A78BFA !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid rgba(139,92,246,0.5);
  animation: border-rgb 4s linear infinite;
  transition: all 0.3s ease;
}
.btn-gaming-outline:hover { background: rgba(139,92,246,0.12); color: #fff !important; }

/* ── PLANS SECTION ── */
.gaming-plans {
  background: #0d1220;
  padding: 80px 0;
  border-top: 1px solid rgba(139,92,246,0.15);
}
.gaming-section-title {
  font-size: clamp(28px,4vw,46px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.gaming-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B5CF6;
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 2px;
  background: rgba(139,92,246,0.08);
  margin-bottom: 16px;
}
.gaming-section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  margin: 0 auto 60px;
}

/* Plan card */
.gaming-plan-card {
  background: linear-gradient(145deg, #0f1220, #141830);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.gaming-plan-card:hover {
  border-color: rgba(139,92,246,0.7);
  box-shadow: 0 0 40px rgba(139,92,246,0.3), 0 0 80px rgba(139,92,246,0.1);
  transform: translateY(-4px);
}
.gaming-plan-card--featured {
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 30px rgba(139,92,246,0.25);
}
.gaming-plan-card--featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: -1px; right: 24px;
  background: linear-gradient(90deg, #7C3AED, #EC4899);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 0 0 4px 4px;
  z-index: 5;
}

/* Corner accents */
.gaming-plan-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, #8B5CF6, transparent);
}

.gaming-plan-header {
  background: linear-gradient(145deg, #1a0830, #2d1854, #3b1f7a);
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.gaming-plan-region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.gaming-plan-region--eu   { background: rgba(6,182,212,0.15);  border: 1px solid rgba(6,182,212,0.4);  color: #22D3EE; }
.gaming-plan-region--ca   { background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.4); color: #F472B6; }
.gaming-plan-region--best { background: rgba(0,255,136,0.10);  border: 1px solid rgba(0,255,136,0.35); color: #00FF88; }

.gaming-plan-title-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  margin: 0;
}
.gaming-plan-body { padding: 24px 28px; }

/* Spec grid inside plan */
.gaming-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.gaming-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 3px;
  transition: all 0.25s ease;
}
.gaming-spec-item:hover {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.3);
}
.gaming-spec-item i { color: #8B5CF6; font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.gaming-spec-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.gaming-spec-value { font-size: 12px; color: #e2e8f0; font-weight: 700; display: block; line-height: 1.3; }

/* Plan price + order */
.gaming-plan-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(139,92,246,0.12);
  gap: 20px;
  flex-wrap: wrap;
}
.gaming-price-wrap { display: flex; align-items: baseline; gap: 4px; }
.gaming-price-amount { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.gaming-price-period { font-size: 14px; color: rgba(255,255,255,0.45); }

/* ── PERFORMANCE SECTION ── */
.gaming-performance {
  background: #080c16;
  padding: 90px 0;
  border-top: 1px solid rgba(139,92,246,0.12);
  border-bottom: 1px solid rgba(139,92,246,0.12);
}
.gaming-perf-card {
  background: linear-gradient(145deg, #0d1120, #111628);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 4px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}
.gaming-perf-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, linear-gradient(90deg, #8B5CF6, #EC4899));
  opacity: 0.8;
}
.gaming-perf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.55);
  box-shadow: 0 20px 60px rgba(139,92,246,0.2);
}
.gaming-perf-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  position: relative;
}
.gaming-perf-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.3;
  animation: border-rgb 4s linear infinite;
}
.gaming-perf-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.gaming-perf-desc  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

/* ── GAMES SECTION ── */
.gaming-games {
  background: #0b0f1a;
  padding: 90px 0;
}
.gaming-games-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.gaming-games-grid::before,
.gaming-games-grid::after {
  display: none;
}
.gaming-games-grid > [class*="col-"] {
  display: flex;
  flex: 0 0 100%;
  float: none;
  max-width: 100%;
}
.game-card {
  background: linear-gradient(145deg, #0f1325, #131828);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 4px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  width: 100%;
}
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--game-glow, rgba(139,92,246,0.08));
  opacity: 0;
  transition: opacity 0.35s;
}
.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--game-border, rgba(139,92,246,0.7));
  box-shadow: 0 0 30px var(--game-shadow, rgba(139,92,246,0.35)),
              0 0 60px var(--game-shadow, rgba(139,92,246,0.15));
}
.game-card:hover::after { opacity: 1; }
.game-card-icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
  transition: all 0.35s ease;
}
.game-card:hover .game-card-icon { transform: scale(1.15); filter: drop-shadow(0 0 12px currentColor); }
.game-card-name  { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.game-card-tag   { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; display: inline-block; margin-bottom: 10px; }
.game-card-desc  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* ── HARDWARE SPECS ── */
@media (min-width: 768px) {
  .gaming-games-grid > [class*="col-"] {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .gaming-games-grid > [class*="col-"] {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
  }
}

.gaming-hardware {
  background: #080c16;
  padding: 90px 0;
  border-top: 1px solid rgba(139,92,246,0.12);
}
.hw-panel {
  background: #0d1120;
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.hw-panel:hover {
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 30px rgba(139,92,246,0.2);
}
.hw-panel-header {
  background: linear-gradient(145deg, #1a0830, #2d1854);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(139,92,246,0.2);
}
.hw-panel-header i { color: #8B5CF6; font-size: 18px; }
.hw-panel-header-title { font-size: 14px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.hw-panel-body { padding: 20px 22px; }
.hw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139,92,246,0.08);
  gap: 12px;
}
.hw-row:last-child { border-bottom: none; }
.hw-key   { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; }
.hw-val   { font-size: 13px; font-weight: 700; color: #e2e8f0; text-align: right; }
.hw-val--highlight { color: #A78BFA; }
.hw-val--green     { color: #00FF88; }
.hw-val--cyan      { color: #22D3EE; }
.hw-bar-wrap { height: 4px; background: rgba(139,92,246,0.12); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.hw-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #8B5CF6, #EC4899); }

/* ── LOCATIONS SECTION ── */
.gaming-locations {
  background: #0b0f1a;
  padding: 90px 0;
  border-top: 1px solid rgba(139,92,246,0.12);
}
.loc-card {
  background: linear-gradient(145deg, #0f1325, #131828);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}
.loc-card:hover {
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 30px rgba(139,92,246,0.25), 0 0 60px rgba(139,92,246,0.1);
  transform: translateY(-4px);
}
.loc-card--active {
  border-color: rgba(0,255,136,0.45);
  box-shadow: 0 0 20px rgba(0,255,136,0.2);
}
.loc-flag-wrap {
  width: 60px; height: 40px;
  margin: 0 auto 14px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.loc-flag-wrap::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, rgba(139,92,246,0.4), transparent 70%);
  border-radius: 4px;
  animation: float-glow 3s ease-in-out infinite;
}
.loc-flag { width: 48px; height: 32px; object-fit: cover; border-radius: 2px; position: relative; z-index: 2; }
.loc-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.loc-tag  { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.loc-ping-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  justify-content: center;
  margin-bottom: 14px;
}
.loc-ping-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.loc-ping-dot--green { background: #00FF88; box-shadow: 0 0 6px rgba(0,255,136,0.8); }
.loc-ping-dot--blue  { background: #06B6D4; box-shadow: 0 0 6px rgba(6,182,212,0.8); }

/* ── PTERODACTYL SECTION ── */
.gaming-ptero {
  background: #0d1120;
  padding: 90px 0;
  border-top: 1px solid rgba(139,92,246,0.12);
  border-bottom: 1px solid rgba(139,92,246,0.12);
}
.ptero-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(139,92,246,0.1);
}
.ptero-feature:last-child { border-bottom: none; }
.ptero-feature-icon {
  width: 44px; height: 44px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  color: #8B5CF6;
}
.ptero-feature-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.ptero-feature-desc  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }
.gaming-ptero-side {
  margin-top: 24px;
}
.gaming-ptero-side .ptero-feature:first-child {
  border-top: 1px solid rgba(139,92,246,0.1);
}

/* ── MIGRATION ── */
.gaming-migration { background: #080c16; padding: 90px 0; }

/* ── FAQ ── */
.gaming-faq {
  background: #0b0f1a;
  padding: 90px 0;
  border-top: 1px solid rgba(139,92,246,0.12);
}
.gaming-faq-item {
  background: linear-gradient(145deg, #0f1325, #131828);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.gaming-faq-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8B5CF6, #EC4899);
  opacity: 0;
  transition: opacity 0.3s;
}
.gaming-faq-item:hover { border-color: rgba(139,92,246,0.45); box-shadow: 0 0 20px rgba(139,92,246,0.15); }
.gaming-faq-item:hover::before { opacity: 1; }
.gaming-faq-q { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.gaming-faq-q i { color: #8B5CF6; font-size: 14px; flex-shrink: 0; }
.gaming-faq-a { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; padding-left: 24px; }

/* ── FINAL CTA ── */
.gaming-cta {
  background: #080c16;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139,92,246,0.12);
}
.gaming-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139,92,246,0.12), transparent 70%);
  pointer-events: none;
}
.gaming-cta__box {
  position: relative;
  padding: 60px 40px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: linear-gradient(#0d1120, #0d1120) padding-box,
              linear-gradient(135deg, #8B5CF6, #EC4899, #06B6D4, #8B5CF6) border-box;
  animation: border-rgb 5s linear infinite;
  text-align: center;
}
.gaming-cta__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* ── EXTRAS / OS ── */
.gaming-extras { background: #0d1120; padding: 80px 0; border-top: 1px solid rgba(139,92,246,0.12); }
.gaming-os-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 4px;
  vertical-align: middle;
}
.gaming-os-badge--free  { background: rgba(0,255,136,0.12); color: #00FF88; border: 1px solid rgba(0,255,136,0.3); }
.gaming-os-badge--ptero { background: rgba(139,92,246,0.12); color: #A78BFA; border: 1px solid rgba(139,92,246,0.3); }
.gaming-os-badge--repo  { background: rgba(245,158,11,0.12); color: #FBBF24; border: 1px solid rgba(245,158,11,0.35); }
.gaming-os-list { list-style: none; margin: 0; padding: 0; }
.gaming-os-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(139,92,246,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.gaming-os-list li:last-child { border-bottom: none; }
.gaming-os-list li i { color: #8B5CF6; font-size: 8px; }

/* ── SUPPORT CTA ── */
.gaming-support {
  background: linear-gradient(rgba(10,8,20,0.92),rgba(10,8,20,0.92)),
              url(https://cdn.underhost.com/images/supportbg.jpg) center/cover;
  padding: 90px 0;
  border-top: 1px solid rgba(139,92,246,0.12);
}

/* ── animate-on-scroll ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .gaming-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .gaming-plan-footer { justify-content: center; text-align: center; }
  .gaming-stats-bar { gap: 0; }
}
@media (max-width: 768px) {
  .gaming-specs-grid { grid-template-columns: 1fr 1fr; }
  .gaming-hero { min-height: auto; padding: 80px 0 50px; }
  .gaming-hero__orb--1 { width: 300px; height: 300px; }
  .gaming-hero__orb--2 { width: 250px; height: 250px; }
  .gaming-hero__orb--3 { width: 200px; height: 200px; }
  .gaming-stats-bar { flex-direction: column; }
  .gaming-stat { border-right: none; border-bottom: 1px solid rgba(139,92,246,0.2); }
  .gaming-stat:last-child { border-bottom: none; }
  .gaming-cta__box { padding: 40px 24px; }
  .faq-grid-gaming { grid-template-columns: 1fr !important; }
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll, .wow, .gaming-hero__scanline,
  .gaming-badge::before, .gaming-badge::after,
  .gaming-hero__title, .btn-gaming-outline,
  .gaming-cta__box, .loc-flag-wrap::after,
  .gaming-perf-icon::after { animation: none !important; transition: none !important; }
}
