/* New Professional Hero Section Styles */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-new::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url('/images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-in-out infinite;
  z-index: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.2), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(6, 255, 165, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(124, 58, 237, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: sparkle 20s linear infinite;
  z-index: 2;
}

@keyframes sparkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-200px); }
}

@keyframes heroZoom {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(1.1);
  }
}

.hero-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  gap: 2rem;
}

.hero-content-new {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #00d4ff, #06ffa5);
  color: #0f172a;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.title-line-1 {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #b0b0b0;
  margin-bottom: 0.5rem;
}

.title-line-2 {
  display: block;
  background: linear-gradient(45deg, #00d4ff, #7c3aed, #06ffa5);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.title-accent {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  color: #06ffa5;
  margin-top: 0.5rem;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.hero-offer-banner {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(6, 255, 165, 0.1));
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
  animation: bannerGrow 4s ease-in-out infinite;
}

@keyframes bannerGrow {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
  }
}

.offer-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.offer-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00d4ff, #06ffa5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.offer-text {
  text-align: center;
}

.offer-text h3 {
  font-size: 1.3rem;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.offer-text p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, #00d4ff, #7c3aed);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #06ffa5;
  padding: 1rem 2rem;
  border: 2px solid #06ffa5;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #06ffa5;
  color: #0f172a;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00d4ff;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-top: 0.25rem;
}

.hero-visual-new {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gaming-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.game-card-stack {
  position: relative;
  height: 400px;
}

.game-card {
  position: absolute;
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card-1 {
  top: 0;
  left: 0;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  top: 60px;
  left: 40px;
  z-index: 2;
  animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
  top: 120px;
  left: 80px;
  z-index: 1;
  animation: float 6s ease-in-out infinite 4s;
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-header h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-badge {
  background: #00d4ff;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-badge:nth-child(2) {
  background: #06ffa5;
}

.card-symbols {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-coin {
  position: absolute;
  font-size: 2rem;
  animation: floatCoin 8s ease-in-out infinite;
}

.coin-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.coin-2 {
  top: 50%;
  right: 5%;
  animation-delay: 3s;
}

.coin-3 {
  bottom: 20%;
  right: 15%;
  animation-delay: 6s;
}

@keyframes floatCoin {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-wrapper {
    padding: 0 2rem;
    gap: 2rem;
  }
  
  .hero-main-title {
    font-size: 3rem;
  }
  
  .title-line-1 {
    font-size: 1.6rem;
  }
  
  .game-card-stack {
    height: 350px;
  }
  
  .game-card {
    width: 260px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 0 1.5rem;
    gap: 1.5rem;
    min-height: 70vh;
  }
  
  .hero-main-title {
    font-size: 2.5rem;
  }
  
  .title-line-1 {
    font-size: 1.4rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .game-card-stack {
    height: 300px;
  }
  
  .game-card {
    width: 240px;
    height: 150px;
  }
  
  .hero-offer-banner {
    padding: 1rem;
  }
  

}

@media (max-width: 480px) {
  .hero-wrapper {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .hero-main-title {
    font-size: 1.8rem;
  }
  
  .title-line-1 {
    font-size: 1.2rem;
  }
  
  .title-accent {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .game-card {
    width: 200px;
    height: 130px;
    padding: 1rem;
  }
  
  .card-symbols {
    font-size: 2rem;
  }
  
  .hero-offer-banner {
    padding: 0.75rem;
  }
  
  .offer-icon-new {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .offer-text h3 {
    font-size: 1.1rem;
  }
  
  .offer-text p {
    font-size: 1rem;
  }
}