
/* ═══════════════════════════════════════════════
   BETKE.SITE — Premium Visual Layer
   Pure CSS + Canvas, no external deps
═══════════════════════════════════════════════ */

/* HERO PARALLAX */
.hero-parallax {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background: #04080f;
}
@media(max-width:600px){.hero-parallax{height:auto;min-height:380px;padding:48px 16px}}
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(245,158,11,.25);
}
.hero-content h1 em { font-style: normal; color: #f59e0b; }
.hero-content p {
  color: #6b7a99;
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 28px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* GLOW PULSE BUTTON */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b00, #f59e0b);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
  box-shadow: 0 0 0 0 rgba(245,158,11,.5);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.5); }
  50%       { box-shadow: 0 0 0 12px rgba(245,158,11,.0); }
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }
.btn-glow:hover { transform: translateY(-2px) scale(1.02); color: #fff; text-decoration: none; }

.btn-blue-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 0 20px rgba(59,130,246,.2);
}
.btn-blue-glow:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(59,130,246,.45); color: #fff; text-decoration: none; }

/* BADGE STRIP */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.badge {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  color: #64748b;
  backdrop-filter: blur(4px);
}
.badge strong { color: #94a3b8; }

/* AVIATOR CANVAS WIDGET */
.av-canvas-wrap {
  background: linear-gradient(135deg, rgba(245,158,11,.07), rgba(255,107,0,.04));
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
#av-canvas {
  width: 100%;
  height: 140px;
  display: block;
  border-radius: 10px;
  background: rgba(0,0,0,.25);
  margin-bottom: 12px;
}
.av-multi-big {
  font-size: 44px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  color: #f59e0b;
  line-height: 1;
  transition: color .3s;
  text-shadow: 0 0 30px rgba(245,158,11,.4);
}
.av-status {
  font-size: 12px;
  color: #475569;
  margin: 4px 0 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* STATS — COUNT UP */
.stats-animated {
  background: #08111f;
  border-bottom: 1px solid #1a2340;
  padding: 14px 20px;
}
.stats-row {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #f59e0b;
  font-variant-numeric: tabular-nums;
  display: block;
}
.stat-lbl {
  font-size: 11px;
  color: #475569;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* SITE CARDS — 3D TILT */
.tilt-card {
  background: #0d1420;
  border: 1px solid #1a2340;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  transition: border-color .3s, transform .15s, box-shadow .15s;
  transform-style: preserve-3d;
  cursor: default;
}
.tilt-card:hover {
  border-color: rgba(245,158,11,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(245,158,11,.1);
}
.tilt-card.gold-border {
  border-color: rgba(245,158,11,.3);
  background: linear-gradient(135deg, rgba(245,158,11,.05), #0d1420);
}
.rank-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.rank-gold { background: rgba(245,158,11,.18); color: #f59e0b; border: 1px solid rgba(245,158,11,.4); }
.rank-silver { background: rgba(148,163,184,.1); color: #94a3b8; border: 1px solid rgba(148,163,184,.22); }

/* PROMO CODE ANIMATED */
.promo-animated {
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.promo-animated::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.08), transparent);
  animation: promo-shine 3s ease-in-out infinite;
}
@keyframes promo-shine { 100% { left: 140%; } }
.promo-code-text {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: 4px;
}
.promo-label {
  font-size: 11px;
  color: #475569;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FLOATING PARTICLES on card hover */
@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: .7; }
  100% { transform: translateY(-60px) scale(.3); opacity: 0; }
}

/* PARALLAX SCROLL */
[data-parallax] {
  will-change: transform;
  transition: transform .05s linear;
}

/* SECTION FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
