.gls-hero {
  background: linear-gradient(145deg, #f0fdff 0%, #dff6f8 60%, #eafbfc 100%);
  padding: 100px 5vw 56px;
  position: relative;
  overflow: hidden;
}
.gls-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,118,127,0.10) 1px, transparent 1px);
  background-size: 25px 25px;
}
.gls-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.gls-hero-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 46px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.gls-hero-lead {
  font-size: 16px;
  font-weight: 600;
  color: #4b5768;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.gls-section { background: var(--bg); padding: 48px 5vw 80px; }

.gls-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

.gls-status {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  padding: 40px 0;
}
.gls-status--error { color: #dc2626; }

.gls-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.gls-row {
  background: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(0,80,140,0.07);
}

.gls-row-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.gls-row-num {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 20px;
  color: var(--muted);
  min-width: 30px;
  text-align: center;
  flex-shrink: 0;
}
.gls-row-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
}
.gls-row-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px;
}

.gls-row-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.gls-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gls-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.gls-btn--flashcards { background: #0097a7; }
.gls-btn--practice    { background: #7c3aed; }

@media (max-width: 520px) {
  .gls-row { flex-direction: column; align-items: flex-start; }
  .gls-row-actions { width: 100%; }
  .gls-btn { flex: 1; text-align: center; }
}

.gls-why, .gls-study {
  max-width: 760px;
  margin: 48px auto 0;
}
.gls-why-title, .gls-study-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--navy);
  margin-bottom: 14px;
}
.gls-why-body, .gls-study-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 500;
}
.gls-study { margin-top: 36px; }
