@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #EDA629;
  --primary-dim: rgba(237, 166, 41, 0.15);
  --primary-glow: rgba(237, 166, 41, 0.35);
  --bg: #0C0E12;
  --secondary: #10141A;
  --card-a: #1A1D28;
  --card-b: #1C1E22;
  --text: #EAEAEC;
  --muted: #5B5D5F;
  --border: rgba(237, 166, 41, 0.12);
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-dim);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 56px;
}

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

.gradient-text {
  background: linear-gradient(135deg, #EDA629 0%, #f5c878 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #0C0E12;
  box-shadow: 0 0 24px var(--primary-glow);
}

.btn-primary:hover {
  background: #f5b742;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(237, 166, 41, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.navbar.scrolled {
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  #nav-login-btn {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(245, 165, 36, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.8;
    transform: translateX(-50%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 166, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 166, 41, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 500px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bubble {
  position: absolute;
  z-index: 2;
  background: rgba(12, 14, 18, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-bubble img,
.hero-bubble svg {
  width: 16px;
  height: 16px;
}

.hero-bubble.bubble-1 {
  top: 25%;
  left: 8%;
  transform: rotate(-4deg);
  animation-delay: 0s;
  --rot: -4deg;
}

.hero-bubble.bubble-2 {
  top: 65%;
  left: 12%;
  transform: rotate(2deg);
  animation-delay: -2s;
  --rot: 2deg;
}

.hero-bubble.bubble-3 {
  top: 30%;
  right: 10%;
  transform: rotate(3deg);
  animation-delay: -4s;
  --rot: 3deg;
}

.hero-bubble.bubble-4 {
  top: 70%;
  right: 14%;
  transform: rotate(-3deg);
  animation-delay: -1.5s;
  --rot: -3deg;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translateY(-28px) rotate(var(--rot, 0deg));
  }

  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
}

@media (max-width: 1024px) {
  .hero-bubble {
    display: none;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  flex-wrap: wrap;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: auto;
  padding: 0 10px;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

section {
  padding: 100px 0;
}

#gui-showcase {
  padding-top: 40px;
}



.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  border-color: rgba(237, 166, 41, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(237, 166, 41, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.featured {
  border-color: rgba(237, 166, 41, 0.5);
  box-shadow: 0 0 40px rgba(237, 166, 41, 0.08);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: #0C0E12;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(57%) saturate(600%) hue-rotate(2deg) brightness(98%) contrast(95%);
  transition: filter 0.3s, transform 0.3s;
}

.product-card:hover .product-icon-img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(57%) saturate(800%) hue-rotate(2deg) brightness(115%) contrast(100%);
  transform: scale(1.1);
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1;
}

.product-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4ade80;
  font-weight: 600;
  margin-bottom: 24px;
}

.product-stock.out {
  color: #f87171;
}

.product-stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.stock-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.product-card .btn {
  width: 100%;
  justify-content: center;
}

.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--muted);
}

.products-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #f87171;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card-a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(237, 166, 41, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(237, 166, 41, 0.04);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.feature-icon-img {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(57%) saturate(600%) hue-rotate(2deg) brightness(98%) contrast(95%);
  transition: filter 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon-img img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(57%) saturate(800%) hue-rotate(2deg) brightness(110%) contrast(100%);
  transform: scale(1.1);
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}



.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(237, 166, 41, 0.12);
  position: relative;
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.accounts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.accounts-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.accounts-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.accounts-perk::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.accounts-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.account-card {
  background: var(--card-a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s;
}

.account-card:hover {
  border-color: rgba(237, 166, 41, 0.4);
  box-shadow: 0 8px 32px rgba(237, 166, 41, 0.08);
  transform: translateX(4px);
}

.account-info {
  flex: 1;
}

.account-type {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.account-tag {
  font-size: 12px;
  color: var(--muted);
}

.account-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .accounts-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

#cta {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(237, 166, 41, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-discord {
  color: var(--primary) !important;
  font-weight: 600;
}

.footer-discord:hover {
  opacity: 0.8;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.modal h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}



.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input {
  width: 100%;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: rgba(237, 166, 41, 0.5);
  box-shadow: 0 0 0 3px rgba(237, 166, 41, 0.08);
}

.license-input {
  width: 100%;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  letter-spacing: normal;
  text-align: center;
  outline: none;
  transition: all 0.2s ease;
}

.license-input:focus {
  border-color: rgba(237, 166, 41, 0.4);
  box-shadow: 0 0 0 2px rgba(237, 166, 41, 0.08);
}

.license-input::placeholder {
  color: var(--muted);
}

.form-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 4px;
}

.form-submit {
  width: 100%;
  display: flex;
  justify-content: center;
}



.buy-modal-product {
  background: var(--secondary);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buy-modal-name {
  font-weight: 700;
  font-size: 16px;
}

.buy-modal-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
}

.coupon-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.coupon-row input {
  flex: 1;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.coupon-row input:focus {
  border-color: rgba(237, 166, 41, 0.4);
}

.coupon-row .btn {
  padding: 11px 18px;
  font-size: 13px;
}

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.toast {
  background: var(--card-a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fade-up 0.6s ease both;
}

[data-delay="1"] {
  animation-delay: 0.1s;
}

[data-delay="2"] {
  animation-delay: 0.2s;
}

[data-delay="3"] {
  animation-delay: 0.3s;
}

[data-delay="4"] {
  animation-delay: 0.4s;
}

[data-delay="5"] {
  animation-delay: 0.5s;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .modal {
    padding: 28px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    gap: 24px;
  }
}

.customer-modal {
  max-width: 520px;
  padding-bottom: 20px;
}

.customer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.customer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  padding-top: 2px;
  color: #000;
  flex-shrink: 0;
}

.customer-name {
  font-size: 18px;
  font-weight: 700;
}

.customer-tag {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.customer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.customer-stat {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.customer-stat-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.customer-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.patchnote-box {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.patchnote-title {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.patchnote-entry {
  font-size: 13px;
  color: var(--text);
  padding: 2px 0;
}

.patchnote-entry::before {
  content: '· ';
  color: var(--primary);
  font-weight: 700;
}

.buy-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  margin: 4px 0 0;
}

#gui-showcase {
  padding: 80px 0;
}

.gui-glow-wrapper {
  position: relative;
  margin-top: 48px;
}

.gui-glow-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(245, 165, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gui-mockup {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.gui-searchbar {
  display: none;
}

.gui-searchbar span {
  color: #666;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

.gui-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: start;
}

.gui-column {
  background: #0C0E12;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gui-column-header {
  position: relative;
  background: #171A21;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(245, 165, 36, 0.08);
}

.gui-cat-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.gui-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: #AAAAAA;
  cursor: pointer;
  transition: background 0.15s, color 0.2s;
  user-select: none;
  background: #11141B;
  margin: 3px 6px;
  border-radius: 8px;
}

.gui-module:first-of-type {
  margin-top: 4px;
}

.gui-module:last-child {
  margin-bottom: 4px;
}

.gui-module:hover {
  background: #1A1D27;
}

.gui-module.active {
  color: #F5A524;
  background: #1A1D27;
}

.gui-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

.gui-module.active .gui-dot {
  background: #F5A524;
  box-shadow: 0 0 6px rgba(245, 165, 36, 0.5);
}

.gui-tooltip {
  position: fixed;
  background: rgba(12, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  max-width: 250px;
  backdrop-filter: blur(8px);
  line-height: 1.4;
}

.gui-tooltip.show {
  opacity: 1;
  transform: scale(1);
}

.gui-module.active .gui-name {
  color: #F5A524;
}

.gui-settings {
  display: none;
  width: 100%;
  padding: 4px 0 2px;
}

.gui-module.expanded .gui-settings {
  display: block;
}

.gui-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 10px;
  color: #888;
  gap: 6px;
}

.gui-val {
  color: #aaa;
  font-size: 9px;
  flex-shrink: 0;
  min-width: 28px;
  text-align: right;
}

.gui-toggle.on .gui-val {
  color: #F5A524;
}

.gui-slider {
  flex: 1;
  height: 3px;
  background: #222;
  border-radius: 3px;
  overflow: hidden;
}

.gui-slider-fill {
  height: 100%;
  background: #F5A524;
  border-radius: 3px;
}

.gui-hint {
  text-align: center;
  font-size: 11px;
  color: #555;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
  .gui-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gui-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gui-mockup {
    padding: 16px;
  }

  .gui-module {
    font-size: 13px;
    padding: 8px 12px;
  }
}