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

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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #1a1a1a;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

.logo span {
  color: #dc2626;
}

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

.nav-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #dc2626;
}

.btn-nav {
  background: #dc2626;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-nav:hover {
  background: #b91c1c !important;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at center, #1a0a0a 0%, #0a0a0a 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #dc2626;
}

.hero-content p {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #dc2626;
  border: 2px solid #dc2626;
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

section h2 span {
  color: #dc2626;
}

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

.feature-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: #dc2626;
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #dc2626;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #888;
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.product-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
  border-color: #dc2626;
  transform: translateY(-5px);
}

.product-card.featured {
  border-color: #dc2626;
  transform: scale(1.05);
}

.product-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.product-header {
  background: #0d0d0d;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-header h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #dc2626;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.product-card ul {
  list-style: none;
  padding: 2rem;
}

.product-card ul li {
  padding: 0.5rem 0;
  color: #a0a0a0;
  border-bottom: 1px solid #1a1a1a;
}

.product-card ul li:last-child {
  border-bottom: none;
}

.product-card ul li::before {
  content: "âœ“ ";
  color: #dc2626;
  font-weight: 700;
}

.product-card .btn-primary,
.product-card .btn-secondary {
  display: block;
  margin: 0 2rem 2rem;
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

details {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s;
}

details:hover {
  border-color: #dc2626;
}

summary {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  outline: none;
}

details p {
  margin-top: 1rem;
  color: #888;
  font-size: 0.95rem;
}

.contact {
  text-align: center;
}

.contact p {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.error-banner {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #7f1d1d;
  color: #fca5a5;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 200;
  border: 1px solid #991b1b;
  max-width: 600px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #1a1a1a;
  color: #555;
  font-size: 0.85rem;
}

.verify-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.verify-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 3rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
}

.verify-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.verify-card h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.verify-card h1 span {
  color: #dc2626;
}

#verifyText {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.captcha-box {
  background: #0a0a0a;
  border: 1px solid #dc2626;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.captcha-expr {
  font-size: 2.5rem;
  font-weight: 900;
  color: #dc2626;
  letter-spacing: 4px;
  user-select: none;
}

.verify-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.verify-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #dc2626;
}

.verify-name {
  color: #fff;
  font-weight: 600;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verify-input {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 8px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.verify-input:focus {
  border-color: #dc2626;
}

.verify-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.verify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.verify-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  min-height: 1.5rem;
}

.verify-help {
  color: #555;
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.dashboard-hero {
  padding-top: 120px;
  padding-bottom: 2rem;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dash-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #dc2626;
}

.dashboard-user h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.dashboard-user h1 span {
  color: #dc2626;
}

.dash-sub {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.dash-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.dash-section h2 {
  margin-bottom: 2rem;
}

.keys-list {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
}

.keys-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #0d0d0d;
  border-bottom: 1px solid #1f1f1f;
  font-weight: 700;
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.key-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1a1a1a;
  align-items: center;
  transition: background 0.2s;
}

.key-row:last-child {
  border-bottom: none;
}

.key-row:hover {
  background: #151515;
}

.key-product {
  color: #fff;
  font-weight: 600;
}

.key-value {
  font-family: monospace;
  color: #dc2626;
  font-size: 0.9rem;
}

.key-status {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.status-active {
  color: #22c55e;
}

.status-expired {
  color: #ef4444;
}

.key-expires {
  color: #888;
  font-size: 0.85rem;
}

.loading {
  text-align: center;
  padding: 3rem;
  color: #888;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: #888;
}

.empty-state a {
  color: #dc2626;
}

.cheats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.cheat-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.3s;
}

.cheat-card:hover {
  border-color: #dc2626;
}

.cheat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cheat-info {
  flex: 1;
}

.cheat-info h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.cheat-version {
  color: #666;
  font-size: 0.8rem;
}

.cheat-status-label {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .product-card.featured {
    transform: none;
  }

  .product-card.featured:hover {
    transform: translateY(-5px);
  }
}
