*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #080808;
  --black-2: #0e0e0e;
  --black-3: #141414;
  --black-4: #1a1a1a;
  --black-5: #222222;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(212,175,55,0.35);
  --yellow: #c9a227;
  --yellow-light: #e0b840;
  --yellow-dim: rgba(201,162,39,0.12);
  --yellow-glow: rgba(201,162,39,0.25);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 12px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
.hidden { display: none !important; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex; align-items: center; gap: 2rem;
  height: 68px; width: 100%;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-corn { color: var(--text); }
.logo-modz { color: var(--yellow); }
.nav-links {
  display: flex; list-style: none; gap: 0.25rem; margin-left: auto;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--black-4); }
.nav-client-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--black-4);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-client-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}
.nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--yellow-light); transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--yellow-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text);
  font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}
.btn-discord {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: #5865F2;
  color: #fff;
  font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 2rem 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 720px;
  gap: 2rem; align-items: center; width: 100%;
}
.hero-left {
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--yellow-dim);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--yellow-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-highlight {
  color: var(--yellow);
  position: relative;
}
.hero-highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 2px;
}
.hero-desc {
  margin-top: 1.25rem;
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  max-width: 480px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem; font-weight: 800; color: var(--yellow);
  line-height: 1;
}
.stat-plus { font-size: 1.25rem; font-weight: 700; color: var(--yellow); }
.stat-label {
  display: block; font-size: 0.75rem; color: var(--text-muted);
  margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  height: 640px;
  width: 720px;
  flex-shrink: 0;
  overflow: visible;
}
.hero-card-float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.hero-card-float img { height: 100%; object-fit: cover; }
.card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  text-align: center;
}
.card-overlay span {
  font-size: 1.6rem; font-weight: 800; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 3px;
}
.card-1 {
  width: 420px; height: 510px;
  top: 10px; left: 0px;
  animation: float1 6s ease-in-out infinite;
}
.card-2 {
  width: 350px; height: 430px;
  bottom: 60px; right: 0px;
  animation: float2 7s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.features-strip {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
}
.strip-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
}
.feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.feature-item svg { color: var(--yellow); flex-shrink: 0; }
.feature-item:hover { color: var(--text); }
.section-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--yellow-dim);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--yellow); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.2;
}
.highlight { color: var(--yellow); }
.section-desc {
  margin-top: 0.75rem;
  font-size: 1rem; color: var(--text-muted); max-width: 520px; margin-inline: auto;
}
.products-section { padding: 6rem 2rem; }
.filter-bar {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.filter-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.filter-count {
  margin-left: auto;
  font-size: 0.8rem; color: var(--text-dim);
}
.filter-count span { color: var(--yellow); font-weight: 700; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.products-loading {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 4rem; color: var(--text-muted);
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--black-4);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.products-error {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.products-error svg { color: var(--text-dim); }
.product-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  animation: fadeInUp 0.5s ease both;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.15);
}
.product-img {
  position: relative; height: 180px; overflow: hidden;
  background: var(--black-4);
}
.product-img img {
  height: 100%; transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--black-4), var(--black-5));
}
.product-img-placeholder svg { color: var(--text-dim); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 0.25rem 0.65rem;
  background: rgba(8,8,8,0.85);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--yellow); text-transform: uppercase; letter-spacing: 0.5px;
}
.product-tag { color: var(--yellow); border-color: rgba(201,162,39,0.3); }
.product-tag.rust     { color: #e07b39; border-color: rgba(224,123,57,0.3); }
.product-tag.fivem    { color: var(--yellow); border-color: rgba(201,162,39,0.3); }
.product-tag.r6       { color: #60a5fa; border-color: rgba(96,165,250,0.3); }
.product-tag.fortnite { color: #e879f9; border-color: rgba(232,121,249,0.3); }
.product-tag.eft      { color: #94a3b8; border-color: rgba(148,163,184,0.3); }
.product-tag.cs2      { color: #f97316; border-color: rgba(249,115,22,0.3); }
.product-tag.other    { color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.product-status {
  position: absolute; top: 12px; right: 12px;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: rgba(8,8,8,0.88);
  border-radius: 6px;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  position: relative;
}
.status-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  animation: statusPulse 1.8s ease-in-out infinite;
}
.product-status.undetected {
  border: 1px solid rgba(74,222,128,0.35);
  color: #4ade80;
}
.product-status.undetected .status-dot {
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}
.product-status.undetected .status-dot::after {
  background: rgba(74,222,128,0.25);
}
.product-status.updating {
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--yellow-light);
}
.product-status.updating .status-dot {
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
}
.product-status.updating .status-dot::after {
  background: rgba(201,162,39,0.25);
  animation-duration: 1.2s;
}
.product-status.detected {
  border: 1px solid rgba(239,68,68,0.35);
  color: #f87171;
}
.product-status.detected .status-dot {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}
.product-status.detected .status-dot::after {
  background: rgba(239,68,68,0.25);
  animation-duration: 2.4s;
}
@keyframes statusPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  50%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}
.product-body {
  padding: 1.25rem; flex: 1;
  display: flex; flex-direction: column;
}
.product-name {
  font-size: 1rem; font-weight: 700; line-height: 1.3;
  margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--black-4);
}
.product-price {
  font-size: 1.1rem; font-weight: 800; color: var(--yellow);
}
.product-price.free { color: #4ade80; }
.product-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem; font-weight: 700;
  border-radius: 7px;
  transition: var(--transition);
}
.product-btn:hover { background: var(--yellow-light); }
.about-section { padding: 6rem 2rem; background: var(--black-2); }
.about-grid {
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; text-align: center; max-width: 800px; margin: 0 auto;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1.5rem; text-align: left;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-wrap img { height: 480px; }
.about-badge-float {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 700; color: var(--yellow);
  backdrop-filter: blur(10px);
}
.about-text {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1.5rem;
}
.about-feat {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; font-weight: 500;
}
.feat-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-dim);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 6px;
  color: var(--yellow);
}
.cta-section {
  padding: 6rem 2rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 1rem;
}
.cta-desc {
  color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 0;
}
.footer-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem; color: var(--text-muted); max-width: 280px;
}
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: var(--text-dim);
  margin-bottom: 0.6rem; transition: var(--transition);
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  font-size: 0.8rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--yellow); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.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: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 320px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 1.25rem 50px; }
  .products-section, .about-section, .cta-section { padding: 4rem 1.25rem; }
  .footer { padding: 2rem 1.25rem 0; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
}
