/*
Theme Name: BetGone
Theme URI: https://betgone.app
Author: BetGone
Author URI: https://betgone.app
Description: Official BetGone theme
Version: 1.0
License: Private
Text Domain: betgone
*/

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

/* ─── VARIABLES ─── */
:root {
  --bg:           #0a0a0a;
  --surface:      #111111;
  --surface2:     #161616;
  --border:       #1e1e1e;
  --text:         #f0f0f0;
  --text-mid:     #888;
  --text-dim:     #888;
  --red:          #e63946;
  --red-dark:     #c1121f;
  --green:        #2a9d5c;
  --green-bright: #34d374;
  --font-display: 'Syne', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.site-logo span { color: var(--red); }

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

.site-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn-download {
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  transition: background 0.2s !important;
}

.btn-download:hover { background: var(--red-dark) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(230,57,70,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 800px;
  margin-bottom: 24px;
}

.hero-title span { color: var(--red); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}

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

.hero-cta-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ─── STATS ─── */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

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

.stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-bright);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── FEATURES ─── */
.features {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.2;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: #2a2a2a; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(230,57,70,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 64px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 2px;
  min-width: 32px;
  margin-top: 3px;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-section p {
  color: var(--text-mid);
  font-size: 1.125rem;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.footer-logo span { color: var(--red); }

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ─── INNER PAGES ─── */
.page-hero {
  padding: 140px 40px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.page-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text);
}

.page-content p, .page-content li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--red);
  text-decoration: underline;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #333; }

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover { background: var(--red-dark); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .site-nav { gap: 16px; }
  .site-nav a:not(.btn-download) { display: none; }
  .stats { gap: 32px; }
  .features { padding: 60px 20px; }
  .how { padding: 60px 20px; }
  .cta-section { padding: 80px 20px; }
  .site-footer { padding: 24px 20px; }
  .page-hero { padding: 120px 20px 40px; }
  .page-content { padding: 40px 20px 80px; }
}
