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

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
  color: #fff;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 60px;
  font-size: 2.5rem;
  max-width: 800px;
  line-height: 1.3;
}

.buttons {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

button {
  padding: 18px 40px;
  font-size: 1.25rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  user-select: none;
  min-width: 150px;
}

#yes-btn {
  background-color: #28a745;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#yes-btn:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

#no-btn {
  background-color: #dc3545;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#no-btn:hover {
  background-color: #a71d2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

button {
  padding: 16px 36px; /* Slightly reduced from original */
  font-size: 1.1rem;   /* Slightly reduced from original */
  border: none;
  border-radius: 10px; /* Slightly smaller radius */
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  user-select: none;
  min-width: 130px;    /* Reduced from 150px */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;  /* Smaller heading */
    margin-bottom: 30px; /* Less space below heading */
  }

  .buttons {
    gap: 20px;         /* Reduced gap between buttons */
  }

  button {
    padding: 12px 24px; /* Much smaller on mobile */
    font-size: 0.9rem;  /* Smaller text */
    min-width: 110px;   /* Narrower buttons */
  }
}

/* Extra small devices (phones, 400px and down) */
@media (max-width: 400px) {
  button {
    padding: 10px 20px; /* Even more compact */
    font-size: 0.85rem;
    min-width: 100px;
  }
  
  .buttons {
    gap: 15px;
  }
}