    .ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Arial', sans-serif;
}

.ad-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 350px;
  height: 200px;
  animation: cardAnimation 3s ease-in-out infinite;
}

.ad-content {
  padding: 30px;
  text-align: center;
  color: #333;
}

.ad-title {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: bold;
  color: #e74c3c;
  animation: titleAnimation 2s ease-in-out infinite alternate;
}

.ad-text {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  animation: textAnimation 2.5s ease-in forwards;
}

.ad-button {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: buttonAnimation 3s ease-in-out infinite;
}

.ad-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

@keyframes cardAnimation {
  0% {
    transform: translateY(-20px) rotate(-2deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes titleAnimation {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonAnimation {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  }
  50% {
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.5);
    transform: translateY(-3px);
  }
}