/* ============================================
   ROBO CAT CASINO - HERO STYLES
   Blue Theme | Full Page Hero Background
   ============================================ */

/* ============================================
   FULL PAGE HERO BACKGROUND
   ============================================ */
.page-hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url('/assets/img/hero-casino.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    hsla(222, 47%, 6%, 0.75) 0%, 
    hsla(222, 47%, 6%, 0.88) 40%, 
    hsl(222, 47%, 6%) 100%
  );
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, hsla(217, 91%, 60%, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, hsla(192, 91%, 55%, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

/* Container inside hero - force center */
.hero .container,
.hero > .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Hero with background image (inline) */
.hero-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    hsla(222, 47%, 6%, 0.6) 0%, 
    hsla(222, 47%, 6%, 0.85) 70%, 
    hsl(222, 47%, 6%) 100%
  );
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, hsla(217, 91%, 60%, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, hsla(192, 91%, 55%, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 40px;
  position: relative;
  z-index: 1;
  text-align: center !important;
  width: 100% !important;
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 20px;
}

.hero-content {
  max-width: 700px;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero-content * {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: hsla(217, 91%, 60%, 0.15);
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge i { font-size: 1rem; }

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  text-align: center;
  width: 100%;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 520px;
  width: 100%;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* CTA Buttons - Centered */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-cta .btn {
  min-width: 180px;
}

/* Hero Stats - Centered */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
  padding: 16px 20px;
  background: hsla(222, 40%, 10%, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 100px;
  transition: all var(--transition-base);
}

.hero-stat:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 20px hsla(217, 91%, 60%, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px hsla(217, 91%, 60%, 0.5);
  }
}

/* Hero Page Variants */
.hero-bonus {
  min-height: auto;
  padding: 140px 0 60px;
}

.hero-app {
  padding-top: 140px;
}

.hero-login {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content { max-width: 100%; }
  .hero p { max-width: 100%; }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-stat {
    padding: 12px 16px;
    min-width: 90px;
  }
  
  .hero-stat-value { font-size: 1.5rem; }
  
  .hero-image { order: -1; }
  
  .hero-image img {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .hero h1 { font-size: 1.75rem; }
  
  .page-hero-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 40px; }
  
  .hero-stats { gap: 12px; }
  
  .hero-stat {
    padding: 10px 12px;
    min-width: 80px;
  }
  
  .hero-stat-value { font-size: 1.25rem; }
  
  .hero-image img { max-width: 280px; }
}
