
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f1016;
  --accent: #6b4cff;
  --accent-glow: rgba(107, 76, 255, 0.4);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --card-bg: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Fancy Header */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 5%; background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
nav .logo { font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, #fff, var(--text-muted)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
nav .links a { color: var(--text-muted); text-decoration: none; margin-left: 2rem; font-weight: 600; transition: color 0.3s; }
nav .links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* Hero Section */
.hero {
  padding: 8rem 5% 5rem; text-align: center; position: relative;
}
.hero::before {
  content:''; position: absolute; top: -50%; left: 50%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  transform: translateX(-50%); z-index: -1; pointer-events: none;
}
.hero h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero p { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem; }
.btn {
  display: inline-block; padding: 1rem 2.5rem; border-radius: 50px;
  background: var(--accent); color: #fff; font-weight: 600; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow), inset 0 0 0 2px rgba(255,255,255,0.2); }

/* Card Grid Layouts */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 5%; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 2.5rem; transition: transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}
.card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }

/* Legal/Article Pages */
.page-content { max-width: 800px; margin: 4rem auto; padding: 0 5%; }
.page-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-content h2 { font-size: 2rem; margin: 3rem 0 1.5rem; color: #fff; }
.page-content p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-muted); }

/* Footer */
footer {
  border-top: 1px solid var(--border); padding: 4rem 5% 2rem;
  margin-top: 4rem; text-align: center; color: var(--text-muted);
}
footer .links { margin-bottom: 2rem; }
footer .links a { color: var(--text-muted); text-decoration: none; margin: 0 1rem; transition: color 0.3s; }
footer .links a:hover { color: #fff; }


/* Monetization & Lead Gen Core */
.sticky-income-bar {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  color: white; padding: 12px 20px; text-align: center;
  box-shadow: 0 -5px 20px rgba(124, 58, 237, 0.4);
  font-weight: 600; font-size: 14px;
  display: flex; justify-content: center; align-items: center; gap: 15px;
  backdrop-filter: blur(10px);
}
.sticky-income-bar input {
  padding: 8px 12px; border-radius: 6px; border: none; outline: none;
  font-family: inherit; font-size: 13px; width: 220px;
}
.sticky-income-bar button {
  background: #111; color: white; border: none; border-radius: 6px;
  padding: 8px 16px; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.sticky-income-bar button:hover { background: #000; transform: translateY(-1px); }

.affiliate-widget {
  margin: 3rem 0; padding: 2rem; border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(124,58,237,0.3);
  text-align: center; position: relative; overflow: hidden;
}
.affiliate-widget::before {
  content: 'Sponsored'; position: absolute; top: 0; right: 0;
  background: rgba(124,58,237,0.2); color: #a78bfa; font-size: 10px;
  padding: 4px 10px; border-bottom-left-radius: 8px; font-weight: 700; text-transform: uppercase;
}
.affiliate-widget h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.5rem; }
.affiliate-widget p { color: #9ca3af; margin-bottom: 1.5rem; }
.affiliate-widget .btn-buy {
  display: inline-block; padding: 12px 24px; border-radius: 50px;
  background: linear-gradient(135deg, #10b981, #059669); color: white;
  font-weight: 700; text-decoration: none; font-size: 1.1rem;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.affiliate-widget .btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5); }
