.profile-btn {
  background: linear-gradient(180deg, #3b2f1b, #2a220f);
  color: #ffd700;
  border: 2px solid #6b4b24;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 0 #593f1f, 0 10px 20px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 1rem;
}
.profile-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #593f1f;
}

.profile-content {
  max-width: 500px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border: 2px solid #6b4b24;
  border-radius: 12px;
  box-shadow: 0 0 30px #000a;
}
.profile-info-box,
.profile-stats-box {
  background: linear-gradient(90deg, #3b2f1b 60%, #2a220f 100%);
  border: 2px solid #6b4b24;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  color: #ffd700;
  box-shadow: 0 4px 20px #000a;
}
.profile-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.profile-label {
  min-width: 110px;
  color: #ffd700;
  font-weight: bold;
}

.grunge-xp {
  background: linear-gradient(90deg, #3b2f1b 60%, #2a220f 100%);
  border: 2px solid #6b4b24;
  border-radius: 8px;
  box-shadow: 0 4px 20px #000a;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.grunge-bar {
  background: #2a2a2a;
  border: 2px solid #ffd700;
  border-radius: 8px;
  box-shadow: 0 2px 10px #000a;
}
.grunge-progress {
  background: linear-gradient(90deg, #ffd700, #4ade80);
  border-radius: 8px;
  box-shadow: 0 0 10px #ffd70099;
}
.grunge-sp {
  background: #593f1f;
  border: 2px solid #ffd700;
  border-radius: 20px;
  color: #ffd700;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 10px #000a;
}
.grunge-box {
  background: linear-gradient(90deg, #3b2f1b 60%, #2a220f 100%);
  border: 2px solid #6b4b24;
  border-radius: 8px;
  box-shadow: 0 4px 20px #000a;
  color: #ffd700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: #ffffff;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.landing-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #2a2a5a 0%, #1a1a2e 100%);
  transition: all 0.8s ease-in-out;
}

.landing-section.fade-out {
  opacity: 0;
  transform: translateY(-50px);
}

.landing-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: slideInUp 1s ease-out;
}

.game-title {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.intro-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 40, 0.95),
    rgba(10, 12, 25, 0.98)
  );
  padding: 2rem;
}

.intro-content {
  max-width: 900px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.intro-title {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.intro-desc {
  color: #cccccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.intro-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  color: #e6e6e6;
}

.intro-features li {
  margin: 0.5rem 0;
}

.intro-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.medieval-btn {
  background: linear-gradient(180deg, #3b2f1b, #2a220f);
  color: #fff8e1;
  border: 2px solid #6b4b24;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 0 #593f1f, 0 10px 20px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.medieval-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #593f1f;
}

.medieval-btn.muted {
  background: linear-gradient(180deg, #4a4a4a, #2f2f2f);
  border-color: #666;
  color: #e6e6e6;
}

@media (max-width: 768px) {
  .intro-content {
    padding: 1rem;
  }
  .intro-actions {
    flex-direction: column;
  }
}

.character-creation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.character-creation input,
.character-creation select {
  padding: 1rem;
  border: 2px solid #4a5568;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.character-creation input:focus,
.character-creation select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.start-btn {
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.start-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dashboard {
  min-height: 100vh;
  animation: slideInFromBottom 0.8s ease-out;
}

.game-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stats-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: bold;
}

.stat-icon {
  width: 24px;
  height: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #cccccc;
  margin-bottom: 0.25rem;
}

.stat-box span:last-child {
  font-weight: bold;
  color: #4ade80;
}

.xp-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.level-display {
  font-weight: bold;
  color: #ffd700;
  font-size: 1.1rem;
}

.xp-bar-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 300px;
}

.xp-bar {
  flex: 1;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.xp-progress {
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: 10px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.xp-text {
  font-size: 0.9rem;
  white-space: nowrap;
}

.skill-points {
  background: rgba(139, 69, 19, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #8b4513;
  font-weight: bold;
}

.reset-btn {
  padding: 0.5rem 1rem;
  background: rgba(220, 38, 38, 0.2);
  color: #ffffff;
  border: 1px solid #dc2626;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-btn:hover {
  background: rgba(220, 38, 38, 0.4);
}

.game-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.quest-board,
.skill-tree {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quest-board h2,
.skill-tree h2 {
  margin-bottom: 1rem;
  color: #ffd700;
  text-align: center;
  font-size: 1.5rem;
}

.quest-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.quest-tab {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quest-tab:hover {
  background: rgba(255, 215, 0, 0.1);
}

.quest-tab.active {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
  color: #ffd700;
}

.quest-chain-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 1rem;
}

.chain-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.chain-name {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: bold;
}

.chain-progress {
  font-size: 0.9rem;
  color: #4ade80;
}

.chain-description {
  color: #cccccc;
  margin-bottom: 1rem;
}

.chain-rewards {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-size: 0.9rem;
}

.minigame-content {
  max-width: 800px;
}

.minigame-timer {
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  font-size: 1.1rem;
  color: #ffd700;
}

.minigame-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.minigame-score {
  font-size: 1.2rem;
  color: #4ade80;
}

.game-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

#minigameArea {
  min-height: 300px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.game-instructions {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.game-instructions h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.game-instructions ul {
  list-style-type: none;
  padding-left: 0;
}

.game-instructions li {
  margin: 0.5rem 0;
  color: #cccccc;
}

.canvas-board {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.canvas-components,
.canvas-slots {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.canvas-item {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  padding: 1rem;
  border-radius: 6px;
  cursor: move;
  text-align: center;
  transition: all 0.3s ease;
}

.canvas-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.canvas-item.dragging {
  opacity: 0.5;
}

.canvas-slot {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 6px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.canvas-slot.drag-over {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

.canvas-slot.error {
  border-color: #dc2626;
  animation: shake 0.5s;
}

.slot-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-align: center;
}

.canvas-item.correct {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
  position: relative;
}

.check-mark {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  color: #22c55e;
  font-weight: bold;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.quest-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quest-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.quest-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.quest-item.completed {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
}

.quest-item.completed::after {
  content: "✓";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #22c55e;
  font-size: 1.2rem;
  font-weight: bold;
}

.quest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.quest-title {
  font-weight: bold;
  color: #ffffff;
}

.quest-category {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.quest-category.finance {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.quest-category.marketing {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.quest-category.strategy {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.quest-category.operations {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.quest-description {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.quest-reward {
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: bold;
}

.skill-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.skill-branch h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.skill-nodes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skill-node {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.skill-node:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.skill-node.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.skill-node.unlocked {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  color: #ffd700;
}

.skill-node.unlocked::after {
  content: "★";
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  color: #ffd700;
  font-size: 1rem;
}

.skill-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.skill-effect {
  font-size: 0.8rem;
  color: #cccccc;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #2a2a5a, #1a1a2e);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideInScale 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
  color: #ffd700;
  font-size: 1.3rem;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.task-input,
.task-select,
.task-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #4a5568;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.task-input:focus,
.task-select:focus,
.task-textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.task-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.task-option {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.task-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.task-option.selected {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

.drag-drop-area {
  min-height: 200px;
  border: 2px dashed #4a5568;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.draggable-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  cursor: move;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.draggable-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ffd700;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.submit-btn,
.complete-btn,
.continue-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn {
  background: #3b82f6;
  color: #ffffff;
}

.submit-btn:hover:not(:disabled) {
  background: #2563eb;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.complete-btn {
  background: #22c55e;
  color: #ffffff;
}

.complete-btn:hover {
  background: #16a34a;
}

.continue-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.level-up-content {
  text-align: center;
  padding: 2rem;
}

.level-up-animation h2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  animation: pulse 1s infinite;
}

.level-display-big {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #ffffff;
  font-weight: bold;
  z-index: 1001;
  animation: slideInRight 0.3s ease;
}

.notification.success {
  background: #22c55e;
}

.notification.error {
  background: #dc2626;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .game-title {
    font-size: 2.5rem;
  }

  .game-header {
    flex-direction: column;
    text-align: center;
  }

  .xp-section {
    flex-direction: column;
    gap: 0.5rem;
  }

  .xp-bar-container {
    max-width: 100%;
  }

  .game-content {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1.5rem;
  }

  .skill-branches {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .modal-content {
    width: 95%;
    margin: 1rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .submit-btn,
  .complete-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .game-title {
    font-size: 2rem;
  }

  .landing-content {
    width: 95%;
  }

  .quest-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .skill-node {
    padding: 0.5rem;
  }
}
