.gameplaycontainer {
    height:100%;
    padding-top:78px;
    min-width:1270px;
}

.col-3.infocol {
  padding-left: 80px;
}

.maincol {
  background-color: transparent;
}

.imessage.sample {
  background-color: transparent;
}

.mobile-game-notices {
    display: none;
}

@media screen and (max-width: 991.98px) {
    .gameplaycontainer {
        height:100%;
        padding-top:78px;
        min-width:0px;
    }

    .col-1.blankshowbgcol {
        display: none;
    }

    .col-7.maincol {
        max-width: 100%;
        margin-bottom: 300px;
        padding-top: 5px;
    }

    .col-3.infocol {
        max-width: 100%;
        position: absolute;
        top: 120px;
        padding-left: 20px;
        display: none;
    }

    .row.actions .col-2 {
        display: none;
    }
    .row.actions .col7.next_instructions {
        max-width: 60%;
    }
    .row.actions .question_next_button.col-3 {
        max-width: 40%;
        flex: none;
    }
    .col-3.infocol .scores-section .game-notices {
        display: none;
    }

    .mobile-game-notices {
        display: block;
    }

    .mobile-game-notices .game-notices {
        margin:0;
    }
    
}

/* Old message styles - kept for backwards compatibility */
.imessage .from-them {
  background-color: #e5e5ea;
  margin-left: 50px;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 10px;
  display: inline-block;
  max-width: 90%;
}

/* New word samples container design */
.context-header {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
}

.word-highlight {
  color: #5e72e4;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(94, 114, 228, 0.3);
  text-underline-offset: 3px;
}

.word-samples-container {
  display: flex;
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  margin: 20px 0 30px 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 140px;
  position: relative;
}

.word-samples-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #5e72e4 0%, 
    #667eea 25%, 
    #764ba2 50%, 
    #f093fb 75%, 
    #5e72e4 100%
  );
  background-size: 200% 100%;
  animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sample-section {
  flex: 1;
  padding: 25px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.sample-section:not(.last)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.1) 80%,
    transparent
  );
}

.sample-section:hover {
  background-color: rgba(94, 114, 228, 0.03);
}

.sample-content {
  font-size: 15px;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 15px;
  flex-grow: 1;
}

.sample-content strong {
  color: #5e72e4;
  font-weight: 600;
  background: linear-gradient(120deg, rgba(94, 114, 228, 0.1) 0%, rgba(94, 114, 228, 0.05) 100%);
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.sample-content strong:hover {
  background: linear-gradient(120deg, rgba(94, 114, 228, 0.15) 0%, rgba(94, 114, 228, 0.08) 100%);
}

.sample-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.bot-avatar:hover {
  transform: scale(1.1);
}

/* Meaning selection area improvements */
.meaning_prompt {
  font-size: 18px;
  color: #2c3e50;
  margin: 30px 0 20px 0;
  font-weight: 500;
  text-align: center;
}

.answer.selectable {
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.answer.selectable::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(94, 114, 228, 0.05), transparent);
  transition: left 0.5s ease;
}

