/* ============================================
   Cheats Extensions Store — Premium Stylesheet
   Modern Glassmorphism Dark Mode
   ============================================ */

:root {
  --bg-primary: #060212;
  --bg-secondary: #0c0522;
  --bg-card: rgba(22, 10, 44, 0.65);
  --bg-card-hover: rgba(32, 14, 62, 0.85);

  --border: rgba(255, 107, 157, 0.12);
  --border-hover: rgba(255, 107, 157, 0.3);

  --accent-pink: #ff6b9d;
  --accent-purple: #c084fc;
  --accent-blue: #38bdf8;
  --accent-green: #34d399;

  --text-primary: #f5f0fa;
  --text-secondary: #a89bbd;
  --text-muted: rgba(200, 180, 220, 0.4);

  --gradient-accent: linear-gradient(135deg, #ff6b9d, #c084fc, #818cf8, #38bdf8);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --transition-smooth: all 0.3s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

/* Background Gradients */
.bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-pink);
  top: -200px;
  left: -200px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  top: 40%;
  right: -100px;
}

.glow-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  bottom: -100px;
  left: 10%;
}

/* Layout container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 2, 18, 0.5);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  background: rgba(255, 107, 157, 0.1);
  border-color: var(--accent-pink);
  transform: translateY(-1px);
}

/* Header / Hero Section */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.hero-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-pink);
  background: rgba(255, 107, 157, 0.08);
  border: 1px solid rgba(255, 107, 157, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #d8c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured / Premium Section */
.featured-section {
  padding: 40px 0 80px;
}

.main-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
}

.card-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-tag {
  color: var(--accent-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.card-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 10px var(--accent-pink);
}

.action-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--gradient-accent);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.3);
  transition: var(--transition-bounce);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4), 0 0 30px rgba(192, 132, 252, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.card-right {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
}

.preview-img {
  width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: var(--transition-smooth);
}

.main-card:hover .preview-img {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Call to Action Banner */
.cta-banner {
  background: radial-gradient(circle at 20% 50%, rgba(192, 132, 252, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 60%),
              rgba(16, 8, 36, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.gumroad-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #ff90e8; /* Classic Gumroad-friendly highlight, or fits style */
  background: linear-gradient(135deg, #ff90e8, #c084fc);
  border: none;
  border-radius: var(--radius-md);
  color: #000;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 35px rgba(255, 144, 232, 0.35);
  transition: var(--transition-bounce);
}

.gumroad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 144, 232, 0.5);
}

/* Policy & Key Page Layouts */
.content-page {
  padding: 80px 0;
  min-height: calc(100vh - 200px);
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

.key-display-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-pink);
  text-align: center;
  margin: 30px 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.copy-btn:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: #fff;
}

.policy-text h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--text-primary);
}

.policy-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

.policy-text ul {
  margin-left: 20px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.policy-text li {
  margin-bottom: 8px;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: rgba(6, 2, 18, 0.8);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-pink);
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
}
