/* =============================================
   ALBERTO TIPSTER - Main Stylesheet
   Dark Gold Sports Betting Aesthetic
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;700;900&display=swap');

:root {
  --gold: #D4810A;
  --gold-light: #F0A030;
  --gold-dark: #8B5200;
  --white: #F5F5F0;
  --black: #050505;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --grey: #888;
  --grey-light: #bbb;
  --green-win: #00C853;
  --red-loss: #D32F2F;
  --gradient-gold: linear-gradient(135deg, #D4810A, #F0C040, #D4810A);
  --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #050505 100%);
  --shadow-gold: 0 0 30px rgba(212,129,10,0.3);
  --shadow-gold-lg: 0 0 60px rgba(212,129,10,0.4);
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui: 'Rajdhani', sans-serif;
  --font-tech: 'Orbitron', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--black); }

/* ── Links ── */
a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--dark2); }

.tag {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 60%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 18px;
  color: var(--grey-light);
  max-width: 560px;
  font-weight: 400;
}

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}

/* =============================================
   NAVIGATION
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,129,10,0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 60px;
  border-bottom-color: rgba(212,129,10,0.4);
  box-shadow: var(--shadow-gold);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
mix-blend-mode: lighten;
  filter: drop-shadow(0 0 8px rgba(212,129,10,0.6));
  transition: filter 0.3s;


}
.nav-logo:hover { filter: drop-shadow(0 0 16px rgba(212,129,10,1)); }

.nav-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
}
.nav-name span { color: var(--gold); }

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-gold);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; transform: scale(1.04) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(212,129,10,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(212,129,10,0.05) 0%, transparent 60%),
    var(--black);
}

/* Animated grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,129,10,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,129,10,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,129,10,0.1);
  border: 1px solid rgba(212,129,10,0.3);
  padding: 8px 20px;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 32px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green-win);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-win);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .gold { color: var(--gold); text-shadow: 0 0 40px rgba(212,129,10,0.5); }

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--grey-light);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-desc {
  font-size: 18px;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 52px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.5s ease both;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-logo-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(212,129,10,0.2);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -50px;
  border: 1px dashed rgba(212,129,10,0.1);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite reverse;
}
.hero-logo-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: rotateSlow 3s linear infinite;
}

@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-logo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(212,129,10,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(212,129,10,0.6));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,129,10,0.5);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,129,10,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,129,10,0.2);
}

.btn-tg {
  background: linear-gradient(135deg, #229ED9, #0077B5);
  color: white;
}
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,158,217,0.4); }

.btn-ig {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: white;
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(253,29,29,0.4); }

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s both;
}
.scroll-down .arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* =============================================
   SOCIAL LINKS STRIP
============================================= */
.social-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(212,129,10,0.2);
  border-bottom: 1px solid rgba(212,129,10,0.2);
  padding: 24px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.social-card:hover {
  border-color: var(--gold);
  background: rgba(212,129,10,0.08);
  transform: translateY(-3px);
}
.social-card svg { width: 22px; height: 22px; }
.social-card-name { font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.social-card-sub { font-size: 11px; color: var(--grey); letter-spacing: 1px; }

/* =============================================
   GREENS GALLERY
============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.green-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.green-card:hover {
  border-color: rgba(0,200,83,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,200,83,0.15);
}

.green-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s, transform 0.3s;
}
.green-card:hover .green-card-img { filter: brightness(1); transform: scale(1.03); }

/* Placeholder for gallery images */
.green-card-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #0a1a0a, #0d2b0d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 36px;
}

.green-card-body { padding: 20px; }

.green-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green-win);
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  margin-bottom: 10px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.green-result .dot { width: 6px; height: 6px; background: var(--green-win); border-radius: 50%; box-shadow: 0 0 6px var(--green-win); }

.green-match { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.green-market { font-size: 13px; color: var(--grey); }
.green-odd {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  margin-top: 8px;
  line-height: 1;
}
.green-profit { font-size: 12px; color: var(--green-win); letter-spacing: 1px; margin-top: 2px; }

/* =============================================
   GESTÃO DE BANCA / PDF SECTION
============================================= */
.pdf-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0D0D0D 50%, #111008 100%);
  position: relative;
  overflow: hidden;
}