.answer.selectable:hover {
  border-color: rgba(94, 114, 228, 0.3);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(94, 114, 228, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.answer.selectable:hover::before {
  left: 100%;
}

.answer.selectable.selected {
  background: linear-gradient(145deg, #5e72e4, #667eea);
  border-color: #5e72e4;
  color: white;
  transform: scale(1.02);
  box-shadow: 
    0 8px 24px rgba(94, 114, 228, 0.3),
    0 3px 12px rgba(0, 0, 0, 0.1);
}

.answer.selectable.selected .part_of_speech {
  color: rgba(255, 255, 255, 0.9);
}

.answer.selectable.selected .meaning_answer_choice {
  color: white;
}

.part_of_speech {
  font-size: 12px;
  color: #7c8798;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.meaning_answer_choice {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.5;
}

/* Action container and button styles */
.action-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 20px;
}

.next_instructions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7c8798;
  font-size: 14px;
  transition: all 0.3s ease;
}

.instruction-icon {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.question_next_button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.question_next_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.question_next_button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.question_next_button:hover:not(:disabled)::before {
  left: 100%;
}

.question_next_button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.question_next_button:disabled {
  background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 100%);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

/* Progress counter styling */
.progress-indicator {
  background: rgba(94, 114, 228, 0.05);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(94, 114, 228, 0.1);
}

.progress-number {
  font-weight: 600;
  color: #5e72e4;
}

.progress-divider {
  color: #ccc;
  margin: 0 10px;
}

.word-label {
  color: #7c8798;
}

.chosen {
  color: #5e72e4;
  font-weight: 600;
}

/* Pulse animation for button */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
}

.pulse-animation {
  animation: pulse 1s ease-in-out;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
  .word-samples-container {
    flex-direction: column;
    min-height: auto;
  }
  
  .sample-section:not(.last)::after {
    width: 60%;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 20%;
    right: auto;
    background: linear-gradient(
      to right,
      transparent,
      rgba(0, 0, 0, 0.1) 20%,
      rgba(0, 0, 0, 0.1) 80%,
      transparent
    );
  }
  
  .sample-section {
    padding: 20px 15px;
  }
  
  .action-container {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  
  .question_next_button {
    width: 100%;
  }
}
/* Playful Wordlize UI - Inspired by homepageUItemplate */

:root {
  --primary-color: #5e72e4;
  --secondary-color: #8898aa;
  --accent-color: #f5a623;
  --success-color: #2dce89;
  --info-color: #11cdef;
  --warning-color: #fb6340;
  --danger-color: #f5365c;
  --light-color: #f8f9fe;
  --dark-color: #172b4d;
  --purple-color: #8366f4;
  --pink-color: #f3a4b5;
  --teal-color: #1de9b6;
  --gradient-primary: linear-gradient(87deg, #5e72e4 0, #825ee4 100%);
  --gradient-secondary: linear-gradient(87deg, #f5a623 0, #f76c1c 100%);
  --gradient-accent: linear-gradient(87deg, #11cdef 0, #1171ef 100%);
  --font-family: 'Poppins', sans-serif;
  --border-radius: 0.5rem;
  --box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-family);
  background-color: #fcfdff;
  margin: 0;
  padding: 0;
  color: var(--dark-color);
  line-height: 1.5;
}

/* Header & Navigation */
.navbar {
  background-color: white;
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 6rem auto 2rem;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 50vh;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 55%;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  z-index: 1;
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.card-content {
  color: var(--secondary-color);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.button-primary {
  background: var(--gradient-primary);
  color: white;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(94, 114, 228, 0.3);
}

.button-secondary {
  background: var(--gradient-secondary);
  color: white;
}

.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(245, 166, 35, 0.3);
}

.button-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

/* Wordset Card */
.wordset-card {
  position: relative;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.wordset-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.15);
}

.wordset-card.active {
  border-top-color: var(--success-color);
}

.wordset-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.wordset-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Game Modes */
.game-modes {
  margin: 3rem 0;
}

.game-mode-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.game-mode-tab {
  padding: 0.75rem 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
}

.game-mode-tab:hover {
  transform: translateY(-2px);
}

.game-mode-tab.active {
  background: var(--gradient-primary);
  color: white;
}

/* Quest Card */
.quest-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.quest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.15);
}

.quest-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.quest-progress {
  width: 100%;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
  margin: 1rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 5px;
  transition: width 0.3s ease;
}

/* Score Card */
.score-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}

.score-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.score-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.score-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.score-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.score-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Wordset Carousel */
.card-carousel {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 2rem 0;
}

.my-card {
  min-width: 300px;
  transform: scale(0.9);
  transition: all 0.3s ease;
  opacity: 0.8;
  margin: 0 1rem;
}

.my-card.active {
  transform: scale(1);
  opacity: 1;
}

.my-card.prev, .my-card.next {
  cursor: pointer;
}

/* Playful Elements */
.blob-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

.blob-1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: var(--primary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-move 15s infinite alternate;
}

.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--accent-color);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-move 12s infinite alternate-reverse;
}

@keyframes blob-move {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Confetti Animation */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  opacity: 0;
  animation: confetti-fall 5s ease-in-out infinite;
  z-index: -1;
}

