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

:root {
  --bg: #050514;
  --panel: rgba(12, 12, 38, .78);
  --panel2: rgba(18, 10, 42, .72);
  --line: rgba(110, 70, 255, .35);
  --blue: #348cff;
  --cyan: #00d4ff;
  --pink: #ff2ed1;
  --purple: #8a5cff;
  --text: #ffffff;
  --muted: #bfc4ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(2,2,10,.62), rgba(3,3,18,.88)),
    url("assets/background.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(102, 63, 255, .22), transparent 18rem),
    radial-gradient(circle at 70% 10%, rgba(255, 46, 209, .18), transparent 24rem),
    linear-gradient(90deg, rgba(0, 212, 255, .07), transparent 35%, rgba(255, 46, 209, .07));
  opacity: .95;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.15));
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 12, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  height: 86px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-top: 32px;
  filter:
    drop-shadow(0 0 14px rgba(0, 212, 255, .7))
    drop-shadow(0 0 18px rgba(255, 46, 209, .45));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
}

.nav a {
  color: #e7e8ff;
  transition: .18s;
}

.nav a:hover {
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 46, 209, .8);
}

.discord-nav {
  padding: 12px 22px;
  border: 1px solid rgba(255, 46, 209, .8);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(255, 46, 209, .26);
  background: rgba(122, 49, 255, .18);
}

.hero {
  max-width: 1360px;
  min-height: 560px;
  margin: 0 auto;
  padding: 110px 28px 38px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 28px auto;
  height: 460px;
  border-radius: 0 0 26px 26px;
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 100, 255, .38), transparent 18rem),
    radial-gradient(circle at 75% 28%, rgba(255, 46, 209, .38), transparent 22rem),
    linear-gradient(135deg, rgba(8, 8, 26, .2), rgba(25, 7, 60, .35));
  filter: blur(.1px);
  z-index: -1;
}

.hero-bg-logo {
  position: absolute;
  right: 0;
  top: 75px;
  width: min(620px, 48vw);
  opacity: .24;
  filter:
    drop-shadow(0 0 38px rgba(255, 46, 209, .9))
    drop-shadow(0 0 52px rgba(0, 212, 255, .6));
  transform: rotate(-2deg);
}

.hero-bg-logo img {
  width: 100%;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 46, 209, .8);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 46, 209, .08);
  box-shadow: 0 0 20px rgba(255, 46, 209, .32);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 1000;
}

h1 {
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .9;
  text-transform: uppercase;
  font-weight: 1000;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

h1 span {
  display: block;
  color: white;
  text-shadow: 0 0 24px rgba(255,255,255,.2);
}

h1 {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(255, 46, 209, .16);
}

.hero h2 {
  font-size: 19px;
  margin-bottom: 18px;
}

.hero p {
  color: #e0e2ff;
  max-width: 620px;
  font-size: 16px;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  transition: .18s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.pink {
  background: rgba(255, 46, 209, .12);
  border: 1px solid rgba(255, 46, 209, .9);
  box-shadow: 0 0 28px rgba(255, 46, 209, .28);
}

.btn.blue {
  background: rgba(0, 118, 255, .10);
  border: 1px solid rgba(52, 140, 255, .85);
  box-shadow: 0 0 28px rgba(52, 140, 255, .22);
}

.features {
  max-width: 1290px;
  margin: -18px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(121, 81, 255, .36);
  border-radius: 12px;
  background: rgba(15, 10, 42, .62);
  box-shadow: 0 0 34px rgba(80, 40, 255, .18);
  overflow: hidden;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(255,255,255,.035);
}

.icon {
  font-size: 32px;
  color: var(--pink);
  text-shadow: 0 0 22px rgba(255, 46, 209, .8);
}

.blue-icon {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(0, 212, 255, .8);
}

.feature h3 {
  font-size: 15px;
  color: #d7ceff;
  margin-bottom: 4px;
}

.feature p {
  color: #aeb4e8;
  font-size: 13px;
}

.packages {
  max-width: 1290px;
  margin: 0 auto;
  padding: 34px 28px 26px;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.mini-icon {
  color: var(--cyan);
  font-size: 30px;
  text-shadow: 0 0 22px rgba(0, 212, 255, .7);
}

.section-title h2 {
  text-transform: uppercase;
  font-size: 32px;
}

.section-title p {
  color: #bfc4ff;
  font-size: 14px;
}

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

.card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(18, 20, 66, .76), rgba(9, 8, 28, .78));
  border: 1px solid rgba(52, 140, 255, .5);
  box-shadow:
    inset 0 0 40px rgba(52, 140, 255, .04),
    0 0 34px rgba(52, 140, 255, .13);
}

.featured-card {
  border-color: rgba(255, 46, 209, .95);
  box-shadow:
    inset 0 0 50px rgba(255, 46, 209, .06),
    0 0 42px rgba(255, 46, 209, .24);
}

.label {
  position: absolute;
  top: -14px;
  right: -1px;
  padding: 8px 18px;
  border-radius: 8px 8px 0 8px;
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 46, 209, .65);
}

