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

body.tea-page {
  background: #fff0f5 url('tea-bg.png') no-repeat bottom right;
  background-size: contain;
  font-family: 'Georgia', serif;
  color: #4b2c30;
  padding: 40px;
}

/* Navigation */
nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  color: #a62b4d;
  background-color: #fff2f5;
  padding: 10px 15px;
  border-radius: 8px;
}

nav a:hover {
  background-color: #ffe4eb;
}

/* Title */
.tea-title {
  text-align: center;
  font-family: 'Georgia', serif;
  color: #a62b4d;
  font-size: 48px;
  margin-bottom: 30px;
}

/* Container */
.tea-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

/* Tea Bubbles */
.tea-bubble {
  background-color: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.6;
}

.tea-bubble.lighter {
  background-color: #fef6f8;
}

/* Prompts */
.prompt {
  color: #a62b4d;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Tags */
.tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.tag {
  background-color: #fce4ec;
  padding: 6px 14px;
  border-radius: 20px;
}

.spilled {
  background-color: #f8d7da;
  font-weight: bold;
}

.wild {
  background-color: #fde0e6;
  font-weight: bold;
}

.wild-text {
  color: #a62b4d;
  font-weight: bold;
}

/* Emoji spacing */
.emoji {
  margin-right: 6px;
}

/* Truth Box */
.truth-note {
  margin-top: 50px;
  background-color: #fff7fb;
  border: 1px dashed #ffc1d6;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  font-size: 20px;
  color: #a62b4d;
}

.truth-note button {
  margin-top: 20px;
  background-color: #a62b4d;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.truth-note button:hover {
  background-color: #c6486c;
}
