body {
  font-family: 'Special Elite', cursive;
  line-height: 1.8;
  margin: 0;
  padding: 20px;
  background-color: #f0f8ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  color: #2c3e50;
  text-align: center;
  border-bottom: 2px solid #3498db;
  padding-bottom: 15px;
  font-size: 3em;
}

h2 {
  color: #e74c3c;
  font-size: 2.5em;
}

.description {
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
  font-size: 1.4em;
}

.activity {
  margin-top: 30px;
  scroll-margin-top: 20px;
}

.activity h2 {
  color: #2c3e50;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

.balloon-debate {
  text-align: center;
}

.balloon-container {
  margin: 20px 0;
}

.balloon {
  width: 300px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.characters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.character {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.character:hover {
  transform: translateY(-5px);
}

.character h3 {
  font-size: 1.8em;
  margin: 15px 0;
}

.character p {
  font-size: 1.3em;
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.character-selector {
  margin: 20px 0;
}

.tab {
  font-family: 'Special Elite', cursive;
  padding: 10px 20px;
  font-size: 1.2em;
  margin: 0 10px;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab.active {
  background: #3498db;
  color: white;
}

.hidden {
  display: none;
}

.twenty-questions {
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.category-selector {
  margin: 20px 0;
  text-align: center;
}

.game-tab {
  font-family: 'Special Elite', cursive;
  padding: 12px 20px;
  font-size: 1.3em;
  margin: 0 5px;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.game-tab.active {
  background: #e74c3c;
  color: white;
}

.game-content {
  text-align: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.question-counter {
  font-size: 1.8em;
  color: #e74c3c;
  margin: 20px 0;
}

#secret-item {
  font-size: 2em;
  margin: 20px 0;
  color: #2c3e50;
}

.common-questions {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 800px;
}

.common-questions h3 {
  color: #2c3e50;
  font-size: 1.6em;
}

#question-suggestions {
  list-style: none;
  padding: 0;
  font-size: 1.3em;
  line-height: 1.8;
  columns: 2;
  column-gap: 40px;
}

#question-suggestions li {
  margin: 10px 0;
  color: #34495e;
  break-inside: avoid;
}

.game-button {
  font-family: 'Special Elite', cursive;
  font-size: 1.4em;
  padding: 15px 30px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

#new-game {
  background: #2ecc71;
  color: white;
}

#reveal {
  background: #3498db;
  color: white;
}

.game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hints {
  font-size: 1.4em;
  color: #7f8c8d;
  margin: 20px 0;
}

.taboo-game {
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
}

.taboo-tab {
  font-family: 'Special Elite', cursive;
  padding: 12px 20px;
  font-size: 1.3em;
  margin: 0 5px;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.taboo-tab.active {
  background: #9b59b6;
  color: white;
}

.card-display {
  margin: 30px auto;
  max-width: 350px;
  perspective: 1000px;
}

.taboo-card {
  background: #fef9b4;  
  border-radius: 2px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  padding: 20px;
  margin: 20px auto;
  min-height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  transform: rotate(-1deg);
  font-family: 'Special Elite', cursive;
}

.taboo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(0,0,0,0.05);
  border-radius: 2px 2px 0 0;
}

.target-word {
  font-size: 2.2em;
  color: #333;
  margin: 30px 0 20px;
  padding: 10px;
  border-bottom: 2px solid rgba(0,0,0,0.2);
  text-align: center;
}

.taboo-words {
  font-size: 1.6em;
  color: #e74c3c;
  margin: 20px 0;
  text-align: left;
  padding: 0 20px;
}

.taboo-words p {
  margin: 15px 0;
  position: relative;
  padding-left: 25px;
}

.taboo-words p::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #333;
}

.timer {
  font-size: 2.5em;
  color: #9b59b6;
  margin: 20px 0;
}

.controls {
  margin: 20px 0;
}

#next-card {
  background: #9b59b6;
}

#start-timer {
  background: #27ae60;
}

.available-qa {
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
}

.qa-pair {
  margin: 10px 0;
  font-size: 1.2em;
  padding: 5px;
  border-bottom: 1px solid #ddd;
}

.question {
  color: #2c3e50;
  font-weight: bold;
}

.answer {
  color: #e74c3c;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.situation-cards {
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.situation-selector {
  margin: 20px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.situation-tab {
  font-family: 'Special Elite', cursive;
  padding: 12px 20px;
  font-size: 1.3em;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
}

.situation-tab.active {
  background: #f39c12;
  color: white;
}

.role-play-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.scenario-title {
  font-size: 2em;
  color: #f39c12;
  text-align: center;
  margin: 20px 0;
  padding: 10px;
  border-bottom: 2px dashed #f39c12;
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.role-card {
  background: #fff9e6;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.role-card h3 {
  color: #d35400;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.role-card h4 {
  color: #f39c12;
  font-size: 1.4em;
  margin: 15px 0;
}

.useful-phrases ul, .objectives ul {
  list-style-type: none;
  padding: 0;
}

.useful-phrases li, .objectives li {
  font-size: 1.2em;
  margin: 10px 0;
  padding: 8px;
  border-bottom: 1px solid rgba(243, 156, 18, 0.2);
}

.switch-scenario {
  font-family: 'Special Elite', cursive;
  font-size: 1.4em;
  padding: 15px 30px;
  background: #f39c12;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 30px auto;
  transition: all 0.3s;
}

.switch-scenario:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.interview-simulation {
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.job-selector {
  margin: 20px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.job-tab {
  font-family: 'Special Elite', cursive;
  padding: 12px 20px;
  font-size: 1.3em;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 5px;
}

.job-tab.active {
  background: #2980b9;
  color: white;
}

.interview-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.job-title {
  font-size: 2em;
  color: #2980b9;
  text-align: center;
  margin: 20px 0;
  padding: 10px;
  border-bottom: 2px dashed #2980b9;
}

.interview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.interview-cards .role-card {
  background: #f5f9ff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.interview-cards .role-card h3 {
  color: #2980b9;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.interview-cards .role-card h4 {
  color: #34495e;
  font-size: 1.4em;
  margin: 15px 0;
  border-bottom: 2px solid rgba(41, 128, 185, 0.2);
  padding-bottom: 5px;
}

.interview-cards .role-card ul {
  list-style-type: none;
  padding: 0;
}

.interview-cards .role-card li {
  font-size: 1.2em;
  margin: 10px 0;
  padding: 8px;
  border-bottom: 1px solid rgba(41, 128, 185, 0.1);
  line-height: 1.4;
}

.job-description p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #34495e;
  margin: 10px 0;
  padding: 10px;
  background: rgba(41, 128, 185, 0.1);
  border-radius: 5px;
}

.topics-hat-game {
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  text-align: center;
}

.topic-level-selector {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.topic-tab {
  font-family: 'Special Elite', cursive;
  padding: 12px 24px;
  font-size: 1.3em;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.topic-tab.active {
  background: #8e44ad;
  color: white;
}

.hat-container {
  position: relative;
  margin: 40px auto;
  max-width: 600px;
}

.hat-image {
  width: 300px;
  height: auto;
  margin-bottom: 30px;
}

.topic-display {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.paper-slip {
  background: #fff9e6;
  padding: 20px;
  border-radius: 8px;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  margin: 20px auto;
  max-width: 400px;
}

.paper-slip p {
  font-size: 1.8em;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.topic-helpers {
  text-align: left;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.topic-helpers h4 {
  color: #8e44ad;
  font-size: 1.4em;
  margin: 15px 0 10px;
}

.topic-helpers ul {
  list-style-type: none;
  padding: 0;
  columns: 2;
  column-gap: 30px;
}

.topic-helpers li {
  font-size: 1.2em;
  margin: 8px 0;
  color: #555;
  break-inside: avoid;
}

.topic-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.timer-control {
  display: flex;
  align-items: center;
  gap: 15px;
}

#topic-timer {
  font-size: 2em;
  color: #8e44ad;
  font-family: monospace;
  min-width: 80px;
}

.activity-index {
  background: linear-gradient(135deg, #fff, #e3f2fd);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin: 30px 0 50px 0;
  border: 3px solid #3498db;
}

.activity-index ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 0;
}

.activity-index li {
  text-align: center;
}

.activity-index a {
  display: block;
  padding: 20px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.4em;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.activity-index a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #2980b9, #3498db);
}

.activity-index a::before {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
  font-size: 1.2em;
}

.activity-index a:hover::before {
  right: 20px;
}

.hidden {
  display: none;
}

#balloon-debate {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

#twenty-questions {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

#taboo {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

#situations {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

#interview {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

#topics-hat {
  background: linear-gradient(135deg, #ede7f6, #d1c4e9);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

html {
  scroll-behavior: smooth;
}