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

/* Body Setup */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Spinner Container */
.spinner-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Title */
h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

/* Confession Box */
.confession-box {
  background-color: #f3f4f6;
  border-radius: 10px;
  padding: 20px;
  font-size: 1.2rem;
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.confession-box p {
  margin: 10px 0;
}

.tone-tag {
  font-style: italic;
  font-size: 1rem;
  color: #777;
}

/* Spin Button */
#spin-btn {
  padding: 10px 20px;
  background-color: #0077b6;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

#spin-btn:hover {
  background-color: #005f84;
}

/* Footer Link */
footer {
  margin-top: 20px;
  font-size: 0.9rem;
}

footer a {
  color: #0077b6;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Support */
@media (max-width: 600px) {
  .spinner-container {
    padding: 15px;
    width: 90%;
  }

  h1 {
    font-size: 2rem;
  }

  .confession-box {
    font-size: 1rem;
  }

  #spin-btn {
    font-size: 1rem;
    padding: 8px 15px;
  }
}
