:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --otimify-green: #00ff85;
  --white: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #606060;
  --border-subtle: #2a2a2a;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 720px; margin: 0 auto; padding: 48px 24px; }

header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
header .logo-link { display: inline-flex; align-items: center; }
header .logo-img { height: 32px; width: auto; display: block; }
header a { color: var(--text-secondary); font-size: 14px; text-decoration: none; }
header a:hover { color: var(--white); }

h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
h1 .accent { color: var(--otimify-green); }

.subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.cards { display: grid; gap: 16px; margin-bottom: 48px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--otimify-green); }
.card .num {
  font-weight: 900;
  font-size: 32px;
  color: var(--otimify-green);
  letter-spacing: -0.04em;
}
.card h3 { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.card p { color: var(--text-secondary); font-size: 14px; }

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--otimify-green);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 48px;
}
.form-section h2 {
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 8px;
}
.form-section p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }

.cta-button {
  display: inline-block;
  background: var(--otimify-green);
  color: #0a0a0a !important;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  padding: 18px 36px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 133, 0.15);
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(0, 255, 133, 0.3);
}
.cta-hint {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: var(--text-tertiary) !important;
  margin-bottom: 0 !important;
}

.countdown {
  margin: 0 0 40px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  text-align: center;
}
.countdown-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 700;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.countdown-box {
  flex: 1 1 0;
  max-width: 88px;
  background: #050505;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 12px 6px;
}
.countdown-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--otimify-green);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown-unit {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 700;
}
.countdown-event {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}
.countdown-done-msg {
  display: none;
  font-size: 15px;
  color: var(--otimify-green);
  font-weight: 700;
  margin: 0;
}
.countdown--done .countdown-grid { display: none; }
.countdown--done .countdown-label { display: none; }
.countdown--done .countdown-event { display: none; }
.countdown--done .countdown-done-msg { display: block; }

.bonus {
  margin: 32px 0 24px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-left: 2px solid var(--text-tertiary);
  border-radius: 4px;
}
.bonus h4 {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.bonus p { color: var(--text-secondary); font-size: 13px; line-height: 1.55; }

footer {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

a { color: var(--otimify-green); }
a:hover { text-decoration: underline; }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
}
.ig-handle svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.ig-handle:hover { color: var(--white) !important; }
