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

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: #000;
  color: #e8d8ff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ==============  Fixed background layers  ============== */
.bg, .grid, .orb, .noise, .scanlines, .particles {
  position: fixed;
  pointer-events: none;
}

.bg {
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #0a0a1a 0%, #000005 60%, #000 100%);
  z-index: -10;
}

.grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(80,0,180,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,0,180,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 800px;
  transform: rotateX(60deg) scaleY(2.5) translateY(30%);
  transform-origin: center bottom;
  opacity: 0.45;
  z-index: -9;
}

.orb {
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: pulse 6s ease-in-out infinite alternate;
  z-index: -8;
}
.orb1 {
  width: 700px; height: 700px;
  background: #6600ff;
  top: -200px; left: -100px;
}
.orb2 {
  width: 600px; height: 600px;
  background: #0033ff;
  bottom: -200px; right: -100px;
  animation-delay: 2s;
}
.orb3 {
  width: 400px; height: 400px;
  background: #aa00ff;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation-delay: 1s;
}

@keyframes pulse {
  from { opacity: 0.12; transform: scale(1); }
  to { opacity: 0.22; transform: scale(1.08); }
}

.scanlines {
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.08) 3px, rgba(0,0,0,0.08) 4px);
  z-index: 10;
}

.noise {
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 5;
}

.particles {
  inset: 0;
  z-index: 3;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(150, 80, 255, 0.8);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-800px) translateX(var(--drift)); opacity: 0; }
}

/* ==============  Navbar  ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 0, 15, 0.65);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(136, 51, 255, 0.2);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #cc88ff 60%, #7700ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-ghost { width: 36px; height: 36px; filter: drop-shadow(0 0 10px rgba(150, 50, 255, 0.6)); }
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links a {
  color: rgba(220, 200, 255, 0.75);
  transition: color .2s, text-shadow .2s;
}
.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(180, 100, 255, 0.9);
}
.nav-cta {
  padding: 10px 22px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(150, 80, 255, 0.5);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(120,0,255,0.25), rgba(80,0,200,0.15));
  transition: all .25s;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(150,50,255,0.5), rgba(100,20,220,0.3));
  box-shadow: 0 0 25px rgba(150, 50, 255, 0.5);
  transform: translateY(-1px);
}

/* ==============  Hero  ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
}

.corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 25;
  opacity: 0.5;
}
.corner-tl { top: 100px; left: 40px; border-top: 2px solid #8833ff; border-left: 2px solid #8833ff; }
.corner-tr { top: 100px; right: 40px; border-top: 2px solid #8833ff; border-right: 2px solid #8833ff; }
.corner-bl { bottom: 40px; left: 40px; border-bottom: 2px solid #8833ff; border-left: 2px solid #8833ff; }
.corner-br { bottom: 40px; right: 40px; border-bottom: 2px solid #8833ff; border-right: 2px solid #8833ff; }

.hud {
  position: absolute;
  z-index: 25;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(140, 80, 255, 0.55);
  line-height: 1.6;
}
.hud-tl { top: 110px; left: 140px; }
.hud-tr { top: 110px; right: 140px; text-align: right; }
.hud-bl { bottom: 55px; left: 140px; }
.hud-br { bottom: 55px; right: 140px; text-align: right; }

.ghost-container {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  animation: floatGhost 4s ease-in-out infinite;
}
@keyframes floatGhost {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -54%); }
}
.ghost-svg {
  width: 280px;
  height: 280px;
  filter: drop-shadow(0 0 40px rgba(140, 0, 255, 0.6)) drop-shadow(0 0 80px rgba(80, 0, 200, 0.3));
  opacity: 0.95;
}
.ghost-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,0,255,0.15) 0%, transparent 70%);
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  animation: ghostGlow 4s ease-in-out infinite;
}
@keyframes ghostGlow {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -54%) scale(1.05); }
}

.h-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,50,255,0.4), transparent);
  z-index: 16;
  animation: hLinePulse 4s ease-in-out infinite alternate;
}
.h-line-1 { width: 600px; top: 25%; left: 50%; transform: translateX(-50%); }
.h-line-2 { width: 900px; bottom: 20%; left: 50%; transform: translateX(-50%); }
@keyframes hLinePulse {
  from { opacity: 0.3; }
  to { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 30;
  text-align: center;
  margin-top: 340px;
  max-width: 800px;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: clamp(2px, 0.5vw, 6px);
  text-transform: uppercase;
  line-height: 1;
  padding-right: 0.15em;
  background: linear-gradient(135deg, #ffffff 0%, #cc88ff 40%, #7700ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(150, 50, 255, 0.8));
  animation: textGlow 3s ease-in-out infinite alternate;
  white-space: nowrap;
  overflow: visible;
}
.logo-text.small { font-size: 28px; letter-spacing: 4px; filter: drop-shadow(0 0 15px rgba(150, 50, 255, 0.6)); }

@keyframes textGlow {
  from { filter: drop-shadow(0 0 20px rgba(150, 50, 255, 0.6)); }
  to { filter: drop-shadow(0 0 50px rgba(180, 80, 255, 1)); }
}

.logo-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(150,50,255,0.8), rgba(80,150,255,0.8), transparent);
  margin: 14px 0;
  animation: lineGlow 3s ease-in-out infinite alternate;
}
@keyframes lineGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.slogan {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: clamp(6px, 1.2vw, 14px);
  text-transform: uppercase;
  color: rgba(200, 160, 255, 0.8);
}

.hero-desc {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(220, 200, 255, 0.7);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============  Buttons  ============== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .25s;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #7700ff 0%, #4400cc 100%);
  color: #fff;
  border-color: rgba(180, 120, 255, 0.6);
  box-shadow: 0 0 20px rgba(120, 0, 255, 0.4), inset 0 0 20px rgba(180, 120, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(150, 50, 255, 0.7), inset 0 0 30px rgba(200, 150, 255, 0.2);
}
.btn-ghost {
  background: rgba(80, 0, 180, 0.1);
  color: #d8c8ff;
  border-color: rgba(150, 80, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(120, 20, 220, 0.2);
  border-color: rgba(180, 120, 255, 0.8);
  transform: translateY(-2px);
}
.btn-block { display: block; width: 100%; }

/* ==============  Sections  ============== */
.section {
  position: relative;
  padding: 120px 20px;
  z-index: 20;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(180, 120, 255, 0.8);
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.section-title span {
  background: linear-gradient(135deg, #cc88ff 0%, #7700ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  text-align: center;
  font-size: 17px;
  color: rgba(220, 200, 255, 0.65);
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ==============  Cards  ============== */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.card {
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(40, 0, 80, 0.25), rgba(10, 0, 30, 0.4));
  border: 1px solid rgba(136, 51, 255, 0.25);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 120, 255, 0.6), transparent);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 120, 255, 0.5);
  box-shadow: 0 10px 40px rgba(120, 0, 255, 0.3);
}
.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(120,0,255,0.25), rgba(80,0,200,0.1));
  border: 1px solid rgba(180, 120, 255, 0.4);
  border-radius: 8px;
  color: #cc88ff;
  margin-bottom: 20px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.card p {
  font-size: 15px;
  color: rgba(220, 200, 255, 0.7);
  line-height: 1.65;
}

