/*
Theme Name: Lambo Affiliates
Theme URI: https://lamboaffiliates.com
Author: Lambo Affiliates
Description: Premium casino affiliate presentation theme.
Version: 1.0.0
License: Private
Text Domain: lamboaffiliates
*/

:root {
  --black: #080808;
  --dark: #0f0f0f;
  --card: #141414;
  --border: rgba(201,168,76,0.15);
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A0832A;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ====== CURSOR ====== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-size: 13px; letter-spacing: 0.4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 0 64px;
}
.hero-bg-dim {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/lambo-bg.webp') center/cover no-repeat;
  opacity: 0.12;
}
.hero-bg-spot {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/lambo-bg.webp') center/cover no-repeat;
  -webkit-mask-image: radial-gradient(
    circle 320px at var(--sx, -999px) var(--sy, -999px),
    rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.06) 68%, transparent 85%
  );
  mask-image: radial-gradient(
    circle 320px at var(--sx, -999px) var(--sy, -999px),
    rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.06) 68%, transparent 85%
  );
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; opacity: 0;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.hero-title {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; will-change: transform, opacity; }
.hero-title .accent { color: var(--gold); }
.hero-desc {
  font-size: 18px; color: var(--gray);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 52px; opacity: 0;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0;
}
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 16px 36px; border-radius: 4px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--gray); font-size: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s; padding: 16px 8px;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost .arr { transition: transform 0.2s; }
.btn-ghost:hover .arr { transform: translateX(5px); }
.hero-scroll-hint {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0;
}
.hero-scroll-hint span {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(136,136,136,0.6);
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ====== TICKER ====== */
.ticker {
  background: var(--gold);
  padding: 15px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerMove 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 36px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--black);
}
.ticker-sep {
  width: 4px; height: 4px;
  background: rgba(0,0,0,0.25); border-radius: 50%; flex-shrink: 0;
}
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== STATS ====== */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 60px; font-weight: 800;
  letter-spacing: -3px; color: var(--gold);
  line-height: 1; margin-bottom: 10px;
}
.stat-suf { font-size: 36px; letter-spacing: -1px; }
.stat-lbl {
  font-size: 11px; color: var(--gray);
  letter-spacing: 2px; text-transform: uppercase;
}

/* ====== SECTION SHARED ====== */
section { padding: 128px 64px; }
.sec-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.sec-label::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.sec-title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1.05; margin-bottom: 20px;
}
.sec-sub {
  font-size: 17px; color: var(--gray);
  line-height: 1.75; max-width: 520px;
}

/* ====== SERVICES ====== */
.services-wrap { margin-top: 80px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--dark); padding: 48px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.svc-card:hover { background: #161616; }
.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.5s ease;
}
.svc-card:hover::before { width: 100%; }
.svc-num {
  font-size: 10px; letter-spacing: 3px;
  color: rgba(201,168,76,0.5); margin-bottom: 28px;
}
.svc-icon {
  width: 44px; height: 44px; margin-bottom: 22px;
}
.svc-title {
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.2px;
}
.svc-desc {
  font-size: 14px; color: var(--gray); line-height: 1.75;
}

/* ====== WHY US ====== */
.why-bg { background: var(--dark); border-top: 1px solid var(--border); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
}
.why-visual { position: relative; }
.perf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px;
}
.perf-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 28px;
}
.perf-title { font-size: 13px; font-weight: 600; color: var(--light-gray); }
.perf-badge {
  background: rgba(201,168,76,0.12);
  color: var(--gold); font-size: 11px;
  font-weight: 700; padding: 4px 12px;
  border-radius: 100px; letter-spacing: 0.5px;
}
.bar-list { display: flex; flex-direction: column; gap: 16px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-lbl { font-size: 12px; color: var(--gray); width: 64px; text-align: right; flex-shrink: 0; }
.bar-track {
  flex: 1; height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px; overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px; width: 0;
}
.bar-val { font-size: 12px; color: var(--gold); font-weight: 700; width: 32px; }
.float-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.float-ico {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.float-val { font-size: 22px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.float-lbl { font-size: 11px; color: var(--gray); margin-top: 2px; }
.why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; }
.why-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border: 1px solid transparent;
  border-radius: 10px; transition: border-color 0.3s, background 0.3s;
}
.why-row:hover { border-color: var(--border); background: var(--card); }
.why-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex; align-items: center;
  justify-content: center; font-size: 18px;
}
.why-txt h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-txt p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ====== CTA ====== */
.cta-wrap {
  text-align: center; position: relative; overflow: hidden;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-glow-el {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800; letter-spacing: -2.5px;
  line-height: 1.0; margin-bottom: 22px;
}
.cta-sub {
  font-size: 18px; color: var(--gray); margin-bottom: 52px;
}
.cta-form {
  display: flex; gap: 0; max-width: 440px;
  margin: 0 auto 20px;
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.cta-form:focus-within { border-color: var(--gold); }
.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 16px 20px;
  font-size: 14px; color: var(--white);
  outline: none;
}
.cta-input::placeholder { color: var(--gray); }
.cta-btn {
  background: var(--gold); color: var(--black);
  border: none; padding: 16px 28px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.cta-btn:hover { background: var(--gold-light); }
.cta-fine {
  font-size: 13px; color: var(--gray);
}
.cta-fine a { color: var(--gold); text-decoration: none; }
.cta-fine a:hover { text-decoration: underline; }

/* ====== FOOTER ====== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 64px 40px;
}
.footer-cols {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand-logo {
  font-size: 20px; font-weight: 800;
  text-decoration: none; color: var(--white);
  display: block; margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.75; max-width: 270px; }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; color: var(--white);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-legal { font-size: 12px; color: var(--gray); }
.footer-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none;
  font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.soc-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ====== ANIMATION HELPERS ====== */
.reveal { opacity: 0; transform: translateY(42px); }
.reveal-fade { opacity: 0; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  nav, section, footer { padding-left: 36px; padding-right: 36px; }
  nav.scrolled { padding-left: 36px; padding-right: 36px; }
  .hero { padding: 0 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .hero-title {
    font-size: clamp(32px, 9vw, 52px);
    letter-spacing: -1.5px;
  }
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  section, footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 0 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .cta-form { flex-direction: column; border-radius: 6px; }
  .cta-input { border-bottom: 1px solid var(--border); border-radius: 6px 6px 0 0; }
  .cta-btn { border-radius: 0 0 6px 6px; }
  .float-badge { right: 0; bottom: -24px; }
}
