:root {
  --bg-dark: #070809;
  --bg-soft: #101214;
  --panel: rgba(11, 13, 15, 0.76);
  --panel-strong: rgba(10, 11, 13, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(218, 201, 174, 0.12);
  --line-strong: rgba(218, 201, 174, 0.2);
  --text: #f4ede3;
  --muted: rgba(244, 237, 227, 0.72);
  --accent: #6f2632;
  --accent-strong: #90463f;
  --gold: #c4a06a;
  --gold-soft: rgba(196, 160, 106, 0.11);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(180deg, rgba(7, 8, 9, 0.46), rgba(7, 8, 9, 0.92)),
    radial-gradient(circle at top right, rgba(111, 38, 50, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(196, 160, 106, 0.09), transparent 20%),
    url("gta.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
}

body.staff-page {
  background-image:
    linear-gradient(180deg, rgba(7, 8, 9, 0.5), rgba(7, 8, 9, 0.94)),
    radial-gradient(circle at top left, rgba(111, 38, 50, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(196, 160, 106, 0.09), transparent 20%),
    url("gta.jpg");
}

a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 44%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
  z-index: -1;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.particle {
  position: absolute;
  bottom: -4vh;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(244, 237, 227, 0.55);
  box-shadow: 0 0 8px rgba(196, 160, 106, 0.1);
  animation: float linear infinite;
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-110vh);
  }
}

#cursor {
  width: 12px;
  height: 12px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ead8b7);
  box-shadow: 0 0 14px rgba(196, 160, 106, 0.36), 0 0 28px rgba(196, 160, 106, 0.12);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at center, rgba(196, 160, 106, 0.08), transparent 24%),
    #050505;
  z-index: 99999;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: min(300px, 76vw);
  filter: drop-shadow(0 0 24px rgba(196, 160, 106, 0.14));
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.loader-bar {
  width: min(280px, 70vw);
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.loader-progress {
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, #6e2633, #8b403d, var(--gold));
  animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.loader-text {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.9), rgba(8, 9, 10, 0.48));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196, 160, 106, 0.08);
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: clamp(106px, 11vw, 148px);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(196, 160, 106, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(113, 41, 53, 0.9), rgba(154, 73, 66, 0.82));
  transform: translateY(-1px);
}

main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 68px 0 82px;
}

.hero-shell,
.premium-hero {
  position: relative;
}

.premium-hero,
.staff-section {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.premium-hero::before,
.staff-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 36%);
  pointer-events: none;
}

.premium-hero::after,
.staff-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 160, 106, 0.34), transparent);
  pointer-events: none;
}

.premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 0;
}

.hero-copy {
  padding: clamp(34px, 5vw, 62px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 26px;
  max-width: 680px;
  color: rgba(244, 237, 227, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-logo {
  width: min(280px, 64vw);
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 30px rgba(196, 160, 106, 0.12));
}

.hero-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-description,
.staff-intro,
.staff-copy,
.standard-item p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-description {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1rem;
}

.hero-tags,
.staff-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span,
.staff-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 160, 106, 0.12);
  background: rgba(196, 160, 106, 0.05);
  color: #ebdfcc;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #6f2632, #944940);
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(111, 38, 50, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow: 0 18px 40px rgba(111, 38, 50, 0.28);
}

.button-secondary {
  border: 1px solid rgba(196, 160, 106, 0.16);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.launch-card {
  position: relative;
  padding: clamp(28px, 4vw, 38px);
  border-left: 1px solid rgba(196, 160, 106, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(8, 9, 11, 0.42);
}

.launch-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-label,
.meta-label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.launch-date,
.date,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196, 160, 106, 0.1);
  color: #e6c790;
  border: 1px solid rgba(196, 160, 106, 0.18);
}

.premium-countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.time-box {
  padding: 18px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(230, 220, 202, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--panel-strong);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.time-box:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 160, 106, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.time-box span {
  display: block;
  margin-bottom: 8px;
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: #f6efe6;
  text-shadow: 0 0 20px rgba(196, 160, 106, 0.1);
}

.time-box p,
.countdown-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown-text {
  margin-top: 14px;
  font-size: 0.78rem;
}

.launch-divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, transparent, rgba(196, 160, 106, 0.24), transparent);
}

.standards-list {
  display: grid;
  gap: 16px;
}

.standard-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(196, 160, 106, 0.08);
}

