
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  overflow: hidden;
}

/* Matrix Background */
.matrix-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

.matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Alert Section */
.alert-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 15px;
  z-index: 1;
  margin: 20px auto;
  width: 90%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
  border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Typography inside alert */
.alert-section h2 {
  color: white;
  text-align: center;
}

.alert-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-align: center;
}

.cta-button {
  background-color: #00ff00;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #00cc00;
  transform: scale(1.1);
}

@keyframes matrixRain {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.matrix-text {
  font-family: monospace;
  font-size: 14px;
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
}

@media (max-width: 768px) {
  .alert-section {
    width: 95%;
  }
  .cta-button {
    padding: 8px 15px;
    font-size: 14px;
  }
}
