/* ==============================================
   INDEX PAGE - CONSOLIDATED STYLES
   Combined: hero-unified, index-page, modern-enhancements,
   mobile-optimized, index-page-improvements, learning-tips-redesign
   ============================================== */

/* Import hero styles and extend with index-specific */

/* Learning Paths Section */
.learning-paths-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.learning-paths-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.learning-paths-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.learning-paths-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Journey Cards Grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.journey-card {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #46bbe5, #10b981);
  transition: height 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.journey-card:hover::before {
  height: 6px;
}

.journey-card--business {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3b7ab5 100%);
  color: white;
}

.journey-card--grammar {
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #52b788 100%);
  color: white;
}

.journey-card--test {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #ea580c 100%);
  color: white;
}

.journey-card--coding {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #8b5cf6 100%);
  color: white;
}

.journey-card__icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.journey-card:hover .journey-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.journey-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.journey-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: inherit;
}

.journey-card__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  flex: 1;
  color: inherit;
}

.journey-card__cta {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-card:hover .journey-card__cta {
  background: rgba(255, 255, 255, 0.3);
  gap: 0.75rem;
}

/* Featured Resources Section */
.featured-resources-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #f8fafc 100%);
  position: relative;
}

.featured-resources-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.resources-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Base Resource Box Styles */
.resource-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: resourceFloat 4s ease-in-out infinite;
}

/* Floating shimmer overlay */
.resource-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

/* Glowing border effect */
.resource-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    transparent,
    rgba(255, 255, 255, 0.2)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Floating Animation */
@keyframes resourceFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  25% {
    transform: translateY(-6px) scale(1.01);
  }
  50% {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  }
  75% {
    transform: translateY(-8px) scale(1.01);
  }
}

/* Staggered Animation Delays - 12 items */
.resources-grid-3x3 > *:nth-child(1) {
  animation-delay: 0s;
}
.resources-grid-3x3 > *:nth-child(2) {
  animation-delay: 0.2s;
}
.resources-grid-3x3 > *:nth-child(3) {
  animation-delay: 0.4s;
}
.resources-grid-3x3 > *:nth-child(4) {
  animation-delay: 0.2s;
}
.resources-grid-3x3 > *:nth-child(5) {
  animation-delay: 0.4s;
}
.resources-grid-3x3 > *:nth-child(6) {
  animation-delay: 0.6s;
}
.resources-grid-3x3 > *:nth-child(7) {
  animation-delay: 0.4s;
}
.resources-grid-3x3 > *:nth-child(8) {
  animation-delay: 0.6s;
}
.resources-grid-3x3 > *:nth-child(9) {
  animation-delay: 0.8s;
}
.resources-grid-3x3 > *:nth-child(10) {
  animation-delay: 0.6s;
}
.resources-grid-3x3 > *:nth-child(11) {
  animation-delay: 0.8s;
}
.resources-grid-3x3 > *:nth-child(12) {
  animation-delay: 1s;
}

/* Enhanced Hover Effects */
.resource-box:hover {
  animation: resourceHoverPop 0.5s ease forwards;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(255, 255, 255, 0.1) inset;
  z-index: 10;
}

.resource-box:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.resource-box:hover::after {
  opacity: 1;
}

@keyframes resourceHoverPop {
  0% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-15px) scale(1.08);
  }
  60% {
    transform: translateY(-12px) scale(1.06) rotate(1deg);
  }
  80% {
    transform: translateY(-14px) scale(1.07) rotate(-0.5deg);
  }
  100% {
    transform: translateY(-12px) scale(1.06);
  }
}

/* Resource Box Gradient Colors */
.resource-box--purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.resource-box--teal {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}
.resource-box--orange {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}
.resource-box--pink {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}
.resource-box--green {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
  color: white;
}
.resource-box--navy {
  background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
  color: white;
}
.resource-box--red {
  background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
  color: white;
}
.resource-box--yellow {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  color: white;
}
.resource-box--indigo {
  background: linear-gradient(135deg, #5c258d 0%, #4389a2 100%);
  color: white;
}
.resource-box--cyan {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: white;
}

/* Resource Box Icon */
.resource-box__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
}

