* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #09090f;
  color: #e5e5e5;
  font-family: "Fira Code", monospace;
  overflow-x: hidden;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* TASKBAR */
.taskbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: center;
  gap: 30px;

  padding: 14px 20px;

  background: rgba(9, 9, 15, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #18181b;
}

.taskbar a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;

  padding: 8px 16px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  opacity: 0.8;
  transition: 0.2s ease;
}

.taskbar a:hover {
  opacity: 1;
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.5);
  color: #ffffff;
}

.taskbar img {
  width: 38px;
  height: 38px;

  object-fit: cover;

  border-radius: 50%;

  border: 1px solid #27272a;

  margin-right: 10px;
}

/* OFFSET FIX */
section,
header {
  scroll-margin-top: 70px;
}

/* HERO */
.hero {
  min-height: 55vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 80px 40px;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(124,58,237,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(59,130,246,0.20), transparent 40%),
    #09090f;
}

.hero-content {
  max-width: 850px;
  z-index: 2;
}

/* TITLE */
.hero h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 22px;

  color: #ffffff;
  letter-spacing: -2px;
}

/* DESCRIPTION */
.hero p {
  color: #a1a1aa;
  font-size: 18px;
  line-height: 1.8;

  max-width: 760px;
  margin: 0 auto;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 35px;

  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* HERO META */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 12px;

  margin-top: 24px;
  flex-wrap: wrap;
}

/* META ITEMS */
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;

  background: rgba(17,17,23,0.85);
  border: 1px solid #27272a;

  padding: 10px 14px;
  border-radius: 10px;

  color: #a1a1aa;
  text-decoration: none;
  font-size: 13px;

  backdrop-filter: blur(10px);

  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.meta-item:hover {
  border-color: #7c3aed;
  color: #e5e5e5;

  transform: translateY(-2px);
}

.btn {
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #27272a;
  transition: 0.2s ease;
}

.primary {
  background: #7c3aed;
  color: white;
}

.primary:hover {
  background: #6d28d9;
}

.secondary {
  background: #111117;
  color: white;
}

.secondary:hover {
  background: #1a1a25;
}

/* SHOWCASE */
.showcase {
  max-width: 1200px;
  margin: auto;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.showcase.reverse {
  flex-direction: row-reverse;
}

.showcase-text {
  flex: 1;
}

.showcase-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.showcase-text p {
  color: #a1a1aa;
  line-height: 1.8;
}

.showcase-image {
  flex: 1;
}

/* COMBAT UI */
.combat-ui {
  display: inline-block;
}

.main {
  display: block;
}

.dropdown-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.dropdown-block {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.dropdown {
  display: block;
  position: relative;
  z-index: 2;
}

.panel {
  position: absolute;
  top: 100%;
  left: 0;

  opacity: 0;
  pointer-events: none;
  transition: 0.15s ease;

  z-index: 999;
}

.dropdown-block:hover {
  z-index: 50;
}

.dropdown-block:hover .panel {
  opacity: 1;
  z-index: 9999;
}

.level-up-buttons {
  padding-top: 5px;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  color: #71717a;
  border-top: 1px solid #18181b;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 48px;
  }

  .showcase,
  .showcase.reverse {
    flex-direction: column;
    text-align: center;
  }

  .showcase {
    padding: 80px 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* FAQ */
.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* TITLE */
.faq-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #e5e5e5;
}

/* EACH FAQ ITEM (uses your showcase system) */
.faq-wrapper .faq-item {
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

/* TEXT COLUMN */
.faq-wrapper .showcase-text {
  max-width: 600px;
}

/* QUESTION TITLE INSIDE CARD */
.faq-wrapper .showcase-text h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 12px;
}

/* NORMAL TEXT */
.faq-wrapper .showcase-text p {
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* STRONG TEXT (existing <b>) */
.faq-wrapper .showcase-text b {
  color: #e5e5e5;
}

/* HIGHLIGHTED KEYWORDS */
.faq-wrapper .highlight {
  color: #ed3a64;
  font-weight: 600;
}

/* WARNING / RESTRICTION TEXT */
.faq-wrapper .warning {
  color: #fbbf24;
  font-weight: 500;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat {
  background: #111117;
  border: 1px solid #27272a;
  border-radius: 10px;
  padding: 10px 12px;

  transition: 0.2s ease;
}

.stat:hover {
  border-color: #7c3aed;
  transform: translateY(-2px);
}

.stat p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #a1a1aa;
}