@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 3rem 1.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana,
    sans-serif;
  background: #fff;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  background: #fff;
  border: 2px solid #cf142b;
  padding: 2.5rem 3rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(207, 20, 43, 0.3);
  max-width: 600px;
  width: 100%;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 20px 40px rgba(207, 20, 43, 0.5);
}

h1 {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  color: #cf142b;
  letter-spacing: 0.05em;
}

.category {
  font-weight: 600;
  font-size: 1.1rem;
  color: #cf142b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.explanation {
  font-weight: 400;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.7;
  user-select: text;
}

.rounded-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
}

.rounded-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 12px; /* rounded corners */
  border: 2px solid #cf142b;
  background: #fff;
  box-shadow: 0 12px 30px rgba(207, 20, 43, 0.3);
  cursor: pointer;
  font-weight: 600;
  color: #cf142b;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.rounded-btn:hover {
  box-shadow: 0 20px 40px rgba(207, 20, 43, 0.5);
  background-color: #fee5e7;
}

.icon {
  width: 20px;
  height: 20px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  box-sizing: border-box;
}