.confetti:nth-child(odd) {
  background-color: var(--primary-color);
}

.confetti:nth-child(3n) {
  background-color: var(--success-color);
}

.confetti:nth-child(4n) {
  background-color: var(--info-color);
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .score-stats {
    grid-template-columns: 1fr;
  }
  
  .my-card {
    min-width: 250px;
  }
} 
@charset "UTF-8";
/* =============================================================================
   QUEST SYSTEM STYLES
   ============================================================================= */
/* Animations */
@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes celebrate {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-5deg);
  }
  75% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* =============================================================================
   MAIN QUEST CONTAINER
   ============================================================================= */
/* Force parent containers to be full-width on quest pages */
/* line 33, app/assets/stylesheets/quests.scss */
body.body--quest {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-image: none !important;
  background-color: #f8fafc !important;
}

/* line 41, app/assets/stylesheets/quests.scss */
body.body--quest .hero-noise-wrapper {
  display: none;
}

/* line 45, app/assets/stylesheets/quests.scss */
body.body--quest .hero-wrapper,
body.body--quest .hero-content,
body.body--quest .section,
body.body--quest .hero-bg-wrapper {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

/* line 57, app/assets/stylesheets/quests.scss */
.quest-container {
  max-width: 1800px;
  width: 98%;
  margin: 10px auto;
  padding: 8px 15px;
  background: linear-gradient(135deg, #fdfdff 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: fade-in-down 0.8s ease-out;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 140px);
  box-sizing: border-box;
}

/* line 72, app/assets/stylesheets/quests.scss */
.quest-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* =============================================================================
   HORIZONTAL LAYOUT STRUCTURE
   ============================================================================= */
/* line 86, app/assets/stylesheets/quests.scss */
.quest-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 15px;
  align-items: start;
  width: 100%;
  height: 100%;
}

/* line 95, app/assets/stylesheets/quests.scss */
.quest-sidebar {
  position: static;
  min-width: 280px;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 104, app/assets/stylesheets/quests.scss */
.quest-main-content {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* =============================================================================
   STREAK BAR
   ============================================================================= */
/* line 116, app/assets/stylesheets/quests.scss */
.quest-streak-bar {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 6px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.15);
}

/* line 125, app/assets/stylesheets/quests.scss */
.streak-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-weight: 600;
}

/* line 134, app/assets/stylesheets/quests.scss */
.streak-icon {
  font-size: 1em;
  animation: pulse 2s infinite;
}

/* line 139, app/assets/stylesheets/quests.scss */
.streak-text {
  font-size: 0.85rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 144, app/assets/stylesheets/quests.scss */
.best-streak {
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 400;
}

/* =============================================================================
   PROGRESS SYSTEM
   ============================================================================= */
/* line 154, app/assets/stylesheets/quests.scss */
.quest-progress-container {
  margin-bottom: 6px;
}

/* line 158, app/assets/stylesheets/quests.scss */
.progress-bar-wrapper {
  background: white;
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

/* line 166, app/assets/stylesheets/quests.scss */
.progress-bar {
  position: relative;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

/* line 175, app/assets/stylesheets/quests.scss */
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #48bb78, #38a169);
  border-radius: 6px;
  transition: width 0.8s ease-out;
  position: relative;
}

/* line 183, app/assets/stylesheets/quests.scss */
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* line 199, app/assets/stylesheets/quests.scss */
.progress-checkpoints {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
}

/* line 210, app/assets/stylesheets/quests.scss */
.checkpoint {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e0;
  border: 1px solid white;
  transition: all 0.3s ease;
}

/* line 219, app/assets/stylesheets/quests.scss */
.checkpoint.completed {
  background: #48bb78;
  transform: scale(1.2);
}

/* line 224, app/assets/stylesheets/quests.scss */
.checkpoint.current {
  background: #3182ce;
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.3);
}

/* line 230, app/assets/stylesheets/quests.scss */
.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #4a5568;
}

/* line 238, app/assets/stylesheets/quests.scss */
.current-progress {
  font-size: 0.85rem;
}

/* line 242, app/assets/stylesheets/quests.scss */
.percentage {
  font-size: 0.85rem;
  color: #48bb78;
}

/* =============================================================================
   PHASE INDICATORS
   ============================================================================= */
/* line 251, app/assets/stylesheets/quests.scss */
.quest-phase-header {
  margin-bottom: 25px;
}

/* line 255, app/assets/stylesheets/quests.scss */
.phase-indicator {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 265, app/assets/stylesheets/quests.scss */
.phase-icon {
  font-size: 2rem;
  margin-right: 15px;
}

/* line 270, app/assets/stylesheets/quests.scss */
.phase-info {
  flex-grow: 1;
}

/* line 274, app/assets/stylesheets/quests.scss */
.phase-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 5px 0;
}

/* line 281, app/assets/stylesheets/quests.scss */
.phase-description {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
  opacity: 0.9;
}

/* =============================================================================
   QUESTION WRAPPER
   ============================================================================= */
/* line 292, app/assets/stylesheets/quests.scss */
.question-wrapper {
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}

/* line 307, app/assets/stylesheets/quests.scss */
.question-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 316, app/assets/stylesheets/quests.scss */
.question-type-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* line 325, app/assets/stylesheets/quests.scss */
.question-type-badge.contextual-definition {
  background: #e6fffa;
  color: #234e52;
  border: 1px solid #b2f5ea;
}

/* line 331, app/assets/stylesheets/quests.scss */
.question-type-badge.sat-fill-in-the-blank {
  background: #fef5e7;
  color: #744210;
  border: 1px solid #f6e05e;
}

/* line 337, app/assets/stylesheets/quests.scss */
.difficulty-badge {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 345, app/assets/stylesheets/quests.scss */
.difficulty-badge.new {
  background: #e6fffa;
  color: #234e52;
}

/* line 350, app/assets/stylesheets/quests.scss */
.difficulty-badge.learning {
  background: #ebf4ff;
  color: #2a4365;
}

/* line 355, app/assets/stylesheets/quests.scss */
.difficulty-badge.mastering {
  background: #faf5ff;
  color: #553c9a;
}

/* =============================================================================
   CONTEXTUAL DEFINITION QUESTIONS
   ============================================================================= */
/* line 364, app/assets/stylesheets/quests.scss */
.question-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 371, app/assets/stylesheets/quests.scss */
.contextual-question .word-focus {
  text-align: center;
  margin-bottom: 8px;
}

/* line 376, app/assets/stylesheets/quests.scss */
.contextual-question .question-text {
  font-size: 1rem;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 5px;
}

/* line 383, app/assets/stylesheets/quests.scss */
.contextual-question .target-word {
  margin-bottom: 8px;
}

/* line 387, app/assets/stylesheets/quests.scss */
.contextual-question .word-highlight {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0 6px;
}

/* line 399, app/assets/stylesheets/quests.scss */
.context-section {
  margin-bottom: 8px;
}

/* line 403, app/assets/stylesheets/quests.scss */
.context-label, .answer-label, .section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 6px;
}

/* line 413, app/assets/stylesheets/quests.scss */
.context-icon, .section-icon {
  font-size: 1.2em;
}

/* line 417, app/assets/stylesheets/quests.scss */
.context-passages {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
  width: 100%;
}

/* line 425, app/assets/stylesheets/quests.scss */
.context-passage {
  display: flex;
  gap: 8px;
  background: #f7fafc;
  border-radius: 6px;
  padding: 6px;
  border-left: 2px solid #cbd5e0;
  transition: all 0.3s ease;
}

/* line 435, app/assets/stylesheets/quests.scss */
.context-passage:hover {
  border-left-color: #4299e1;
  background: #ebf8ff;
}

/* line 440, app/assets/stylesheets/quests.scss */
.passage-number {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #4299e1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.7rem;
}

/* line 454, app/assets/stylesheets/quests.scss */
.passage-text {
  flex-grow: 1;
  line-height: 1.3;
  color: #2d3748;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 0.85rem;
}

/* line 464, app/assets/stylesheets/quests.scss */
.target-word-in-context {
  background: linear-gradient(135deg, #ffd89b, #19547b);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* =============================================================================
   SAT QUESTIONS
   ============================================================================= */
/* line 476, app/assets/stylesheets/quests.scss */
.sat-question .sat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 485, app/assets/stylesheets/quests.scss */
.sat-badge, .difficulty-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
}

/* line 494, app/assets/stylesheets/quests.scss */
.sat-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

/* line 499, app/assets/stylesheets/quests.scss */
.difficulty-indicator {
  background: #fef5e7;
  color: #744210;
  border: 1px solid #f6e05e;
}

/* line 505, app/assets/stylesheets/quests.scss */
.sat-passage {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px;
  margin-bottom: 6px;
  width: 100%;
  box-sizing: border-box;
}

/* line 515, app/assets/stylesheets/quests.scss */
.passage-content {
  line-height: 1.4;
  color: #2d3748;
  font-size: 0.85rem;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 524, app/assets/stylesheets/quests.scss */
.blank-space {
  display: inline-block;
  border-bottom: 3px solid #4299e1;
  min-width: 100px;
  text-align: center;
  font-weight: bold;
  color: #4299e1;
  margin: 0 3px;
  padding: 0 5px;
}

/* line 535, app/assets/stylesheets/quests.scss */
.question-prompt {
  background: #ebf4ff;
  border: 1px solid #90cdf4;
  border-radius: 6px;
  padding: 6px;
  color: #1a365d;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

/* =============================================================================
   ANSWER OPTIONS
   ============================================================================= */
/* line 551, app/assets/stylesheets/quests.scss */
.answer-section {
  margin-bottom: 8px;
  flex: 1;
}

/* line 556, app/assets/stylesheets/quests.scss */
.answer-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: 100%;
}

/* line 563, app/assets/stylesheets/quests.scss */
.answer-option {
  display: block;
  position: relative;
}

/* line 568, app/assets/stylesheets/quests.scss */
.answer-input {
  display: none;
}

/* line 572, app/assets/stylesheets/quests.scss */
.answer-label {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  position: relative;
  overflow: hidden;
}

/* line 585, app/assets/stylesheets/quests.scss */
.answer-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.1), transparent);
  transition: left 0.5s ease;
}