.standard-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.standard-item span {
  color: var(--gold);
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.standard-item h2 {
  margin: 0 0 6px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-item p {
  margin: 0;
  font-size: 0.92rem;
}

.staff-main {
  padding: 60px 0 76px;
}

.staff-section {
  padding: clamp(30px, 4vw, 50px);
}

.section-top {
  max-width: 780px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(196, 160, 106, 0.12);
}

.staff-title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 6.6vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.staff-intro {
  margin: 18px 0 0;
}

.staff-grid {
  counter-reset: staff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1000px;
}

.staff-card {
  counter-increment: staff;
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid rgba(230, 220, 202, 0.08);
  border-radius: 20px;
  text-align: center;
  transform-style: preserve-3d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--panel-strong);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.staff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 34%);
  pointer-events: none;
}

.staff-card::after {
  content: counter(staff, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(230, 220, 202, 0.1);
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.staff-card[data-role="Fundador"] {
  border-color: rgba(196, 160, 106, 0.18);
  background:
    linear-gradient(180deg, rgba(196, 160, 106, 0.06), rgba(255, 255, 255, 0.015)),
    var(--panel-strong);
}

.staff-card:hover {
  border-color: rgba(196, 160, 106, 0.2);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.staff-card img {
  width: 102px;
  height: 102px;
  margin: 6px auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 160, 106, 0.46);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  transform: translateZ(28px);
}

.staff-card h3 {
  margin: 0 0 14px;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transform: translateZ(18px);
}

.staff-copy {
  margin: 14px 0 0;
  font-size: 0.9rem;
  transform: translateZ(12px);
}

.role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateZ(14px);
}

.owner {
  background: linear-gradient(135deg, rgba(128, 47, 57, 0.95), rgba(164, 79, 70, 0.92));
}

.admin {
  background: linear-gradient(135deg, rgba(88, 71, 48, 0.92), rgba(164, 132, 90, 0.84));
  color: #fbf5ec;
}

.director {
  background: linear-gradient(135deg, rgba(102, 36, 51, 0.96), rgba(188, 132, 76, 0.9));
  color: #fff7ee;
}

.developer {
  background: linear-gradient(135deg, rgba(45, 64, 82, 0.94), rgba(103, 140, 167, 0.84));
  color: #f6fbff;
}

.back {
  margin-top: 30px;
}

body.opened .time-box span {
  color: #8df2aa;
  text-shadow: 0 0 18px rgba(141, 242, 170, 0.34);
}

body.opened .status-pill {
  color: #baf3ca;
  background: rgba(62, 148, 91, 0.16);
  border-color: rgba(93, 201, 124, 0.28);
}

#discord-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4952c3, #313cae);
  box-shadow: 0 18px 34px rgba(49, 60, 174, 0.26);
  z-index: 100;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

body.loaded #discord-button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#discord-button:hover {
  box-shadow: 0 20px 38px rgba(49, 60, 174, 0.34);
  transform: translateY(-3px);
}

#discord-button img {
  width: 30px;
  height: 30px;
}

#discord-widget {
  position: fixed;
  right: 24px;
  bottom: 98px;
  width: min(340px, calc(100vw - 32px));
  height: 440px;
  border-radius: 20px;
  border: 1px solid rgba(230, 220, 202, 0.08);
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#discord-widget.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#discord-widget iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
}

@media (max-width: 1100px) {
  .premium-hero {
    grid-template-columns: 1fr;
  }

  .launch-card {
    border-left: none;
    border-top: 1px solid rgba(196, 160, 106, 0.1);
  }

  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 18px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    min-width: 210px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(12, 13, 15, 0.96);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .nav-links a {
    width: 100%;
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  main {
    width: min(100% - 22px, 1280px);
  }

  .hero,
  .staff-main {
    padding: 26px 0 48px;
  }

  .premium-hero,
  .staff-section {
    border-radius: 24px;
  }

  .hero-copy,
  .launch-card {
    padding: 24px 20px;
  }

  .premium-countdown {
    gap: 10px;
  }

  .time-box {
    padding: 16px 10px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .staff-grid {
    gap: 16px;
  }

  #discord-button {
    right: 16px;
    bottom: 16px;
  }

  #discord-widget {
    right: 11px;
    bottom: 88px;
    width: calc(100vw - 22px);
    height: 62vh;
  }
}

@media (max-width: 560px) {
  .navbar {
    flex-direction: row;
    align-items: center;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-title,
  .staff-title {
    line-height: 0.96;
  }

  .premium-countdown,
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
