:root {
  --primary-400: #8093f8;
  --primary-500: #6366f1;
  --primary-700: #4338ca;
  --accent-400: #fb7185;
  --accent-500: #f43f5e;
  --accent-600: #e11d48;
  --night-900: #11111b;
  --night-950: #0a0a0f;
}

@font-face {
  font-family: "Rustic Roadway";
  src: url("../js/RusticRoadway.otf") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  line-height: 1.6;
}

.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-8 { bottom: 2rem; }
.right-8 { right: 2rem; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[9999\] { z-index: 9999; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-28 { height: 7rem; }
.h-full { height: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.max-w-full { max-width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.min-h-screen { min-height: 100vh; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.place-items-center { place-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.object-cover { object-fit: cover; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.border-t { border-top: 1px solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.bg-night-900 { background-color: var(--night-900); }
.bg-night-950 { background-color: var(--night-950); }
.bg-night-900\/95 { background-color: rgba(17, 17, 27, 0.95); }
.bg-night-950\/95 { background-color: rgba(10, 10, 15, 0.95); }
.bg-primary-500 { background-color: var(--primary-500); }
.bg-accent-500 { background-color: var(--accent-500); }
.bg-green-500 { background-color: #22c55e; }
.bg-primary-500\/10 { background-color: rgba(99, 102, 241, 0.1); }
.bg-primary-500\/20 { background-color: rgba(99, 102, 241, 0.2); }
.bg-accent-500\/10 { background-color: rgba(244, 63, 94, 0.1); }
.bg-accent-500\/20 { background-color: rgba(244, 63, 94, 0.2); }
.bg-green-500\/10 { background-color: rgba(34, 197, 94, 0.1); }
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }
.bg-purple-500\/10 { background-color: rgba(168, 85, 247, 0.1); }
.bg-purple-500\/20 { background-color: rgba(168, 85, 247, 0.2); }
.bg-yellow-500\/10 { background-color: rgba(234, 179, 8, 0.1); }
.bg-yellow-500\/20 { background-color: rgba(234, 179, 8, 0.2); }
.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-cyan-500\/20 { background-color: rgba(6, 182, 212, 0.2); }
.bg-\[linear-gradient\(90deg\,rgba\(49\,46\,129\,\.32\)\,\#11111b\,rgba\(225\,29\,72\,\.24\)\)\] { background: linear-gradient(90deg, rgba(49,46,129,.32), #11111b, rgba(225,29,72,.24)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-primary-300 { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165,180,252,0)); }
.from-primary-400 { --tw-gradient-from: var(--primary-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(128,147,248,0)); }
.from-primary-500 { --tw-gradient-from: var(--primary-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99,102,241,0)); }
.from-primary-900 { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49,46,129,0)); }
.from-primary-900\/30 { --tw-gradient-from: rgba(49,46,129,0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49,46,129,0)); }
.from-accent-500 { --tw-gradient-from: var(--accent-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244,63,94,0)); }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34,197,94,0)); }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168,85,247,0)); }
.from-yellow-300 { --tw-gradient-from: #fde047; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253,224,71,0)); }
.from-night-900 { --tw-gradient-from: var(--night-900); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17,17,27,0)); }
.from-night-950 { --tw-gradient-from: var(--night-950); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(10,10,15,0)); }
.from-night-950\/85 { --tw-gradient-from: rgba(10,10,15,0.85); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(10,10,15,0)); }
.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255,255,255,0)); }
.via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #c084fc, var(--tw-gradient-to, rgba(192,132,252,0)); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.via-night-900 { --tw-gradient-stops: var(--tw-gradient-from), var(--night-900), var(--tw-gradient-to, rgba(17,17,27,0)); }
.via-night-950 { --tw-gradient-stops: var(--tw-gradient-from), var(--night-950), var(--tw-gradient-to, rgba(10,10,15,0)); }
.via-night-950\/60 { --tw-gradient-stops: var(--tw-gradient-from), rgba(10,10,15,0.6), var(--tw-gradient-to, rgba(10,10,15,0)); }
.to-primary-700 { --tw-gradient-to: var(--primary-700); }
.to-accent-400 { --tw-gradient-to: var(--accent-400); }
.to-accent-600 { --tw-gradient-to: var(--accent-600); }
.to-accent-600\/20 { --tw-gradient-to: rgba(225,29,72,0.2); }
.to-green-700 { --tw-gradient-to: #15803d; }
.to-purple-300 { --tw-gradient-to: #d8b4fe; }
.to-purple-700 { --tw-gradient-to: #7e22ce; }
.to-purple-900 { --tw-gradient-to: #581c87; }
.to-orange-400 { --tw-gradient-to: #fb923c; }
.to-night-900 { --tw-gradient-to: var(--night-900); }
.to-night-950 { --tw-gradient-to: var(--night-950); }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-28 { padding-top: 7rem; }
.text-center { text-align: center; }
.font-body { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.font-display { font-family: Orbitron, Inter, system-ui, sans-serif; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.text-transparent { color: transparent; }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-primary-400 { color: var(--primary-400); }
.text-accent-400 { color: var(--accent-400); }
.text-green-400 { color: #4ade80; }
.text-purple-400 { color: #c084fc; }
.text-yellow-400 { color: #facc15; }
.text-cyan-400 { color: #22d3ee; }
.text-blue-400 { color: #60a5fa; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.opacity-0 { opacity: 0; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0,0,0,.15)); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: 300ms; }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
.hover\:text-white:hover { color: #fff; }
.hover\:bg-primary-600:hover { background-color: #5046e5; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

@keyframes pulse {
  50% { opacity: .5; }
}

@media (min-width: 640px) {
  .sm\:mx-auto { margin-left: auto; margin-right: auto; }
  .sm\:w-full { width: 100%; }
  .sm\:max-w-sm { max-width: 24rem; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 768px) {
  .md\:mt-16 { margin-top: 4rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-start-2 { grid-column-start: 2; }
  .lg\:mb-20 { margin-bottom: 5rem; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
}

::selection {
  background: var(--primary-500);
  color: #fff;
}

#preloader {
  transition: opacity 500ms ease, visibility 500ms ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid transparent;
  border-right-color: var(--accent-500);
  border-top-color: var(--primary-500);
  border-radius: 999px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#navbar.is-scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.32);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  transform: translateX(-50%);
  transition: width 260ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.hamburger-menu {
  display: flex;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #fff;
  transition: transform 260ms ease, opacity 260ms ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, border-color 260ms ease;
}

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

.btn-primary {
  border-radius: 0.75rem;
  padding: 0.75rem 1.45rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 8px 26px rgba(99, 102, 241, 0.42);
}

.btn-primary-lg,
.btn-secondary-lg,
.btn-white-lg,
.btn-outline-lg {
  min-height: 56px;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-weight: 700;
}

.btn-primary-lg {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  box-shadow: 0 5px 22px rgba(99, 102, 241, 0.42);
}

.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(99, 102, 241, 0.52);
}

.btn-secondary-lg {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-secondary-lg:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.btn-white-lg {
  background: #fff;
  color: var(--night-950);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.18);
}

.btn-outline-lg {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

.btn-outline-lg:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

#hero-image {
  transform: none;
}

.welcome-to-title {
  font-family: "Rustic Roadway", serif;
  font-size: 0.85em;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(128px);
  pointer-events: none;
}

.ambient-primary {
  top: 23%;
  left: 20%;
  width: 24rem;
  height: 24rem;
  background: rgba(99, 102, 241, 0.2);
  animation: soft-pulse 5s ease-in-out infinite;
}

.ambient-accent {
  right: 20%;
  bottom: 22%;
  width: 20rem;
  height: 20rem;
  background: rgba(244, 63, 94, 0.2);
  animation: soft-pulse 5s ease-in-out 900ms infinite;
}

.cta-primary {
  top: -8rem;
  left: 20%;
  width: 24rem;
  height: 24rem;
  background: rgba(99, 102, 241, 0.3);
}

.cta-accent {
  right: 20%;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(124, 58, 237, 0.28);
}

/* Royal Pass Section — Car Showcase */
.rp-car-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 320px;
  margin: 0 auto;
  max-width: 900px;
}
.rp-coming-soon::before {
  content: "COMING SOON";
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 10;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.78);
  padding: 0.85rem 1.5rem;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: clamp(0.9rem, 2.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  white-space: nowrap;
}

.rp-coming-soon .rp-car-img {
  filter: blur(8px) saturate(0.65) brightness(0.68) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.rp-coming-soon .rp-car-label {
  filter: blur(2px);
  opacity: 0.58;
}

.rp-coming-soon .rp-car-item {
  cursor: default;
  pointer-events: none;
}

.rp-coming-soon .rp-car-item:hover .rp-car-img,
.rp-coming-soon .rp-car-item:hover .rp-car-label {
  transform: none;
}

.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
  filter: grayscale(0.25);
}

.rp-car-item {
  position: relative;
  text-align: center;
  transition: transform 400ms ease, filter 400ms ease;
  cursor: pointer;
}

.rp-car-img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 400ms ease, filter 400ms ease;
}

.rp-car-item:hover .rp-car-img {
  transform: scale(1.08) translateY(-8px);
  filter: drop-shadow(0 20px 50px rgba(99, 102, 241, 0.4));
}

.rp-car-left {
  width: 35%;
  z-index: 1;
  margin-right: -3%;
  transform: translateY(10px);
}

.rp-car-center {
  width: 42%;
  z-index: 3;
  transform: translateY(-10px);
}

.rp-car-right {
  width: 35%;
  z-index: 2;
  margin-left: -3%;
  transform: translateY(10px);
}

.rp-car-label {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.04em;
  transition: all 300ms ease;
}

.rp-car-label.featured {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.35);
}

.rp-car-item:hover .rp-car-label {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.rp-car-item:hover .rp-car-label.featured {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.5);
}

/* Benefit Cards */
.rp-benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.rp-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.rp-benefit-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 1rem;
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.rp-benefit-card h4 {
  font-family: Orbitron, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.rp-benefit-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .rp-car-showcase {
    min-height: 180px;
  }
  .rp-car-left { width: 38%; margin-right: -5%; }
  .rp-car-center { width: 44%; }
  .rp-car-right { width: 38%; margin-left: -5%; }
  .rp-benefit-card { padding: 1.2rem 1rem; }
  .rp-benefit-icon { width: 48px; height: 48px; font-size: 1.25rem; }
}

@keyframes soft-pulse {
  0%, 100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.stat-value {
  display: block;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  animation: bounce 2s infinite;
}

.mouse {
  position: relative;
  display: block;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-400);
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  to {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1.4rem;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
}

.section-copy {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.125rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-400), var(--accent-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-reverse {
  background: linear-gradient(90deg, var(--accent-400), var(--primary-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(90deg, #c084fc, var(--primary-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-green {
  background: linear-gradient(90deg, #4ade80, var(--primary-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card,
.step-card,
.team-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014));
  padding: 2rem;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.feature-card {
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover,
.step-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.32);
  transition: transform 260ms ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon.accent {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.32);
}

.feature-icon.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.28);
}

.feature-icon.purple {
  background: linear-gradient(135deg, #a855f7, #9333ea);
}

.feature-icon.yellow {
  background: linear-gradient(135deg, #eab308, #ca8a04);
}

.feature-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-card h3,
.step-card h3,
.team-card h3 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.feature-card p,
.step-card p,
.team-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.big-stat-icon {
  display: inline-grid;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 1.25rem;
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
  color: #fff;
  font-size: 2.35rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

.big-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
}

.big-stat span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
}

.step-card {
  text-align: center;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Orbitron, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.32;
}

.step-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  place-items: center;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(244, 63, 94, 0.12));
  color: var(--primary-400);
  font-size: 1.75rem;
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: #fff;
  transform: scale(1.1);
}

.connect-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 1.4rem 2rem;
  backdrop-filter: blur(10px);
}

.avatar {
  display: grid;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: #fff;
  font-size: 2.5rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.logo-avatar img {
  padding: 0.65rem;
  object-fit: contain;
}

.team-card {
  text-align: center;
}

.team-role {
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-role.owner {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a0a0f;
}

.team-role.developer {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
}

.team-role.admin {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: #fff;
}

.team-role.support {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.team-role.support-head {
  background: linear-gradient(135deg, #fde047, #eab308);
  color: #0a0a0f;
}

.team-role.co-founder {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
}

.team-role.manager {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
}

.faq-container {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  transition: background 260ms ease, border-color 260ms ease;
}

.faq-item.active {
  border-color: var(--primary-500);
  background: rgba(255, 255, 255, 0.045);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.25rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  flex: 0 0 auto;
  transition: transform 260ms ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-heading {
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--primary-400);
}

.footer-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-info i {
  color: var(--primary-400);
}

.social-link {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--primary-500);
  color: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(99, 102, 241, 0.16), transparent 32rem),
    radial-gradient(circle at 75% 70%, rgba(244, 63, 94, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(49, 46, 129, 0.22), var(--night-950) 80%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.page-title {
  margin-bottom: 1.5rem;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
}

.page-lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.notice-card,
.content-card,
.rule-category,
.contact-card,
.form-panel,
.timeline-content {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.notice-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(99, 102, 241, 0.08));
}

.notice-icon,
.contact-icon,
.about-stat-icon,
.value-icon,
.quick-link-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 1rem;
}

.notice-icon {
  width: 52px;
  height: 52px;
  background: rgba(244, 63, 94, 0.18);
  color: var(--accent-400);
  font-size: 1.6rem;
}

.rule-category {
  overflow: hidden;
}

.rule-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.025);
}

.rule-header-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(99, 102, 241, 0.17);
  color: var(--primary-400);
  font-size: 1.45rem;
}

.rule-title {
  font-family: Orbitron, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.rule-list {
  padding: 1rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  border-radius: 0.85rem;
  padding: 1rem;
  transition: background 180ms ease;
}

.rule-item:hover {
  background: rgba(255, 255, 255, 0.035);
}

.rule-number {
  flex: 0 0 auto;
  color: var(--primary-400);
  font-family: Orbitron, sans-serif;
  font-weight: 800;
}

.rule-item h4 {
  margin-bottom: 0.3rem;
  color: #fff;
  font-weight: 800;
}

.rule-item p,
.content-card p,
.contact-card p,
.timeline-content p {
  color: rgba(255, 255, 255, 0.58);
}

.about-stat-card,
.value-card,
.quick-link-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  text-align: center;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.about-stat-card:hover,
.value-card:hover,
.quick-link-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.about-stat-icon,
.value-icon,
.quick-link-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(99, 102, 241, 0.17);
  color: var(--primary-400);
  font-size: 1.6rem;
}

.about-stat-value {
  font-family: Orbitron, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
}

.about-stat-label,
.value-card p,
.quick-link-card p {
  color: rgba(255, 255, 255, 0.55);
}

.value-card h3,
.quick-link-card h3 {
  margin-bottom: 0.55rem;
  font-family: Orbitron, sans-serif;
  font-weight: 800;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(var(--primary-500), var(--accent-500));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0.25rem;
  left: -2rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary-500);
  box-shadow: 0 0 0 5px var(--night-950), 0 0 24px rgba(99, 102, 241, 0.5);
  transform: translateX(-7px);
}

.timeline-content {
  margin-left: 1rem;
  padding: 1.5rem;
}

.timeline-date {
  display: inline-block;
  margin-bottom: 0.65rem;
  border-radius: 0.5rem;
  background: var(--primary-500);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.timeline-content h3 {
  margin-bottom: 0.4rem;
  font-family: Orbitron, sans-serif;
  font-weight: 800;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.35rem;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.contact-icon {
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 1.5rem;
}

.contact-icon.discord {
  background: linear-gradient(135deg, #5865f2, #4752c4);
}

.contact-icon.email {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.contact-icon.ticket {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
}

.contact-icon.social {
  background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.contact-card h3 {
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-weight: 800;
}

.contact-link,
.quick-link-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  color: var(--primary-400);
  font-weight: 700;
  text-decoration: none;
}

.form-panel {
  padding: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.9rem 1rem;
  color: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-500);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input option {
  background: var(--night-900);
}

.form-textarea {
  min-height: 128px;
  resize: vertical;
}

.status-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.13), rgba(244, 63, 94, 0.08));
  padding: 2rem;
}

.status-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.15);
  animation: soft-pulse 2s ease-in-out infinite;
}

.application-card,
.changelog-entry,
.process-step {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.application-card:hover,
.changelog-entry:hover,
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
}

.app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.app-card-header.police {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(37, 99, 235, 0.1));
}

.app-card-header.ems {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.22), rgba(220, 38, 38, 0.1));
}

.app-card-header.mechanic {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(234, 88, 12, 0.1));
}

.app-card-header.realestate {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
}

.app-card-header.taxi {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(234, 179, 8, 0.1));
}

.app-card-header.doj,
.app-card-header.staff {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(147, 51, 234, 0.1));
}

.app-card-header.support {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(8, 145, 178, 0.1));
}

.app-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
}

.app-status {
  border-radius: 0.5rem;
  padding: 0.36rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-status.open {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.app-status.limited {
  background: rgba(250, 204, 21, 0.18);
  color: #facc15;
}

.app-status.closed {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
}

.app-card-body {
  padding: 1.5rem;
}

.app-title {
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}

.app-description {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.app-requirements {
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 1rem;
}

.app-requirements h4 {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-requirements ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-requirements li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.22rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.app-requirements i {
  color: #22c55e;
  font-size: 0.82rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.75rem 1.45rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.btn-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.process-step {
  padding: 1.5rem;
  text-align: center;
}

.process-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 0.4rem;
  font-family: Orbitron, sans-serif;
  font-weight: 800;
}

.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.changelog-filter {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.changelog-filter:hover,
.changelog-filter.active {
  border-color: var(--primary-500);
  background: var(--primary-500);
  color: #fff;
}

.changelog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.025);
}

.changelog-version {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.version-number {
  font-family: Orbitron, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.version-tag {
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.version-tag.new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.version-tag.hotfix {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
}

.changelog-date {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.changelog-content {
  padding: 1.5rem;
}

.changelog-section {
  margin-bottom: 1.5rem;
}

.changelog-section:last-child {
  margin-bottom: 0;
}

.changelog-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-family: Orbitron, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.changelog-section-title.features {
  color: #4ade80;
}

.changelog-section-title.improvements {
  color: #22d3ee;
}

.changelog-section-title.fixes {
  color: var(--accent-400);
}

.changelog-list {
  margin: 0;
  padding-left: 1.35rem;
  list-style: none;
}

.changelog-list li {
  position: relative;
  padding: 0.24rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.changelog-list li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--primary-400);
}

#back-to-top {
  visibility: hidden;
}

#back-to-top.visible {
  visibility: visible;
  opacity: 1;
}

.me-1 {
  margin-right: 0.25rem;
}

.me-2 {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  #navbar.is-scrolled,
  .btn-secondary-lg,
  .connect-box,
  .notice-card,
  .content-card,
  .rule-category,
  .contact-card,
  .form-panel,
  .timeline-content {
    backdrop-filter: none;
  }

  .ambient {
    display: none;
  }

  .loader-ring,
  .scroll-indicator,
  .wheel,
  .status-dot {
    animation: none;
  }

  .feature-card,
  .step-card,
  .team-card,
  .application-card,
  .changelog-entry,
  .process-step,
  .stat-card,
  .rp-benefit-card,
  .about-stat-card,
  .value-card,
  .quick-link-card,
  .contact-card,
  .social-link,
  .btn,
  .hamburger-menu span {
    transition-duration: 120ms;
  }

  .section-band {
    padding: 5rem 0;
    contain-intrinsic-size: 700px;
  }

  .stat-card,
  .feature-card,
  .step-card,
  .team-card {
    padding: 1.35rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.76rem;
  }

  .btn-primary-lg,
  .btn-secondary-lg,
  .btn-white-lg,
  .btn-outline-lg {
    width: 100%;
    padding: 0.875rem 1.4rem;
    font-size: 0.92rem;
  }

  .ambient-primary {
    left: -6rem;
  }

  .ambient-accent {
    right: -5rem;
  }
}

@media (max-width: 480px) {
  .feature-icon {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.45rem;
  }

  .avatar {
    width: 82px;
    height: 82px;
    font-size: 2rem;
  }
}

[data-aos] {
  pointer-events: auto;
}
