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

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  width: 100%;
  position: relative;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px #00000080;
}

/* Quote Box */
.quote-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #00000040;
}

#quote {
  font-size: 1.4rem;
  font-weight: bold;
}

#author {
  margin-top: 12px;
  font-style: italic;
  font-size: 1rem;
  color: #ffe66d;
}

/* Buttons */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

button {
  background-color: #ffe66d;
  color: #333;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

button:hover {
  background-color: #fdd835;
  transform: translateY(-2px);
}

button:active {
  transform: scale(0.97);
}

/* Like Button Highlight */
.liked {
  background-color: #ff4d4d !important;
  color: white !important;
}

/* Toast Message */
.toast {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #444;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  #quote {
    font-size: 1.2rem;
  }

  .button-group {
    flex-direction: column;
  }
}