/* line 596, app/assets/stylesheets/quests.scss */
.answer-label:hover {
  border-color: #4299e1;
  background: #ebf8ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
}

/* line 603, app/assets/stylesheets/quests.scss */
.answer-label:hover::before {
  left: 100%;
}

/* line 607, app/assets/stylesheets/quests.scss */
.answer-input:checked + .answer-label {
  border-color: #3182ce;
  background: #ebf8ff;
  color: #1a365d;
  box-shadow: 0 4px 16px rgba(49, 130, 206, 0.25);
  transform: translateY(-1px);
}

/* line 615, app/assets/stylesheets/quests.scss */
.option-letter {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  margin-right: 8px;
  transition: all 0.3s ease;
}

/* line 631, app/assets/stylesheets/quests.scss */
.answer-input:checked + .answer-label .option-letter {
  background: #3182ce;
  color: white;
  border-color: #3182ce;
}

/* line 637, app/assets/stylesheets/quests.scss */
.sat-letter {
  background: #fef5e7;
  border-color: #f6e05e;
  color: #744210;
}

/* line 643, app/assets/stylesheets/quests.scss */
.answer-input:checked + .sat-label .sat-letter {
  background: #ed8936;
  color: white;
  border-color: #ed8936;
}

/* line 649, app/assets/stylesheets/quests.scss */
.option-text {
  flex-grow: 1;
  line-height: 1.3;
  font-weight: 500;
  font-size: 0.85rem;
}