/* ==============  Games  ============== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.game-card {
  position: relative;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(40, 0, 80, 0.2), rgba(10, 0, 30, 0.3));
  border: 1px solid rgba(136, 51, 255, 0.2);
  border-radius: 6px;
  color: #e8d8ff;
  transition: all .25s;
  cursor: pointer;
  overflow: visible;
}
.game-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.game-card:hover {
  border-color: rgba(180, 120, 255, 0.6);
  background: linear-gradient(135deg, rgba(80, 20, 180, 0.3), rgba(30, 0, 80, 0.4));
  box-shadow: 0 0 25px rgba(120, 0, 255, 0.35);
  z-index: 30;
}

/* Server list popup */
.server-list {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  max-width: 90vw;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(30, 0, 70, 0.95), rgba(10, 0, 30, 0.98));
  border: 1px solid rgba(180, 120, 255, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(120, 0, 255, 0.4), 0 0 0 1px rgba(180, 120, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 50;
}

/* Large popup for games with many servers */
.server-list-large {
  width: min(520px, 92vw);
}
.server-list-large ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
}
.server-list-large ul::-webkit-scrollbar {
  width: 6px;
}
.server-list-large ul::-webkit-scrollbar-track {
  background: rgba(40, 0, 80, 0.3);
  border-radius: 3px;
}
.server-list-large ul::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(180, 120, 255, 0.6), rgba(120, 40, 220, 0.6));
  border-radius: 3px;
}
.server-list-large ul::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(200, 140, 255, 0.9), rgba(150, 60, 240, 0.9));
}
.server-list-large li {
  font-size: 13px;
  padding: 5px 8px;
}
@media (max-width: 600px) {
  .server-list-large ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.server-list::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, rgba(30, 0, 70, 0.95), rgba(30, 0, 70, 0.95));
  border-left: 1px solid rgba(180, 120, 255, 0.5);
  border-top: 1px solid rgba(180, 120, 255, 0.5);
}
.game-card:hover .server-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.server-list-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(180, 120, 255, 0.9);
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(136, 51, 255, 0.25);
  text-align: center;
}
.server-list ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.server-list li {
  padding: 6px 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(230, 210, 255, 0.85);
  background: rgba(80, 20, 180, 0.15);
  border-left: 2px solid rgba(180, 120, 255, 0.5);
  border-radius: 2px;
  transition: all .2s;
}
.server-list li:hover {
  background: rgba(120, 40, 220, 0.3);
  border-left-color: #cc88ff;
  color: #fff;
  padding-left: 14px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}
