body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #121212;
  font-family: Arial, sans-serif;
  text-align: center;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.no-way-button {
  position: relative;
  background: linear-gradient(135deg, #007BFF, #00C6FF);
  border: none;
  border-radius: 30px;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.no-way-button:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.4);
}

.no-way-button:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.no-way-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.5);
}

.no-way-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.no-way-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgba(0, 123, 255, 0.2);
  box-shadow: 0 0 20px 10px rgba(0, 123, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

.no-way-button:hover::after {
  opacity: 1;
}

button {
  background: transparent;
  border: 2px solid white;
  border-radius: 30px;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin-top: 18px;
}

button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}