/* line 656, app/assets/stylesheets/quests.scss */
.option-indicator {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

/* line 665, app/assets/stylesheets/quests.scss */
.answer-input:checked + .answer-label .option-indicator {
  border-color: #3182ce;
  background: #3182ce;
}

/* line 670, app/assets/stylesheets/quests.scss */
.answer-input:checked + .answer-label .option-indicator::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
}

/* =============================================================================
   SUBMIT BUTTONS
   ============================================================================= */
/* line 685, app/assets/stylesheets/quests.scss */
.submit-section {
  margin-top: 8px;
}

/* line 689, app/assets/stylesheets/quests.scss */
.submit-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: linear-gradient(135deg, #a0aec0, #718096);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: not-allowed;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

/* line 707, app/assets/stylesheets/quests.scss */
.submit-btn:disabled {
  opacity: 0.6;
}

/* line 711, app/assets/stylesheets/quests.scss */
.submit-btn.enabled {
  background: linear-gradient(135deg, #48bb78, #38a169);
  cursor: pointer;
  opacity: 1;
}

/* line 717, app/assets/stylesheets/quests.scss */
.submit-btn.enabled:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(72, 187, 120, 0.4);
}

/* line 722, app/assets/stylesheets/quests.scss */
.submit-btn.enabled:active {
  transform: translateY(-1px);
}

/* line 726, app/assets/stylesheets/quests.scss */
.sat-submit.enabled {
  background: linear-gradient(135deg, #ed8936, #dd6b20);
}

/* line 730, app/assets/stylesheets/quests.scss */
.sat-submit.enabled:hover {
  box-shadow: 0 10px 30px rgba(237, 137, 54, 0.4);
}

/* =============================================================================
   FLASH MESSAGES
   ============================================================================= */
/* line 738, app/assets/stylesheets/quests.scss */
.flash-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  animation: fade-in-down 0.5s ease-out;
}

/* line 751, app/assets/stylesheets/quests.scss */
.flash-icon {
  font-size: 1.2em;
}

/* line 755, app/assets/stylesheets/quests.scss */
.flash-notice {
  background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
  color: #1a202c;
  border: 1px solid #68d391;
  box-shadow: 0 4px 12px rgba(104, 211, 145, 0.2);
}

/* line 762, app/assets/stylesheets/quests.scss */
.flash-alert {
  background: linear-gradient(135deg, #fed7d7, #feb2b2);
  color: #1a202c;
  border: 1px solid #fc8181;
  box-shadow: 0 4px 12px rgba(252, 129, 129, 0.2);
}

/* =============================================================================
   COMPLETION SCREEN
   ============================================================================= */
/* line 773, app/assets/stylesheets/quests.scss */
.quest-completed-container {
  text-align: center;
}

/* line 777, app/assets/stylesheets/quests.scss */
.completion-celebration {
  padding: 40px 20px;
}

/* line 781, app/assets/stylesheets/quests.scss */
.completion-icon {
  font-size: 4rem;
  animation: celebrate 1s ease-in-out;
  margin-bottom: 20px;
}

/* line 787, app/assets/stylesheets/quests.scss */
.quest-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

/* line 797, app/assets/stylesheets/quests.scss */
.completion-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* line 805, app/assets/stylesheets/quests.scss */
.stat-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  min-width: 100px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* line 814, app/assets/stylesheets/quests.scss */
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  line-height: 1;
}

/* line 821, app/assets/stylesheets/quests.scss */
.stat-label {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 830, app/assets/stylesheets/quests.scss */
.completion-message {
  margin: 30px 0;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* line 838, app/assets/stylesheets/quests.scss */
.completion-message .excellence {
  background: #f0fff4;
  color: #22543d;
  border: 1px solid #9ae6b4;
}

/* line 844, app/assets/stylesheets/quests.scss */
.completion-message .good {
  background: #ebf8ff;
  color: #1a365d;
  border: 1px solid #90cdf4;
}

/* line 850, app/assets/stylesheets/quests.scss */
.completion-message .encourage {
  background: #fef5e7;
  color: #744210;
  border: 1px solid #f6e05e;
}

/* line 856, app/assets/stylesheets/quests.scss */
.next-quest-info {
  margin: 25px 0;
  color: #4a5568;
}

/* line 861, app/assets/stylesheets/quests.scss */
.next-quest-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #718096;
}

/* line 871, app/assets/stylesheets/quests.scss */
.completion-btn {
  margin-top: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
}

/* line 876, app/assets/stylesheets/quests.scss */
.completion-btn:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

/* =============================================================================
   SIDEBAR STATS (Horizontal Layout)
   ============================================================================= */
/* line 884, app/assets/stylesheets/quests.scss */
.quest-stats-card {
  background: white;
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  margin-bottom: 5px;
}

/* line 893, app/assets/stylesheets/quests.scss */
.quest-stats-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 903, app/assets/stylesheets/quests.scss */
.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

/* line 910, app/assets/stylesheets/quests.scss */
.quick-stat {
  text-align: center;
  padding: 4px 3px;
  background: #f7fafc;
  border-radius: 4px;
}

/* line 917, app/assets/stylesheets/quests.scss */
.quick-stat-number {
  font-size: 1rem;
  font-weight: 800;
  color: #2d3748;
  line-height: 1;
}

/* line 924, app/assets/stylesheets/quests.scss */
.quick-stat-label {
  font-size: 0.6rem;
  color: #718096;
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
/* Tablet - maintain horizontal layout but adjust proportions */
@media (max-width: 1024px) and (min-width: 769px) {
  /* line 939, app/assets/stylesheets/quests.scss */
  .quest-container {
    width: 98%;
    padding: 6px 12px;
    margin: 8px auto;
    height: calc(100vh - 140px);
  }
  /* line 946, app/assets/stylesheets/quests.scss */
  .quest-layout {
    grid-template-columns: 240px 1fr;
    gap: 12px;
    height: 100%;
  }
  /* line 952, app/assets/stylesheets/quests.scss */
  .quest-sidebar {
    min-width: 240px;
  }
  /* line 956, app/assets/stylesheets/quests.scss */
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}

@media (max-width: 768px) {
  /* line 963, app/assets/stylesheets/quests.scss */
  .quest-container {
    padding: 6px;
    margin: 5px;
    border-radius: 8px;
    height: calc(100vh - 130px);
  }
  /* line 970, app/assets/stylesheets/quests.scss */
  .quest-layout {
    grid-template-columns: 1fr;
    gap: 6px;
    height: 100%;
  }
  /* line 976, app/assets/stylesheets/quests.scss */
  .quest-sidebar {
    position: static;
    order: -1;
  }
  /* line 981, app/assets/stylesheets/quests.scss */
  .contextual-question .word-highlight {
    font-size: 2rem;
  }
  /* line 985, app/assets/stylesheets/quests.scss */
  .context-passage {
    flex-direction: column;
    gap: 10px;
  }
  /* line 990, app/assets/stylesheets/quests.scss */
  .passage-number {
    align-self: flex-start;
  }
  /* line 994, app/assets/stylesheets/quests.scss */
  .question-meta {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 999, app/assets/stylesheets/quests.scss */
  .completion-stats {
    flex-direction: column;
    align-items: center;
  }
  /* line 1004, app/assets/stylesheets/quests.scss */
  .quest-title {
    font-size: 2.2rem;
  }
  /* line 1008, app/assets/stylesheets/quests.scss */
  .quick-stats {
    grid-template-columns: 1fr 1fr;
  }
  /* line 1012, app/assets/stylesheets/quests.scss */
  .question-wrapper {
    padding: 20px;
  }
  /* line 1016, app/assets/stylesheets/quests.scss */
  .answer-options {
    grid-template-columns: 1fr !important;
  }
}

/* Large screens - optimize horizontal space */
@media (min-width: 1400px) {
  /* line 1023, app/assets/stylesheets/quests.scss */
  .quest-container {
    max-width: 1600px;
    height: calc(100vh - 140px);
  }
  /* line 1028, app/assets/stylesheets/quests.scss */
  .quest-layout {
    grid-template-columns: 300px 1fr;
    gap: 20px;
    height: 100%;
  }
}

/* Extra large screens */
@media (min-width: 1920px) {
  /* line 1037, app/assets/stylesheets/quests.scss */
  .quest-container {
    max-width: 1800px;
    width: 95%;
    height: calc(100vh - 140px);
  }
  /* line 1043, app/assets/stylesheets/quests.scss */
  .quest-layout {
    grid-template-columns: 320px 1fr;
    gap: 25px;
    height: 100%;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
