/* ========== BLUE HERO STYLE - OZEM ========== */

/* Top Timer Banner */
.top-timer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, 
    rgba(255, 65, 65, 0.95) 0%, 
    rgba(217, 70, 181, 0.95) 50%,
    rgba(255, 65, 65, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 65, 65, 0.4);
  animation: pulse-banner 2s ease-in-out infinite;
  padding: 0;
}

.top-timer-banner .container {
  padding: 0;
}

.top-timer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-timer-content:hover {
  background: rgba(255, 255, 255, 0.1);
}

.top-timer-icon {
  font-size: 28px;
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.top-timer-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-timer-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.top-timer-countdown {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  font-family: 'Orbitron', monospace;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
               0 0 40px rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.top-timer-cta {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.top-timer-content:hover .top-timer-cta {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

@keyframes pulse-banner {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 65, 65, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(255, 65, 65, 0.6);
  }
}

/* Adjust hero padding for fixed banner */
#hero {
  padding-top: calc(var(--space-xxl) + 130px);
}

/* Hero Section with Blue Gradient Background */
.gradient-hero {
  background: linear-gradient(135deg, #0A1630 0%, #1a2850 50%, #2a3860 100%);
  position: relative;
  overflow: visible;
  min-height: 100vh;
}

/* Animated Gradient Circles Background - Cyan/Pink */
.gradient-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center,
    rgba(126, 236, 255, 0.4) 0%,
    rgba(68, 236, 159, 0.3) 25%,
    rgba(255, 142, 212, 0.2) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

.gradient-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center,
    rgba(68, 236, 159, 0.5) 0%,
    rgba(126, 236, 255, 0.3) 30%,
    transparent 60%
  );
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite 0.5s;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.05);
    opacity: 0.8;
  }
}

/* Floating Particles */
.gradient-hero .particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle 12s infinite ease-in-out;
  filter: blur(1px);
}

/* Cyan Particles */
.particle-cyan {
  background: radial-gradient(circle, rgba(0, 255, 255, 0.8), rgba(0, 200, 255, 0.4));
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

/* Pink Particles */
.particle-pink {
  background: radial-gradient(circle, rgba(255, 150, 200, 0.8), rgba(255, 100, 180, 0.4));
  box-shadow: 0 0 30px rgba(255, 150, 200, 0.6);
}

/* Blue Particles */
.particle-blue {
  background: radial-gradient(circle, rgba(100, 150, 255, 0.8), rgba(80, 120, 255, 0.4));
  box-shadow: 0 0 30px rgba(100, 150, 255, 0.6);
}

/* Purple Particles */
.particle-purple {
  background: radial-gradient(circle, rgba(180, 100, 255, 0.8), rgba(150, 80, 255, 0.4));
  box-shadow: 0 0 30px rgba(180, 100, 255, 0.6);
}

/* Large Particles */
.particle-cyan-large {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.5), rgba(0, 200, 255, 0.2));
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.4);
  top: 15%;
  right: 25%;
  animation-delay: 0s;
}

.particle-purple-large {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(180, 100, 255, 0.5), rgba(150, 80, 255, 0.2));
  box-shadow: 0 0 50px rgba(180, 100, 255, 0.4);
  top: 65%;
  right: 15%;
  animation-delay: 2s;
}

/* Small/Medium Particles Positioning */
.gradient-hero .particle:nth-child(1) { 
  top: 25%; 
  right: 45%; 
  width: 60px; 
  height: 60px;
  animation-delay: 0s;
}

.gradient-hero .particle:nth-child(2) { 
  top: 35%; 
  right: 70%; 
  width: 40px; 
  height: 40px;
  animation-delay: 1.5s;
}

.gradient-hero .particle:nth-child(3) { 
  top: 50%; 
  right: 30%; 
  width: 80px; 
  height: 80px;
  animation-delay: 3s;
}

.gradient-hero .particle:nth-child(4) { 
  top: 70%; 
  right: 60%; 
  width: 50px; 
  height: 50px;
  animation-delay: 4.5s;
}

.gradient-hero .particle:nth-child(5) { 
  top: 15%; 
  right: 80%; 
  width: 45px; 
  height: 45px;
  animation-delay: 2s;
}

.gradient-hero .particle:nth-child(6) { 
  top: 45%; 
  right: 20%; 
  width: 35px; 
  height: 35px;
  animation-delay: 5s;
}

.gradient-hero .particle:nth-child(7) { 
  top: 80%; 
  right: 40%; 
  width: 55px; 
  height: 55px;
  animation-delay: 1s;
}

.gradient-hero .particle:nth-child(8) { 
  top: 30%; 
  right: 10%; 
  width: 70px; 
  height: 70px;
  animation-delay: 6s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-10px, -60px) scale(1);
    opacity: 1;
  }
  75% {
    transform: translate(30px, -40px) scale(0.9);
    opacity: 0.8;
  }
}

/* Diagonal Lines */
.diagonal-line {
  position: absolute;
  width: 4px;
  height: 150%;
  pointer-events: none;
  transform: rotate(45deg);
  top: -25%;
}

.diagonal-cyan {
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(0, 255, 255, 0.6) 30%,
    rgba(0, 255, 255, 0.8) 50%,
    rgba(0, 255, 255, 0.6) 70%,
    transparent 100%
  );
  right: 35%;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  animation: diagonal-glow 3s ease-in-out infinite;
}