.cube {
  color: var(--blue);
  font-size: 36px;
  margin-bottom: 8px;
  text-shadow: 0 0 22px rgba(52, 140, 255, .8);
}

.pink-cube {
  color: var(--pink);
  text-shadow: 0 0 22px rgba(255, 46, 209, .8);
}

.card h3 {
  color: var(--blue);
  font-size: 28px;
  text-transform: uppercase;
}

.featured-card h3 {
  color: var(--pink);
}

.card p {
  color: #aeb4e8;
  margin-bottom: 14px;
}

.card ul {
  list-style: none;
  margin: 18px 0 24px;
}

.card li {
  color: #e3e6ff;
  margin: 8px 0;
  font-size: 14px;
}

.card li::before {
  content: "✓";
  color: var(--cyan);
  margin-right: 10px;
}

.featured-card li::before {
  color: var(--pink);
}

.price {
  color: var(--blue);
  font-size: 34px;
  font-weight: 1000;
  margin-bottom: 16px;
}

.price span {
  font-size: 13px;
  color: #bfc4ff;
}

.pink-price {
  color: var(--pink);
}

.card-btn {
  position: absolute;
  right: 26px;
  bottom: 26px;
  padding: 10px 18px;
  border: 1px solid rgba(52, 140, 255, .9);
  border-radius: 7px;
  color: white;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(52, 140, 255, .2);
}

.pink-border {
  border-color: rgba(255, 46, 209, .95);
  box-shadow: 0 0 20px rgba(255, 46, 209, .24);
}

.about {
  max-width: 1290px;
  margin: 0 auto 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(121, 81, 255, .36);
  border-radius: 12px;
  background: rgba(15, 10, 42, .62);
  box-shadow: 0 0 34px rgba(80, 40, 255, .15);
  overflow: hidden;
}

.about-text,
.about-box {
  padding: 22px 26px;
  background: rgba(255,255,255,.035);
}

.about h2 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 24px;
}

.about h2 span {
  color: var(--pink);
}

.about p {
  color: #bfc4ff;
  font-size: 14px;
  margin-bottom: 10px;
}

.about-icon {
  color: var(--blue);
  font-size: 34px;
  margin-bottom: 14px;
  text-shadow: 0 0 22px rgba(52, 140, 255, .8);
}

.about-box h3 {
  color: #8fa8ff;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 8px;
}

.faq {
  max-width: 1290px;
  margin: 0 auto;
  padding: 34px 28px;
}

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

.faq-item {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(121, 81, 255, .36);
}

.faq-item h3 {
  color: var(--cyan);
  margin-bottom: 10px;
}

.faq-item p {
  color: #cbd0ff;
}

.support {
  max-width: 1290px;
  margin: 0 auto 34px;
  padding: 42px 28px;
  text-align: center;
  border: 1px solid rgba(255, 46, 209, .38);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,46,209,.16), transparent 24rem),
    rgba(255,255,255,.04);
}

.support h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.support p {
  color: #cbd0ff;
  margin-bottom: 22px;
}

.footer {
  border-top: 1px solid rgba(121, 81, 255, .28);
  background: rgba(3, 3, 12, .78);
}

.footer-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr .7fr;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0, 212, 255, .5))
    drop-shadow(0 0 12px rgba(255, 46, 209, .4));
}

.footer-brand p,
.footer-copy {
  color: #9fa6dc;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
}

.footer-links a {
  color: #d8dcff;
}

.footer-copy {
  text-align: right;
}

@media (max-width: 980px) {
  .header-inner {
    height: auto;
    padding: 18px;
    flex-direction: column;
  }

  .brand img {
    margin-top: 0;
    width: 92px;
    height: 92px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-bg-logo {
    opacity: .12;
    width: 90vw;
    top: 120px;
    right: -120px;
  }

  .features,
  .cards,
  .about,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: left;
  }

  .card-btn {
    position: static;
    display: inline-block;
  }
}




/* === Neon Feinschliff === */

.features,
.about,
.support {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(10, 12, 35, .72), rgba(20, 5, 45, .62));
  border: 1px solid rgba(255, 46, 209, .28);
  box-shadow:
    0 0 35px rgba(52, 140, 255, .16),
    0 0 55px rgba(255, 46, 209, .10),
    inset 0 0 40px rgba(255,255,255,.03);
}

.card,
.faq-item {
  backdrop-filter: blur(20px);
  background:
    radial-gradient(circle at top left, rgba(52, 140, 255, .18), transparent 14rem),
    radial-gradient(circle at bottom right, rgba(255, 46, 209, .13), transparent 14rem),
    rgba(7, 8, 28, .78);
  transition: .22s ease;
}

.card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 45px rgba(52, 140, 255, .25),
    0 0 65px rgba(255, 46, 209, .18);
}

.featured-card:hover {
  box-shadow:
    0 0 55px rgba(255, 46, 209, .38),
    0 0 75px rgba(52, 140, 255, .18);
}

.hero::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,140,255,.9), rgba(255,46,209,.9), transparent);
  box-shadow: 0 0 24px rgba(255,46,209,.55);
}

