* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f2f3;
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1560px;
  min-width: 1240px;
  margin: 25px auto;
  position: relative;
  color: #333;
}

.container * {
  box-sizing: border-box;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

header p {
  opacity: 0.9;
  font-size: 1rem;
}

.game-area {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.count-control {
  display: flex;
  align-items: center;
}

.container label {
  margin-right: 10px;
  font-weight: bold;
}

.container input {
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100px;
  text-align: center;
}

.buttons {
  display: flex;
  gap: 15px;
}

button {
  padding: 10px 36px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.truth-btn {
  background-color: #3498db;
  color: white;
}

.truth-btn:hover {
  background-color: #2980b9;
}

.dare-btn {
  background-color: #e74c3c;
  color: white;
}

.dare-btn:hover {
  background-color: #c0392b;
}

.copy-btn {
  background-color: #2ecc71;
  color: white;
}

.copy-btn:hover {
  background-color: #27ae60;
}

.results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  overflow: auto;
  font-size: 18px;
  font-weight: 600;
  border: 1px dashed #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  color: #777;
}

.question {
  margin: 10px 0;
  padding: 10px;
  font-size: 24px;
  font-weight: 700;
  background-color: white;
  border-left: 4px solid #3498db;
  color: #3498db;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.question.dare {
  border-left-color: #e74c3c;
  color: #e74c3c;
}

.notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.notice.show {
  opacity: 1;
}

.features {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature {
  flex: 1;
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.description {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.description h3{
  font-size: 20px;
  margin-bottom: 15px;
}

.description p{
  margin-top: 10px;
  color: #777;
}


footer {
  text-align: center;
  color: #777;
  font-size: 14px;
}
