
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  background: #000;
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.logo.large {
  width: 180px;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  z-index: 1000;
}

header {
  padding-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.glitch-text {
  font-size: 2.8rem;
  color: #00ffff;
  animation: glitch-real 12s infinite;
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

@keyframes glitch-real {
  0%, 94%, 100% {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
  95% {
    opacity: 0.2;
    transform: skewX(25deg);
    clip-path: polygon(0 20%, 100% 20%, 100% 22%, 0 22%);
  }
  96% {
    transform: translateX(-2px);
    clip-path: polygon(0 60%, 100% 60%, 100% 63%, 0 63%);
  }
  97% {
    transform: skewX(-20deg);
    clip-path: polygon(0 35%, 100% 35%, 100% 38%, 0 38%);
  }
  98% {
    transform: translateX(3px);
    opacity: 0.5;
    clip-path: polygon(0 80%, 100% 80%, 100% 83%, 0 83%);
  }
  99% {
    transform: none;
    opacity: 1;
    clip-path: none;
  }
}

.glow-box {
  margin: 1.5rem auto;
  max-width: 900px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  color: #00ffff;
  box-shadow:
    0 0 10px rgba(255, 0, 80, 0.15),
    0 0 5px rgba(255, 0, 80, 0.2),
    0 0 3px rgba(255, 0, 80, 0.25);
  animation: flickerBorders 6s infinite;
  position: relative;
  z-index: 10;
}

@keyframes flickerBorders {
  0%, 20%, 22%, 24%, 60%, 62%, 100% {
    box-shadow:
      0 0 10px rgba(255, 0, 80, 0.15),
      0 0 5px rgba(255, 0, 80, 0.2),
      0 0 3px rgba(255, 0, 80, 0.25);
  }
  21%, 23%, 61% {
    box-shadow:
      0 0 20px rgba(255, 0, 80, 0.3),
      0 0 10px rgba(255, 0, 80, 0.4),
      0 0 5px rgba(255, 0, 80, 0.5);
  }
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  z-index: 10;
  position: relative;
}

.offer-card {
  background: rgba(0, 0, 0, 0.65);
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  width: 270px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), 0 0 8px rgba(255, 0, 80, 0.2);
  backdrop-filter: blur(4px);
  text-align: center;
  color: #00ffff;
  font-size: 0.95rem;
}

.contact-button {
  display: inline-block;
  margin-top: 1rem;
  background: #ff0050;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #ff0050;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background: #ff3366;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #555;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #00ffff;
  text-align: center;
}

.special-offer {
  position: relative;
  text-align: center;
  font-size: 1.2rem;
}

.discount-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ff0050;
  color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  padding: 0.5rem 1rem;
  transform: rotate(-15deg);
  animation: pulseDiscount 2s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(255, 0, 80, 0.7);
}

@keyframes pulseDiscount {
  0%, 100% {
    transform: scale(1) rotate(-15deg);
  }
  50% {
    transform: scale(1.3) rotate(-15deg);
  }
}

.offer-note {
  font-size: 0.85rem;
  color: #00ffff;
  opacity: 0.7;
  text-align: center;
  margin-top: 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
