* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background:
              url("soy.png") no-repeat center bottom; 
  background-size: 30%; 
  color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 60vh;
  text-align: center;
  animation: wojakSlide 1s ease forwards;
}
@keyframes wojakSlide {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center 590%;
  }
}




.offers-container {
  max-width: 1200px;
  width: 100%;
  animation: fadeIn 1.2s ease-out forwards;
}

.offers-container h1 {
  font-size: 2.5rem;
  color: #ff77ff;
  text-shadow: 0 0 15px #b04fff;
  margin-bottom: 40px;
}

.offers-grid {
  padding-top:30px ;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.offer-card {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(176, 79, 255, 0.5);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeSlide 1s ease forwards;
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 35px #b04fff, 0 0 60px #ff77ff;
}

.offer-card h2 {
  font-size: 1.5rem;
  color: #ff77ff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #b04fff;
}

.offer-card p {
  font-size: 1rem;
  color: #dcdcdc;
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

