* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(236, 72, 153, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #f8fafc, #eef2ff, #fdf2f8);
  color: #111827;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.quote-box {
  width: 100%;
  max-width: 680px;
  text-align: center;
}

.label {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 18px;
}

h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.subtitle {
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 32px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  margin-bottom: 24px;
}

.quote-icon {
  font-size: 80px;
  line-height: 1;
  color: #dbeafe;
  margin-bottom: 8px;
}

.quote {
  font-size: 26px;
  line-height: 1.7;
  color: #1f2937;
  min-height: 130px;
  margin-bottom: 20px;
}

.author {
  font-size: 18px;
  color: #2563eb;
  font-weight: bold;
  min-height: 24px;
}

button {
  border: none;
  background: #111827;
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 16px;
  }

  .quote-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .quote {
    font-size: 20px;
    min-height: 110px;
  }

  .quote-icon {
    font-size: 60px;
  }
}