.diagonal-purple {
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255, 100, 200, 0.6) 30%,
    rgba(255, 100, 200, 0.8) 50%,
    rgba(255, 100, 200, 0.6) 70%,
    transparent 100%
  );
  right: 60%;
  box-shadow: 0 0 20px rgba(255, 100, 200, 0.8);
  animation: diagonal-glow 3s ease-in-out infinite 1.5s;
}

@keyframes diagonal-glow {
  0%, 100% {
    opacity: 0.6;
    transform: rotate(45deg) translateY(0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(-20px);
  }
}

/* Hero Content Layout */
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

/* Hero Text */
.hero__text h1 {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero__text h1 span {
  display: block;
  color: #44EC9F;
}

.hero__text .sub-title {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

/* Icon Features */
.hero-features {
  display: flex;
  gap: 12px;
  margin: 32px 0 24px 0;
  align-items: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 60%,
    transparent 100%
  );
  transform: rotate(45deg);
  animation: glass-shine 3s ease-in-out infinite;
}

@keyframes glass-shine {
  0%, 100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

.feature-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin: 32px 0;
}

.btn-hero {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero.primary {
  background: linear-gradient(135deg, #44EC9F, #7EECFF);
  color: #0A1630;
  box-shadow: 0 8px 25px rgba(68, 236, 159, 0.4);
  font-weight: 700;
}

.btn-hero.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(68, 236, 159, 0.6);
}

.btn-hero.secondary {
  background: transparent;
  backdrop-filter: blur(10px);
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Badge Pills */
.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge-pill {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.badge-pill:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 142, 212, 0.3), rgba(243, 198, 161, 0.3));
  border-color: rgba(255, 142, 212, 0.6);
  color: #FF8ED4;
}

.badge-pill:nth-child(2) {
  background: linear-gradient(135deg, rgba(68, 236, 159, 0.3), rgba(126, 236, 255, 0.3));
  border-color: rgba(68, 236, 159, 0.6);
  color: #44EC9F;
}

.badge-pill:nth-child(3) {
  background: linear-gradient(135deg, rgba(126, 236, 255, 0.3), rgba(68, 236, 159, 0.3));
  border-color: rgba(126, 236, 255, 0.6);
  color: #7EECFF;
}

/* Hero Timer Banner */
.hero-timer-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 30px;
  background: linear-gradient(135deg, 
    rgba(255, 65, 65, 0.15) 0%, 
    rgba(217, 70, 181, 0.2) 50%,
    rgba(255, 65, 65, 0.15) 100%
  );
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 2px solid rgba(255, 65, 65, 0.4);
  box-shadow: 0 8px 32px rgba(255, 65, 65, 0.3),
              0 0 40px rgba(255, 65, 65, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-timer-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 65, 65, 0.6);
  box-shadow: 0 12px 40px rgba(255, 65, 65, 0.4),
              0 0 60px rgba(255, 65, 65, 0.3);
}

.hero-timer-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px rgba(255, 65, 65, 0.6));
}

.hero-timer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-timer-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-timer-countdown {
  font-size: 28px;
  font-weight: 800;
  color: #FF4141;
  font-family: 'Orbitron', monospace;
  text-shadow: 0 0 20px rgba(255, 65, 65, 0.8);
  letter-spacing: 2px;
}

.hero-timer-arrow {
  font-size: 24px;
  color: #FF4141;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.hero-timer-banner:hover .hero-timer-arrow {
  transform: translateX(5px);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(255, 65, 65, 0.3),
                0 0 40px rgba(255, 65, 65, 0.2);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 65, 65, 0.5),
                0 0 60px rgba(255, 65, 65, 0.4);
  }
}

/* Product Visual with Reflection */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 200px 0;
}

.product-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(68, 236, 159, 0.3));
  animation: float-product 6s ease-in-out infinite;
}

@keyframes float-product {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* Floor Reflection Effect */
.product-reflection {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  z-index: 1;
  pointer-events: none;
}

.product-reflection img {
  width: 100%;
  height: auto;
  transform: scaleY(-1);
  opacity: 0.8;
  filter: blur(8px) brightness(0.7) saturate(1.2);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 60%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.3) 60%, transparent 85%);
}

/* Floor Effect */
.floor-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right,
    transparent,
    rgba(68, 236, 159, 0.7) 50%,
    transparent
  );
  box-shadow: 0 0 20px rgba(68, 236, 159, 0.5);
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero__visual {
    order: -1;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .top-timer-content {
    gap: 10px;
    padding: 10px 15px;
  }
  
  .top-timer-icon {
    font-size: 22px;
  }
  
  .top-timer-label {
    font-size: 11px;
  }
  
  .top-timer-countdown {
    font-size: 18px;
    padding: 3px 8px;
  }
  
  .top-timer-cta {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 640px) {
  .hero__text h1 {
    font-size: 36px;
  }
  
  .hero-features {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-hero {
    width: 100%;
    text-align: center;
  }
  
  .top-timer-text {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  
  .top-timer-label {
    font-size: 10px;
  }
  
  .top-timer-countdown {
    font-size: 20px;
  }
  
  .top-timer-cta {
    display: none;
  }
}
