#roastForm textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #cc6600;
  border-radius: 4px;
  resize: vertical;
}

#roastForm button {
  margin-top: 8px;
  background-color: #cc6600;
  border: none;
  color: white;
  padding: 8px 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 1px 1px 0 #994d00;
}

#roastForm button:hover {
  background-color: #994d00;
}

#postsList {
  margin-top: 15px;
  list-style: none;
  padding-left: 0;
}

#postsList li {
  background: #fff3e6;
  border: 1px solid #ffb366;
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 10px;
  box-shadow: inset 2px 2px 5px #ffd9b3;
  font-style: italic;
  color: #663300;
}
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;  /* centers inline content like text and images */
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tabcontent {
  text-align: left; /* keep tab content text left aligned */
}

.title, .tagline {
  text-align: center;
}
body {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #4a2c00;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff9f0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
  text-align: center;
}

.title {
  color: #d94b00;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 4px;
  text-shadow: 1px 1px 3px #a33a00;
  letter-spacing: 3px;
}

.tagline {
  color: #ff7a00;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 0 0 6px #ffa64d;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.tablink {
  background-color: #ff7a00;
  border: none;
  color: white;
  font-weight: bold;
  padding: 12px 22px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 3px 7px #b25a00;
  transition: background-color 0.3s ease;
}

.tablink:hover {
  background-color: #cc6100;
  box-shadow: 0 0 12px #ff9c33;
}

.tablink:active {
  background-color: #cc6100;
  box-shadow: 0 0 12px #ff9c33 inset;
  transform: scale(0.95);
  transition: none;
}

button:active:not(:disabled) {
  background-color: #cc6100;
  box-shadow: 0 0 12px #ff9c33 inset;
  transform: scale(0.95);
  transition: none;
}


.tabcontent {
  text-align: left;
  color: #663300;
  font-size: 1.1rem;
  line-height: 1.5;
}

.tabcontent h2, .tabcontent h3 {
  color: #d94b00;
  text-shadow: 0 0 6px #ffa64d;
}

ul li {
  margin: 8px 0;
}

img {
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
  max-width: 100%;
  height: auto;
}

/* Trivia Buttons */
#triviaAnswers button {
  background: #ff7a00;
  border: none;
  color: white;
  padding: 8px 14px;
  font-weight: bold;
  margin: 5px 6px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 3px 7px #b25a00;
  transition: background-color 0.3s ease;
}

#triviaAnswers button:hover:not(:disabled) {
  background-color: #cc6100;
  box-shadow: 0 0 12px #ff9c33;
}

#triviaAnswers button:disabled {
  background-color: #d9d9d9;
  color: #999;
  cursor: default;
  box-shadow: none;
}

/* Next Question Button */
#nextTriviaBtn {
  background-color: #d94b00;
  border-radius: 25px;
  color: white;
  padding: 10px 20px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 0 20px #ff9c33;
  border: none;
  transition: background-color 0.3s ease;
}

#nextTriviaBtn:hover {
  background-color: #ff7a00;
}

/* Clicker Button */
#roastClickerBtn {
  background: linear-gradient(45deg, #ffa64d, #ff7a00);
  border: none;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px #b25a00;
  transition: transform 0.2s ease;
}

#roastClickerBtn:active {
  transform: scale(0.95);
}

/* Link styles on Contact page if added */

a {
  color: #d94b00;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}