.resource-box:hover .resource-box__icon {
  animation: iconBounce 0.6s ease;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes iconBounce {
  0% {
    transform: scale(1) rotate(0deg);
  }
  20% {
    transform: scale(1.2) rotate(-10deg);
  }
  40% {
    transform: scale(0.9) rotate(8deg);
  }
  60% {
    transform: scale(1.15) rotate(-5deg);
  }
  80% {
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    transform: scale(1.1) rotate(0deg);
  }
}

.resource-box__icon i {
  transition: all 0.3s ease;
}

.resource-box:hover .resource-box__icon i {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Resource Box Title & Description */
.resource-box__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.resource-box:hover .resource-box__title {
  transform: scale(1.05);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.resource-box__desc {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: inherit;
  transition: all 0.3s ease 0.1s;
  position: relative;
  z-index: 2;
}

.resource-box:hover .resource-box__desc {
  opacity: 1;
  transform: translateY(-2px);
}

/* Resource Box CTA */
.resource-box__cta {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.95;
  transition: all 0.3s ease;
  color: inherit;
  position: relative;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.resource-box__cta i {
  transition: transform 0.3s ease;
}

.resource-box:hover .resource-box__cta {
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.resource-box:hover .resource-box__cta i {
  animation: arrowBounce 0.8s ease infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Teachers Section */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Credentials Section */
.credentials-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.credential-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.credential-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.credential-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.credential-stat {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.credential-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Activity Section */
.activity-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f3ff 0%, #f0efff 100%);
}

.activity-container {
  max-width: 900px;
  margin: 0 auto;
}

.activity-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.challenge-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.activity-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.game-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.game-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--bg-secondary);
}

.game-stats-bar .stat-icon {
  font-size: 1.5rem;
}

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

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.vocabulary-game {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}

.quiz-mascot {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: mascotBob 3s ease-in-out infinite;
  position: relative;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes mascotBob {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.quiz-mascot.happy {
  animation: mascotHappy 0.6s ease;
}

.quiz-mascot.sad {
  animation: mascotSad 0.6s ease;
}

@keyframes mascotHappy {
  0% {
    transform: scale(1) rotate(0);
  }
  25% {
    transform: scale(1.3) rotate(-15deg);
  }
  50% {
    transform: scale(1.2) rotate(15deg);
  }
  75% {
    transform: scale(1.1) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes mascotSad {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(0.9) rotate(-10deg) translateY(10px);
  }
}

.word-card {
  font-size: 2rem;
  font-weight: 700;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  color: #1e293b;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c7d2fe;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.word-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
  border-color: #818cf8;
}

.vocabulary-game.correct-flash {
  animation: correctFlash 0.6s ease;
}

.vocabulary-game.wrong-flash {
  animation: wrongFlash 0.6s ease;
}

@keyframes correctFlash {
  0%,
  100% {
    border-color: #e0e7ff;
  }
  50% {
    border-color: #22c55e;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
  }
}

@keyframes wrongFlash {
  0%,
  100% {
    border-color: #e0e7ff;
    transform: translateX(0);
  }
  20%,
  60% {
    border-color: #ef4444;
    transform: translateX(-8px);
  }
  40%,
  80% {
    transform: translateX(8px);
  }
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  animation: confettiFall 3s linear forwards;
}

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

.streak-indicator {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.option-btn {
  padding: 1rem;
  border: 2px solid var(--border-color);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.option-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.option-btn.correct {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.option-btn.incorrect {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

.activity-score {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.reset-game-btn {
  display: block;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 187, 229, 0.3);
}

/* Blog Preview Section */
.blog-preview-section {
  background: linear-gradient(135deg, #46bbe5 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-section-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  color: white;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-card.featured {
  grid-column: span 1;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.25),
    rgba(217, 119, 6, 0.15)
  );
  border-color: rgba(245, 158, 11, 0.5);
}

.blog-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #46bbe5;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

.featured-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.blog-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card-category {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.category-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.reading-time {
  font-size: 0.85rem;
  opacity: 0.9;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.blog-date {
  opacity: 0.8;
}

.read-more-link {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-description p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-features {
  margin-top: 3rem;
}

.about-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-features .feature-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-features .feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-showcase {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 100%;
}

.logo-display {
  margin-bottom: 2.5rem;
}

.about-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  padding: 10px;
}

.logo-display h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.brand-tagline {
  color: var(--primary-color);
  font-weight: 600;
  font-style: italic;
}

.credentials {
  display: grid;
  gap: 1rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-primary);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.credential-item:hover {
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.credential-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.credential-item span {
  color: var(--text-primary);
}

/* ================================ 
   GAME SECTION - CLEAN REDESIGN
   ================================ */

.game-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.game-header {
  text-align: center;
  margin-bottom: 3rem;
}

.game-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.game-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Game Stats Grid */
.game-grid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(70, 187, 229, 0.1);
}

.stat-icon {
  font-size: 2rem;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Progress Bar */
.progress-bar-container {
  background: #e5e7eb;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #46bbe5, #2d9cdb);
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 10px;
}

/* Game Card */
.game-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Mascot */
.mascot {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: mascotBounce 2s ease-in-out infinite;
}

@keyframes mascotBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

.mascot.correct {
  animation: mascotCelebrate 0.6s ease !important;
}

.mascot.incorrect {
  animation: mascotFrown 0.4s ease !important;
}

@keyframes mascotCelebrate {
  0% {
    transform: scale(1) rotate(0);
  }
  25% {
    transform: scale(1.3) rotate(-15deg);
  }
  50% {
    transform: scale(1.2) rotate(15deg);
  }
  75% {
    transform: scale(1.1) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes mascotFrown {
  0%,
  100% {
    transform: scale(1) rotateX(0);
  }
  50% {
    transform: scale(0.95) rotateX(10deg);
  }
}

/* Question Box */
.question-box {
  margin-bottom: 2rem;
  text-align: center;
}

.question-label {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.question-text {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}

/* Options Container */
.options-container {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.option-button {
  padding: 1rem;
  background: #f3f4f6;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-align: left;
}

.option-button:hover:not(:disabled) {
  border-color: var(--primary-color);
  background: #eff6ff;
  transform: translateX(5px);
}

.option-button:active:not(:disabled) {
  transform: scale(0.98);
}

.option-button:disabled {
  cursor: not-allowed;
}

.option-button.correct {
  background: #dcfce7;
  border-color: #22c55e;
  color: #166534;
  animation: correctPulse 0.5s ease;
}

.option-button.incorrect {
  background: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
  animation: shake 0.4s ease;
}

@keyframes correctPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-8px);
  }
  40%,
  80% {
    transform: translateX(8px);
  }
}

/* Result Message */
.result-message {
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  border-radius: 8px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.result-message.correct {
  background: #dcfce7;
  color: #166534;
  animation: slideIn 0.3s ease;
}

.result-message.incorrect {
  background: #fee2e2;
  color: #991b1b;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Game Over Screen */
.game-over-screen {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 12px;
}

.game-over-screen h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.final-stats div {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.final-stats span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #46bbe5, #2d9cdb);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 187, 229, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .game-section {
    padding: 2rem 0;
  }

  .game-header h2 {
    font-size: 1.8rem;
  }

  .game-grid-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .game-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .mascot {
    font-size: 3rem;
  }

  .question-text {
    font-size: 1.1rem;
  }

  .option-button {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .final-stats {
    grid-template-columns: 1fr;
  }
}

/* ================================
   TRUST & CREDENTIALS SECTION
   ================================ */

.trust-credentials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 3rem 1rem;
  margin: 2rem 0;
}

.trust-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.trust-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-number.blue {
  color: #46bbe5;
}

.trust-number.green {
  color: #10b981;
}

.trust-number.amber {
  color: #f59e0b;
}

.trust-number.pink {
  color: #ec4899;
}

.trust-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.trust-badges {
  margin-top: 3rem;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Tools Section */
/* ================================ 
   AI BOT CHAT WIDGET STYLES
   ================================ */

.ai-bot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

/* AI Bot Button */
.ai-bot-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(70, 187, 229, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-bot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(70, 187, 229, 0.6);
}

.ai-bot-icon {
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 2;
}

/* Pulse Animation */
.ai-bot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(70, 187, 229, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* AI Bot Chat Window */
.ai-bot-chat {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ai-bot-chat.active {
  display: flex;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode */
.dark-mode .ai-bot-chat {
  background: var(--bg-secondary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* AI Bot Header */
.ai-bot-header {
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.ai-bot-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ai-bot-status {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ai-bot-name {
  font-weight: 600;
  font-size: 1rem;
}

.ai-bot-online {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.ai-bot-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}

.ai-bot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Messages Container */
.ai-bot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f9fafb;
}

.dark-mode .ai-bot-messages {
  background: var(--bg-primary);
}

/* Bot Message */
.bot-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bot-message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bot-message-content {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 80%;
}

.dark-mode .bot-message-content {
  background: var(--bg-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bot-message-content p {
  margin: 0;
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.quick-action-btn {
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.quick-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 187, 229, 0.3);
}

.quick-action-btn i {
  font-size: 0.85rem;
}

/* User Message */
.user-message {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}

.user-message-content {
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(70, 187, 229, 0.3);
}

.user-message-content p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Scrollbar Styling */
.ai-bot-messages::-webkit-scrollbar {
  width: 6px;
}

.ai-bot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-bot-messages::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.ai-bot-messages::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.dark-mode .ai-bot-messages::-webkit-scrollbar-thumb {
  background: #4b5563;
}

.dark-mode .ai-bot-messages::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* "Featured Tools Section */
.featured-tools-section {
  padding: 4rem 0;
  background: white;
}

.featured-tools-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tool-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tool-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #46bbe5 0%, #2d9cdb 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 16px;
  margin: 4rem 0;
}

.cta-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .resources-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-box {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }

  .resource-box__icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .resource-box__title {
    font-size: 1rem;
  }

  .resource-box__desc {
    font-size: 0.8rem;
  }

  .journey-grid,
  .credentials-showcase,
  .blog-posts-grid,
  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .section-title,
  .activity-title {
    font-size: 2rem;
  }

  .blog-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .resources-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text .section-header {
    text-align: center;
  }

  .about-visual {
    justify-content: center;
  }

  .resource-box {
    min-height: 160px;
    padding: 1.25rem 0.75rem;
  }

  .resource-box__icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .resource-box__title {
    font-size: 0.9rem;
  }

  .resource-box__desc {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .resource-box__cta {
    font-size: 0.75rem;
  }

  .featured-resources-section {
    padding: 3rem 0 4rem;
  }

  .ai-bot-container {
    bottom: 1rem;
    right: 1rem;
  }

  .ai-bot-button {
    width: 56px;
    height: 56px;
  }

  .ai-bot-icon {
    font-size: 1.5rem;
  }

  .ai-bot-chat {
    bottom: 5rem;
    right: 1rem;
    width: calc(100vw - 2rem);
    height: 450px;
  }

  .learning-paths-section,
  .featured-resources-section,
  .activity-section,
  .about-section,
  .featured-tools-section {
    padding: 3rem 0;
  }

  .section-title,
  .activity-title,
  .blog-section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .journey-grid,
  .resources-grid,
  .credentials-showcase,
  .blog-posts-grid,
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card.featured {
    grid-column: span 1;
  }

  .activity-subtitle,
  .blog-section-subtitle,
  .section-subtitle {
    font-size: 1rem;
  }

  .game-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .vocabulary-game {
    padding: 1.5rem;
  }

  .word-card {
    font-size: 1.5rem;
    padding: 1.5rem;
    min-height: 80px;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
    margin: 3rem 0;
  }

  .cta-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .resources-grid-3x3 {
    grid-template-columns: 1fr;
  }

  .resource-box {
    min-height: 140px;
    padding: 1rem;
  }

  .ai-bot-chat {
    bottom: 5rem;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 16px 16px 0 0;
  }

  .learning-paths-section,
  .featured-resources-section,
  .activity-section,
  .about-section,
  .featured-tools-section {
    padding: 2rem 0;
  }

  .section-title,
  .activity-title,
  .blog-section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .journey-card,
  .resource-card,
  .credential-item,
  .blog-card,
  .tool-card {
    padding: 1.25rem;
  }

  .game-stats-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .game-stats-bar .stat-item {
    border-radius: 6px;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .option-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .cta-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
    border-radius: 12px;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .resource-box__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Animations - reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .journey-card:hover,
  .resource-card:hover,
  .credential-item:hover,
  .blog-card:hover {
    transform: none;
  }

  .option-btn:active {
    transform: scale(0.98);
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }
}