.pdf-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,129,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pdf-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-book {
  width: 260px;
  height: 340px;
  background: linear-gradient(135deg, #1a1200, #2a1e00, #1a1200);
  border: 2px solid var(--gold-dark);
  border-radius: 4px 12px 12px 4px;
  position: relative;
  box-shadow:
    -8px 8px 0 rgba(0,0,0,0.5),
    -16px 16px 0 rgba(0,0,0,0.3),
    0 0 60px rgba(212,129,10,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  animation: float 4s ease-in-out infinite;
}

.pdf-book::before {
  content: '';
  position: absolute;
  left: -10px; top: 10px; bottom: 10px;
  width: 10px;
  background: linear-gradient(90deg, #4a3000, #8B5200);
  border-radius: 2px 0 0 2px;
}

.pdf-book-logo { width: 80px; filter: drop-shadow(0 0 12px rgba(212,129,10,0.6)); }
.pdf-book-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(212,129,10,0.5);
}
.pdf-book-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--grey);
  text-align: center;
  text-transform: uppercase;
}
.pdf-book-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.pdf-book-line {
  height: 2px;
  border-radius: 1px;
  background: rgba(212,129,10,0.2);
}
.pdf-book-line:nth-child(2) { width: 80%; background: rgba(212,129,10,0.15); }
.pdf-book-line:nth-child(3) { width: 60%; background: rgba(212,129,10,0.1); }

.pdf-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.pdf-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,129,10,0.1);
  transition: border-color 0.3s;
}
.pdf-feature:hover { border-color: rgba(212,129,10,0.4); }
.pdf-feature-icon { font-size: 22px; flex-shrink: 0; }
.pdf-feature-text { font-size: 14px; color: var(--grey-light); line-height: 1.5; }
.pdf-feature-text strong { color: var(--white); display: block; font-size: 15px; margin-bottom: 2px; }

.price-box {
  background: rgba(212,129,10,0.05);
  border: 1px solid rgba(212,129,10,0.3);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.price-box::before {
  content: 'OFERTA LIMITADA';
  position: absolute;
  top: 14px; right: -30px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 40px;
  transform: rotate(35deg);
}
.price-old { font-size: 18px; color: var(--grey); text-decoration: line-through; }
.price-new {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212,129,10,0.4);
}
.price-currency { font-size: 32px; vertical-align: super; }
.price-sub { font-size: 13px; color: var(--grey); letter-spacing: 2px; margin-top: 8px; }

/* =============================================
   CASAS DE APOSTAS
============================================= */
.bookmakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.bookie-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.bookie-card:hover {
  border-color: var(--gold);
  background: rgba(212,129,10,0.04);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bookie-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }

.bookie-logo-wrap {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.bookie-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
}
.bookie-stars { color: var(--gold); font-size: 14px; }

.bookie-bonus {
  background: linear-gradient(135deg, rgba(212,129,10,0.15), rgba(212,129,10,0.05));
  border: 1px solid rgba(212,129,10,0.25);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.bookie-bonus-value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.bookie-bonus-label { font-size: 12px; color: var(--grey-light); letter-spacing: 1px; }

.bookie-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bookie-features li {
  font-size: 13px;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bookie-features li::before { content: '▸'; color: var(--gold); }

.bookie-tag {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-tech);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
}

/* =============================================
   TIPSTER PROFILE
============================================= */
.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,129,10,0.15);
  border: 1px solid rgba(212,129,10,0.15);
  margin: 48px 0;
}

.profile-stat {
  background: var(--dark);
  padding: 32px 24px;
  text-align: center;
}

.profile-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(212,129,10,0.3);
}
.profile-stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 8px;
}

/* =============================================
   CONTACT / CTA
============================================= */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,129,10,0.08) 0%, transparent 70%),
    var(--dark2);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.cta-sub { font-size: 18px; color: var(--grey-light); max-width: 560px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--black);
  border-top: 1px solid rgba(212,129,10,0.15);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  width: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(212,129,10,0.4));
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-desc { font-size: 14px; color: var(--grey); line-height: 1.8; max-width: 280px; }

.footer-col-title {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,129,10,0.2);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a::before { content: '›'; color: var(--gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--grey); }
.footer-copy span { color: var(--gold); }
.footer-disclaimer { font-size: 11px; color: rgba(136,136,136,0.6); max-width: 500px; line-height: 1.6; }

.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,129,10,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: all 0.3s;
  font-size: 16px;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,129,10,0.08); }

/* =============================================
   TICKER
============================================= */
.ticker {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  gap: 48px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-tech);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.ticker-sep { color: rgba(0,0,0,0.3); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   MOBILE RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 48px; }
  .hero-image { margin-top: 40px; }
  .hero-logo-wrap { width: 240px; height: 240px; }
  .hero-logo { width: 160px; height: 160px; }

  .profile-stats { grid-template-columns: repeat(2, 1fr); }
  .pdf-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(5,5,5,0.98);
    padding: 40px 24px;
    gap: 24px;
    backdrop-filter: blur(20px);
  }
  .nav-links.open a { font-size: 20px; }
  .hamburger { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .profile-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .social-strip-inner { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .bookmakers-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
