/* ─────────────────────────────────────────
   Anonymous9x VIP Script — style.css
   ───────────────────────────────────────── */

/* ── Google Font: Rajdhani (bold, military, modern) ── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&display=swap');

/* ── Base ── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: #080808;
  color: white;
  font-family: 'Rajdhani', 'Courier New', monospace;
  font-weight: 600;
  margin: 0;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

/* ── Background Canvas (fixed, behind everything) ── */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── LOADER — sits above EVERYTHING including bg-canvas ── */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

#loader #matrix {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.loader-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

#glitchText {
  font-family: 'Rajdhani', monospace;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 12px;
}

#bootText {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.progress-container {
  width: 280px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  box-shadow: 0 0 10px #fff;
  transition: width 0.1s linear;
}

/* ── All page content sits above bg-canvas but below loader ── */
#navbar,
#hero,
#features,
#howtobuy,
#footer {
  position: relative;
  z-index: 1;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar ul li a:hover {
  color: #ffffff;
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 140px 20px 100px;
  background: transparent;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  font-family: 'Rajdhani', monospace;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.discord {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.5);
  color: #a5aeff;
}

.discord:hover {
  background: rgba(88, 101, 242, 0.4);
  border-color: #8891ff;
  color: #fff;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.35);
}

/* ── Script Features heading ── */
h2, h3, h4 {
  font-family: 'Rajdhani', monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Script Container ── */
#script-container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px;
}

/* ── Script Cards ── */
.script-card {
  position: relative;
  flex: 1 1 240px;
  max-width: 300px;
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 22px 20px 18px;
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.script-card::before,
.script-card::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(255, 255, 255, 0.5);
  border-style: solid;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.script-card::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.script-card::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.script-card:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.07), 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.script-card:hover::before,
.script-card:hover::after {
  width: 18px;
  height: 18px;
  border-color: #ffffff;
}

.script-card .card-icon {
  font-size: 1.3rem;
  margin: 0 0 10px;
  opacity: 0.8;
}

.script-card .card-name {
  font-family: 'Rajdhani', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  min-height: 1.4em;
  margin-bottom: 8px;
}

.script-card .card-desc {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── Search ── */
#search {
  padding: 10px 14px;
  width: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #fff;
  font-family: 'Rajdhani', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

#search::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

#search:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}
