* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: url("/img/bg.png") no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 20% 30%,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 50%
      ),
      radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
      radial-gradient(
        circle at 40% 80%,
        rgba(0, 0, 0, 0.35) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 60% 20%,
        rgba(92, 46, 46, 0.3) 0%,
        transparent 50%
      );
    opacity: 0.8;
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
      );
    mix-blend-mode: multiply;
  }
}

a {
  text-decoration: none;
  color: #fff;
}

.texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  opacity: 0.5;
}

.modal {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  z-index: 10;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

p {
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
}

a {
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-yes {
  background-color: #4169e1;
  color: white;
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.4);
}

.btn-yes:hover {
  background-color: #3557c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(65, 105, 225, 0.5);
}

.btn-no {
  background-color: #f0f0f0;
  color: #333;
}

.btn-no:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.grunge-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(0, 0, 0, 0.3) 0%,
      transparent 20%
    ),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.25) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.35) 0%, transparent 15%);
}

.footer-links {
  margin-top: 20px;
  font-size: 12px;
  color: #999;
  text-align: center;
  position: absolute;
  bottom: 4%;
  z-index: 20;

  a {
    padding: 12px 4px;

    &:hover {
      text-decoration: underline;
      color: #4169e1;
    }
  }
}