.dot.green { background: #44ff99; color: #44ff99; }
.games-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(180, 140, 230, 0.6);
  font-style: italic;
}

/* ==============  Pricing  ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.price-per {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(200, 160, 255, 0.7);
  margin-left: 4px;
}
.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: rgba(180, 140, 230, 0.65);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(30, 0, 70, 0.35), rgba(5, 0, 20, 0.5));
  border: 1px solid rgba(136, 51, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 120, 255, 0.6);
  box-shadow: 0 15px 50px rgba(120, 0, 255, 0.35);
}
.price-card.featured {
  border-color: rgba(200, 120, 255, 0.7);
  background: linear-gradient(135deg, rgba(80, 0, 180, 0.3), rgba(20, 0, 60, 0.6));
  box-shadow: 0 0 40px rgba(140, 40, 255, 0.3);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: linear-gradient(135deg, #9933ff, #5500cc);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 0 20px rgba(150, 50, 255, 0.6);
}
.price-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(180, 120, 255, 0.7);
  margin-bottom: 8px;
}
.price-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  color: #cc88ff;
}
.price-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 54px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #cc88ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-sub {
  font-size: 13px;
  color: rgba(180, 140, 230, 0.7);
  margin-bottom: 24px;
}
.price-features {
  margin-bottom: 28px;
}
.price-features li {
  padding: 10px 0;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: rgba(220, 200, 255, 0.8);
  border-bottom: 1px solid rgba(136, 51, 255, 0.12);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 10px;
  border-left: 2px solid #aa66ff;
  border-bottom: 2px solid #aa66ff;
  transform: rotate(-45deg);
  opacity: 0.9;
}

/* ==============  FAQ  ============== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: linear-gradient(135deg, rgba(30, 0, 70, 0.25), rgba(5, 0, 20, 0.4));
  border: 1px solid rgba(136, 51, 255, 0.25);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] {
  border-color: rgba(180, 120, 255, 0.5);
  box-shadow: 0 0 25px rgba(120, 0, 255, 0.2);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: #cc88ff;
  font-weight: 300;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: #cc88ff; }
.faq-item p {
  padding: 0 24px 22px;
  color: rgba(220, 200, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

/* ==============  Contact  ============== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 50px;
}
.contact-card {
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(30, 0, 70, 0.3), rgba(5, 0, 20, 0.5));
  border: 1px solid rgba(136, 51, 255, 0.3);
  border-radius: 8px;
  text-align: center;
  transition: all .25s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 120, 255, 0.6);
  box-shadow: 0 10px 30px rgba(120, 0, 255, 0.3);
}
.contact-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cc88ff;
}
.contact-icon svg { width: 32px; height: 32px; filter: drop-shadow(0 0 8px rgba(180, 100, 255, 0.5)); }
.contact-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-card p {
  font-size: 14px;
  color: rgba(220, 200, 255, 0.8);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-sub {
  font-size: 11px;
  color: rgba(180, 140, 230, 0.55);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.contact-form {
  padding: 36px;
  background: linear-gradient(135deg, rgba(30, 0, 70, 0.3), rgba(5, 0, 20, 0.5));
  border: 1px solid rgba(136, 51, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(180, 120, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(10, 0, 25, 0.6);
  border: 1px solid rgba(136, 51, 255, 0.3);
  border-radius: 4px;
  color: #e8d8ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  transition: all .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(180, 120, 255, 0.7);
  box-shadow: 0 0 15px rgba(150, 50, 255, 0.3);
  background: rgba(20, 0, 40, 0.7);
}
.form-group textarea { resize: vertical; font-family: 'Rajdhani', sans-serif; }
.form-group select option { background: #0a0020; color: #e8d8ff; }

/* ==============  Footer  ============== */
.footer {
  position: relative;
  z-index: 20;
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(136, 51, 255, 0.2);
  background: rgba(5, 0, 15, 0.5);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(136, 51, 255, 0.15);
}
.footer-brand p {
  color: rgba(180, 140, 230, 0.6);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-links a { color: rgba(220, 200, 255, 0.7); transition: color .2s; }
.footer-links a:hover { color: #cc88ff; }
.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(140, 100, 200, 0.5);
}

/* ==============  Responsive  ============== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hud-tl, .hud-tr, .hud-bl, .hud-br { display: none; }
  .corner { display: none; }
  .hero-content { margin-top: 280px; }
  .ghost-svg { width: 220px; height: 220px; }
  .ghost-glow { width: 380px; height: 380px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
  .nav-inner { padding: 14px 20px; }
}
@media (max-width: 500px) {
  .nav-cta { padding: 8px 14px; font-size: 10px; }
  .hero-content { margin-top: 240px; }
  .hero-desc { font-size: 16px; }
  .contact-form { padding: 24px 20px; }
}
