* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #e0e0e0;
  line-height: 1.7;
  background: #0a0a1a;
  overflow-x: hidden;
}

a {
  color: #a29bfe;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ff6b6b;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a1a;
}

::-webkit-scrollbar-thumb {
  background: rgba(108,92,231,0.3);
  border-radius: 4px;
}

header {
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: #a0a0b0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #a29bfe;
  text-decoration: none;
}

#content {
  min-height: 100vh;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
  margin-top: 4rem;
  background: rgba(10,10,26,0.5);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-nav a {
  color: #666680;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #a29bfe;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  color: #666680;
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  margin-top: 0.4rem;
}

.footer-social a {
  color: #666680;
  font-size: 0.8rem;
}

.footer-social a:hover {
  color: #a29bfe;
}

.site-spinner {
  width: 100%;
  top: 0;
  height: 3px;
  position: fixed;
  animation: spinner-slide 1.5s linear infinite;
  z-index: 9999;
  background-size: 200% 100%;
  background: linear-gradient(90deg, #6c5ce7, #ff6b6b, #6c5ce7);
  left: 0;
}

@keyframes spinner-slide {

0% {
    background-position: 200% 0;
  }
  
100% {
    background-position: -200% 0;
  }

}

@-webkit-keyframes spinner-slide {

0% {
    background-position: 200% 0;
  }
  
100% {
    background-position: -200% 0;
  }

}

@-moz-keyframes spinner-slide {

0% {
    background-position: 200% 0;
  }
  
100% {
    background-position: -200% 0;
  }

}

@-o-keyframes spinner-slide {

0% {
    background-position: 200% 0;
  }
  
100% {
    background-position: -200% 0;
  }

}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.width-300 {
  max-width: 300px;
  margin: 0 auto;
}

.width-400 {
  max-width: 400px;
  margin: 0 auto;
}

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

.inliner {
  display: flex;
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.horizontal-inset-plus-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.margin-top {
  margin-top: 1rem;
}

.margin-top-plus-3 {
  margin-top: 2.625rem;
}

.margin-top-plus-5 {
  margin-top: 6rem;
}

.margin-bottom {
  margin-bottom: 1rem;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-plus-2 {
  margin-bottom: 1.8125rem;
}

.margin-bottom-plus-5 {
  margin-bottom: 6rem;
}

.small-margin-bottom {
  margin-bottom: 0.5rem;
}

.small-text {
  font-size: 0.85rem;
  color: #666680;
}

h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: #f0f0f0;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f0f0f0;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f0f0f0;
}

p {
  margin-bottom: 0.75rem;
  color: #a0a0b0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: #666680;
  margin-bottom: 2rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.7rem 1rem;
  outline: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: rgba(255,255,255,0.04);
  color: #f0f0f0;
}

input:focus, select:focus, textarea:focus {
  border-color: #6c5ce7;
  box-shadow: 0 0 0 3px rgba(108,92,231,0.15);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #a0a0b0;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-glow {
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(108,92,231,0.3);
  transition: all 0.3s;
}

.btn-glow:hover {
  box-shadow: 0 6px 30px rgba(108,92,231,0.5);
  transform: translateY(-2px);
}

.btn-glow.large {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
}

.btn-ghost {
  background: transparent;
  color: #a0a0b0;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: #6c5ce7;
  color: #a29bfe;
}

button.primary {
  background: #6c5ce7;
  color: #fff;
}

button.primary:hover {
  background: #a29bfe;
}

button.secondary {
  background: rgba(255,255,255,0.06);
  color: #a0a0b0;
}

button.secondary:hover {
  background: rgba(255,255,255,0.1);
}

button.large {
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
}

button.error {
  background: #ff6b6b;
  color: #fff;
}

button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.validation-message.error {
  color: #ff6b6b;
  font-size: 0.85rem;
}

ul {
  list-style: none;
}

ul.interactive li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

th {
  text-align: left;
  padding: 0.75rem;
  background: rgba(108,92,231,0.15);
  color: #a29bfe;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #a0a0b0;
}

tr:hover {
  background: rgba(255,255,255,0.02);
}

.curriculum-table .week-num {
  font-weight: 700;
  color: #a29bfe;
  width: 60px;
}

.curriculum-table .week-title {
  font-weight: 600;
  color: #f0f0f0;
  width: 140px;
}

.curriculum-table .week-desc {
  color: #666680;
}

.user-menu-container {
  position: relative;
}

.user-menu-toggle {
  cursor: pointer;
  font-size: 1.2rem;
  color: #a0a0b0;
}

.user-menu {
  min-width: 160px;
  right: 0;
  top: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  position: absolute;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-radius: 8px;
  display: none;
  backdrop-filter: blur(20px);
  background: rgba(20,20,40,0.95);
}

.user-menu li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #a0a0b0;
}

.user-menu li:hover {
  background: rgba(108,92,231,0.1);
  color: #a29bfe;
}

.user-menu-container:hover .user-menu {
  display: block;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.admin-stat-card .admin-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a29bfe, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-stat-card .admin-stat-label {
  font-size: 0.85rem;
  color: #666680;
  margin-top: 0.25rem;
}

.admin-users-section {
  margin: 2rem 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead tr {
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.admin-table thead th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: #666680;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255,255,255,0.08);
}

.admin-table tbody tr.selected {
  background: rgba(108,92,231,0.1);
  border-left: 3px solid #6c5ce7;
}

.admin-table tbody td {
  padding: 0.75rem 1rem;
  color: #a0a0b0;
  font-size: 0.9rem;
}

.role-cell select {
  background: rgba(255,255,255,0.04);
  color: #f0f0f0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 6px;
  margin-right: 0.5rem;
}

.btn-danger {
  background: #ff6b6b;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-danger:hover {
  opacity: 0.85;
}

.admin-detail-panel {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin: 2rem 0;
  padding: 1.5rem;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
}

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

.detail-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem;
}

.detail-card h4 {
  color: #a29bfe;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.detail-card p {
  font-size: 0.9rem;
  color: #a0a0b0;
  margin-bottom: 0.3rem;
}

.completion-list li {
  font-size: 0.85rem;
  color: #a0a0b0;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.admin-tab {
  border-bottom: 2px solid transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  margin-bottom: -2px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: transparent;
  color: #666680;
}

.admin-tab:hover {
  color: #f0f0f0;
}

.admin-tab.active {
  color: #a29bfe;
  border-bottom: 2px solid #a29bfe;
}

.admin-content-section {
  margin: 1rem 0;
}

.content-summary {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.content-summary-stat {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  flex: 1 1 0;
}

.content-summary-stat.has-gaps {
  border-color: #ff6b6b;
}

.content-summary-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f0f0f0;
  display: block;
}

.content-summary-label {
  font-size: 0.8rem;
  color: #666680;
}

.content-filter {
  margin-bottom: 1rem;
}

.content-search {
  width: 100%;
  max-width: 320px;
  background: rgba(255,255,255,0.04);
  color: #f0f0f0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.content-search:focus {
  outline: none;
  border-color: #6c5ce7;
}

.coverage-gap {
  color: #ff6b6b;
  font-weight: 700;
}

.week-num {
  font-weight: 700;
  color: #a29bfe;
  width: 3rem;
}

.week-title {
  text-transform: capitalize;
}

.week-groups {
  color: #666680;
}

.week-file-counts {
  display: flex;
  gap: 0.5rem;
}

.badge {
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stl-badge {
  background: rgba(78,205,196,0.15);
  color: #4ecdc4;
}

.scad-badge {
  background: rgba(162,155,254,0.15);
  color: #a29bfe;
}

tr.no-files {
  opacity: 0.5;
}

.week-files-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.age-group-section {
  margin-bottom: 0.5rem;
}

.age-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.age-group-header .age-group-name {
  font-weight: 600;
  text-transform: capitalize;
  color: #f0f0f0;
}

.age-group-header .expand-toggle {
  color: #666680;
}

.age-group-files {
  padding-top: 0.5rem;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.file-row:hover {
  background: rgba(255,255,255,0.08);
}

.file-icon {
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.stl-icon {
  background: rgba(78,205,196,0.2);
  color: #4ecdc4;
}

.scad-icon {
  background: rgba(162,155,254,0.2);
  color: #a29bfe;
}

.file-name {
  color: #a0a0b0;
  font-size: 0.85rem;
}

.file-size {
  color: #666680;
  font-size: 0.8rem;
  margin-left: auto;
}

.auth-page {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666680;
}

.auth-links a {
  color: #a29bfe;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-links .separator {
  color: #666680;
  margin: 0 0.25rem;
}

.auth-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.curriculum-page {
  padding-bottom: 3rem;
}

.section-sub {
  color: #666680;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.quarter-header {
  margin: 3rem 0 1.5rem;
}

.quarter-header .quarter-title {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.quarter-header .quarter-desc {
  color: #666680;
  font-size: 0.95rem;
  max-width: 700px;
}

.quarter-section {
  margin-bottom: 2rem;
}

.weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.week-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s;
}

.week-card:hover {
  border-color: #6c5ce7;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.12);
}

.week-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.week-badge {
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.week-title {
  color: #f0f0f0;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.week-hook {
  color: #a29bfe;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.week-desc {
  color: #666680;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.age-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.age-selector select {
  max-width: 320px;
  font-size: 1rem;
  font-weight: 600;
}

.selected-group-banner {
  gap: 0.75rem;
  max-width: 300px;
  justify-content: center;
  margin-right: auto;
  align-items: center;
  padding: 0.6rem 1.5rem;
  margin-bottom: 2rem;
  margin-left: auto;
  border-radius: 50px;
  display: flex;
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
}

.selected-group-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.selected-group-ages {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.beyond-year-one {
  margin-top: 4rem;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.beyond-year-one h2 {
  margin-bottom: 0.75rem;
}

.beyond-year-one p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.help-hero {
  padding: 4rem 0 2rem;
  background: #0a0a1a;
}

.contact-section {
  padding: 2rem 0 3rem;
}

.contact-card {
  max-width: 600px;
  border-color: #6c5ce7;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.04);
}

.contact-card h2 {
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #a0a0b0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
}

.contact-method:hover {
  color: #a29bfe;
}

.contact-label {
  font-size: 0.8rem;
  color: #666680;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  color: #f0f0f0;
  font-weight: 600;
  font-size: 1rem;
}

a.contact-method .contact-value {
  color: #a29bfe;
}

a.contact-method:hover .contact-value {
  color: #ff6b6b;
}

.troubleshooting-section {
  padding: 3rem 0;
  background: rgba(255,255,255,0.01);
}

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

.trouble-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.trouble-card:hover {
  border-color: #6c5ce7;
}

.trouble-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trouble-icon {
  width: 28px;
  justify-content: center;
  height: 28px;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
}

.trouble-title {
  color: #f0f0f0;
  font-size: 1rem;
  margin: 0;
}

.trouble-steps {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.trouble-steps li {
  color: #a0a0b0;
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 0.15rem 0;
}

.trouble-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trouble-link {
  color: #a29bfe;
  font-size: 0.8rem;
  padding: 0.2rem 0.75rem;
  border: 1px solid #6c5ce7;
  border-radius: 20px;
  transition: all 0.2s;
  text-decoration: none;
}

.trouble-link:hover {
  background: #6c5ce7;
  color: #fff;
}

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

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

.resource-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.resource-card:hover {
  border-color: #6c5ce7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108,92,231,0.12);
}

.resource-title {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.resource-desc {
  color: #666680;
  font-size: 0.85rem;
  margin: 0;
}

.printer-cta {
  padding: 3rem 0;
}

.printer-cta p {
  color: #666680;
  margin-bottom: 1rem;
}

.hero {
  position: relative;
  padding: 6rem 1rem 5rem;
  overflow: hidden;
  background: #0a0a1a;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,92,231,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.1;
}

.hero-dots {
  background: linear-gradient(135deg, #ff6b6b, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-mascot {
  flex: 0 0 320px;
  position: relative;
  text-align: center;
}

.mascot-img {
  max-width: 320px;
  filter: drop-shadow(0 0 40px rgba(255,107,107,0.3));
  animation: float 3s ease-in-out infinite;
}

.mascot-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255,107,107,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes float {

0%, 100% {
    transform: translateY(0);
  }
  
50% {
    transform: translateY(-12px);
  }

}

@-webkit-keyframes float {

0%, 100% {
    transform: translateY(0);
  }
  
50% {
    transform: translateY(-12px);
  }

}

@-moz-keyframes float {

0%, 100% {
    transform: translateY(0);
  }
  
50% {
    transform: translateY(-12px);
  }

}

@-o-keyframes float {

0%, 100% {
    transform: translateY(0);
  }
  
50% {
    transform: translateY(-12px);
  }

}

.age-groups {
  padding: 4rem 0;
  background: rgba(255,255,255,0.01);
}

.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.age-group-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s;
}

.age-group-card:hover {
  border-color: #6c5ce7;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.15);
}

.age-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.age-emoji {
  font-size: 1.4rem;
}

.age-label {
  font-weight: 700;
  color: #f0f0f0;
  font-size: 1.05rem;
}

.age-range {
  color: #666680;
  font-size: 0.85rem;
  margin-left: auto;
}

.age-card-desc {
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.age-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #666680;
}

.age-card-meta .age-tone {
  font-style: italic;
}

.adventures {
  padding: 4rem 0;
}

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

.adventure-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.adventure-card:hover {
  border-color: #6c5ce7;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108,92,231,0.15);
}

.adventure-image {
  position: relative;
  background: rgba(255,255,255,0.02);
  padding: 1rem;
  text-align: center;
}

.adventure-image img {
  max-height: 180px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.adventure-week-badge {
  top: 0.75rem;
  padding: 0.2rem 0.75rem;
  position: absolute;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
  left: 0.75rem;
}

.adventure-info {
  padding: 1.25rem;
}

.adventure-title {
  color: #f0f0f0;
  margin-bottom: 0.3rem;
}

.adventure-desc {
  color: #666680;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.forge-path {
  padding: 4rem 0;
  background: rgba(255,255,255,0.01);
}

.rank-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.rank-pip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-radius: 50px;
  transition: all 0.3s;
}

.rank-pip:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(108,92,231,0.2);
}

.rank-pip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.rank-pip-name {
  font-weight: 600;
  color: #f0f0f0;
  font-size: 0.9rem;
}

.rank-pip-stars {
  color: #666680;
  font-size: 0.8rem;
}

.forge-note {
  color: #666680;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1.5rem;
}

.faq-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.01);
}

.faq-list {
  max-width: 700px;
  margin: 2rem auto 0;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #f0f0f0;
  user-select: none;
}

.faq-question:hover {
  color: #a29bfe;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-toggle {
  color: #666680;
  font-size: 1.2rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.pricing {
  padding: 5rem 0;
}

.price-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
}

.price-card h2 {
  margin-bottom: 0.5rem;
}

.price-mascot {
  margin-bottom: 1rem;
}

.price-mascot-img {
  max-width: 120px;
  filter: drop-shadow(0 0 20px rgba(255,107,107,0.25));
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a29bfe, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.6;
}

.price-features {
  text-align: left;
  margin: 1.5rem 0;
  padding-left: 0;
}

.price-features li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: #a0a0b0;
}

.price-features li:before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #a29bfe;
}

.price-note {
  color: #666680;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.subscription-status-section {
  margin-bottom: 2rem;
}

.subscription-active {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subscription-inactive {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sub-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.sub-badge.active {
  background: linear-gradient(135deg, #4ecdc4, #2ecc71);
  color: #fff;
}

.sub-badge.inactive {
  background: rgba(255,255,255,0.06);
  color: #666680;
}

.sub-badge.past-due {
  background: linear-gradient(135deg, #ff6b6b, #e17055);
  color: #fff;
}

.sub-age-group {
  color: #a0a0b0;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a29bfe, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: #666680;
}

.rank-progress-section {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin: 2rem 0;
  padding: 1.5rem;
}

.rank-display {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.rank-display .current-rank {
  font-weight: 700;
  text-transform: capitalize;
}

.rank-display .rank-arrow {
  color: #666680;
}

.rank-display .next-rank {
  color: #666680;
  text-transform: capitalize;
}

.progress-bar-container {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  height: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #6c5ce7, #ff6b6b);
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: #666680;
  margin-top: 0.5rem;
}

.current-week-section {
  margin: 2rem 0;
}

.current-week-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  border-color: #6c5ce7;
  box-shadow: 0 0 20px rgba(108,92,231,0.15);
}

.week-cta {
  color: #a0a0b0;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.week-card-actions {
  margin-top: 1rem;
}

.week-done {
  color: #4ecdc4;
  font-weight: 700;
  font-size: 0.95rem;
}

.recent-weeks {
  margin: 2rem 0;
}

.mission-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #a0a0b0;
}

.mission-list .check {
  color: #4ecdc4;
  font-weight: 600;
  margin-right: 0.5rem;
}

.mission-list .current-badge {
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
  padding: 0.15rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.stars-earned {
  color: #ffd700;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.empty-state {
  color: #666680;
  font-style: italic;
}

.all-weeks-section {
  margin: 2rem 0;
}

.weeks-toggle {
  cursor: pointer;
  color: #a29bfe;
  margin-bottom: 1rem;
  font-weight: 600;
}

.week-mini {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}

.week-mini.completed {
  border-color: #4ecdc4;
}

.week-mini.current {
  border-color: #6c5ce7;
  box-shadow: 0 0 15px rgba(108,92,231,0.3);
}

.week-mini.locked {
  opacity: 0.4;
}

.printers-hero {
  padding: 4rem 0 2rem;
  background: #0a0a1a;
}

.printers-grid-section {
  padding: 2rem 0 4rem;
}

.printers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.printer-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.printer-card:hover {
  border-color: #6c5ce7;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.15);
}

.printer-badge {
  right: 0.75rem;
  top: 0.75rem;
  padding: 0.2rem 0.75rem;
  position: absolute;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
}

.printer-header {
  margin-bottom: 1rem;
}

.printer-name {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.printer-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.printer-price {
  color: #a29bfe;
  font-weight: 700;
}

.printer-ages {
  color: #666680;
}

.printer-body {
  margin-bottom: 1rem;
}

.printer-pros {
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.printer-pros li {
  padding: 0.2rem 0 0.2rem 1.5rem;
  position: relative;
  color: #a0a0b0;
  font-size: 0.9rem;
}

.printer-pros li:before {
  content: '+';
  position: absolute;
  left: 0;
  color: #4ecdc4;
}

.printer-cons {
  padding-left: 0;
}

.printer-cons li {
  padding: 0.2rem 0 0.2rem 1.5rem;
  position: relative;
  color: #666680;
  font-size: 0.85rem;
}

.printer-cons li:before {
  content: '-';
  position: absolute;
  left: 0;
  color: #ff6b6b;
}

.printer-notes {
  color: #a0a0b0;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.slicers-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.01);
}

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

.slicer-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s;
}

.slicer-card:hover {
  border-color: #6c5ce7;
  transform: translateY(-2px);
}

.slicer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.slicer-name {
  color: #f0f0f0;
  font-size: 1.1rem;
}

.slicer-price {
  color: #4ecdc4;
  font-weight: 600;
  font-size: 0.85rem;
}

.slicer-best-for {
  color: #a29bfe;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.slicer-desc {
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.filament-section {
  padding: 4rem 0;
}

.filament-list {
  max-width: 700px;
  margin: 2rem auto 0;
}

.filament-row {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

.filament-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.filament-material {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.filament-verdict {
  color: #a29bfe;
  font-weight: 600;
  font-size: 0.85rem;
}

.filament-details {
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.budget-note {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  border-color: #6c5ce7;
}

.budget-note h3 {
  color: #f0f0f0;
  margin-bottom: 0.75rem;
}

.budget-note p {
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.budget-note p:last-child {
  margin-bottom: 0;
}

.subscribe-page {
  padding: 2rem 1rem;
}

.subscribe-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}

.subscribe-info {
  flex: 1;
}

.subscribe-info h2 {
  margin-bottom: 0.75rem;
}

.subscribe-info h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #f0f0f0;
}

.subscribe-pitch {
  color: #a0a0b0;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.benefits-list {
  padding-left: 0;
  margin: 0.75rem 0 1.5rem;
}

.benefits-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: #a0a0b0;
  font-size: 0.95rem;
}

.benefits-list li:before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: #a29bfe;
}

.subscribe-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.subscribe-stats .stat {
  text-align: center;
}

.subscribe-stats .stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a29bfe, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subscribe-stats .stat span {
  font-size: 0.8rem;
  color: #666680;
}

.subscribe-card {
  top: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  text-align: center;
  position: sticky;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  flex: 0 0 340px;
  background: rgba(255,255,255,0.04);
}

.subscribe-price {
  margin-bottom: 1.5rem;
}

.price-big {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a29bfe, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1.2rem;
  color: #666680;
}

.subscribe-auth {
  text-align: center;
  margin-top: 1rem;
}

.subscribe-auth p {
  margin-bottom: 0.75rem;
  color: #666680;
  font-size: 0.9rem;
}

.button-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.plan-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.plan-option {
  position: relative;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.plan-option:hover {
  border-color: #6c5ce7;
  background: rgba(108,92,231,0.05);
}

.plan-option.active {
  border-color: #6c5ce7;
  background: rgba(108,92,231,0.1);
  box-shadow: 0 0 0 2px #6c5ce7;
}

.plan-badge {
  right: 8px;
  top: -8px;
  padding: 0.1rem 0.5rem;
  position: absolute;
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
  color: #fff;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-label {
  font-weight: 700;
  color: #f0f0f0;
  font-size: 0.95rem;
  min-width: 80px;
}

.plan-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.plan-per-month {
  color: #666680;
  font-size: 0.8rem;
}

.plan-savings {
  color: #4ecdc4;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #a0a0b0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-mascot {
    flex: 0 0 auto;
  }
  
  .mascot-img {
    max-width: 200px;
  }
  
  .adventures-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .age-pill-row {
    justify-content: center;
  }
  
  .main-nav {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 0;
    right: 0;
    top: 100%;
    padding: 1rem;
    flex-direction: column;
    position: absolute;
    display: none;
    backdrop-filter: blur(20px);
    background: rgba(10,10,26,0.95);
    left: 0;
  }
  
  .main-nav a {
    padding: 0.75rem 1rem;
    display: block;
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header {
    position: relative;
  }
  
  .subscribe-layout {
    flex-direction: column;
  }
  
  .subscribe-card {
    position: static;
    flex: auto;
  }
  
  .subscribe-stats {
    flex-wrap: wrap;
  }
  
  .admin-table {
    display: block;
  }
  
  .admin-table thead {
    display: none;
  }
  
  .admin-table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .admin-table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 0.5rem;
  }
  
  .admin-table td {
    padding: 0.25rem 0;
    border: none;
    flex: 1 1 45%;
    min-width: 120px;
  }
  
  .admin-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  
  .admin-tab {
    white-space: nowrap;
    padding: 0.75rem 1rem;
    flex-shrink: 0;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-right {
    text-align: center;
  }

}

@media (max-width: 480px) {

  .hero-title {
    font-size: 1.6rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .age-groups-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-header {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .plan-savings {
    margin-left: 0;
  }
  
  .subscribe-stats {
    gap: 1rem;
  }
  
  .subscribe-stats .stat {
    flex: 1 1 40%;
  }

}

@font-face {
  font-family: 'open-sans-bold';
  src: url('/fonts/open-sans-bold.woff2') format('woff2'), url('/fonts/open-sans-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open-sans-extrabold';
  src: url('/fonts/open-sans-extrabold.woff2') format('woff2'), url('/fonts/open-sans-extrabold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open-sans-light';
  src: url('/fonts/open-sans-light.woff2') format('woff2'), url('/fonts/open-sans-light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open-sans-regular';
  src: url('/fonts/open-sans-regular.woff2') format('woff2'), url('/fonts/open-sans-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open-sans-semibold';
  src: url('/fonts/open-sans-semibold.woff2') format('woff2'), url('/fonts/open-sans-semibold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}