{%- comment -%} CSS Styles {%- endcomment -%}
<style>

/* ========================================
   KAJABI OVERFLOW FIX
   ======================================== */

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "AeonikFono", "AeonikFono Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  
  /* Hide scrollbars but keep scroll functionality */
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE and Edge */
}

/* Hide scrollbars for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
}

/* Also hide scrollbars on any scrollable container */
*::-webkit-scrollbar {
  display: none !important;
}

* {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE and Edge */
}

/* CRITICAL FIX: Allow grid children to shrink */
.section-heading,
.section-content {
    min-width: 0 !important;
    overflow-x: hidden !important;
}

/* Force text to wrap */
p,
.lead-text,
.description,
.instructor-bio {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

/* ========= AeonikFono webfont from Vercel ========= */
 @font-face {
      font-family: "AeonikFono";
      src: url("https://www.secretlevel.co/fonts/aeonikfono-regular.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "AeonikFono";
      src: url("https://www.secretlevel.co/fonts/aeonikfono-medium.woff2") format("woff2");
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "AeonikFono";
      src: url("https://www.secretlevel.co/fonts/aeonikfono-bold.woff2") format("woff2");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Aeonik Condensed";
      src: url("https://www.secretlevel.co/fonts/aeonikcondensed-black.woff2") format("woff2");
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }
    
/* ========= CRITICAL: Global Overflow Prevention ========= */
* {
  box-sizing: border-box !important;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "AeonikFono", "AeonikFono Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}


/* Headings use Aeonik Condensed */
h1, h2, h3, h4, h5, h6,
.page-title,
[class*="type-heading-"] {
  font-family: "Aeonik Condensed", "AeonikFono", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

/* Reset all Kajabi container/wrapper styles */
#page-container,
.page-wrapper,
.site-content,
.main-content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ========= CRITICAL: All sections get padding except videos ========= */
section:not(.hero-video-section) {
  padding-left: 20px !important;
  padding-right: 20px !important;
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  section:not(.hero-video-section) {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (min-width: 1024px) {
  section:not(.hero-video-section) {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (min-width: 1280px) {
  section:not(.hero-video-section) {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
}

/* ========= Container - NO extra padding since sections handle it ========= */

.container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

/* Ensure grid-layout respects container */
.container.grid-layout {
  width: 100% !important;
  max-width: 100% !important;
}


/* ========= Video containers stay full-width ========= */
.video-container,
.hero-video-section {
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

/* ========= Grid Layout ========= */
.grid-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  padding: 64px 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  .grid-layout {
    padding: 80px 0 !important;
  }
}

@media (min-width: 1024px) {
  .grid-layout {
    grid-template-columns: minmax(0, 41.67fr) minmax(0, 58.33fr) !important;
    padding: 96px 0 !important;
  }
  
  .grid-layout .section-heading {
    grid-column: 1 !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }
  
  .grid-layout .section-content {
    grid-column: 2 !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }
}


/* Section heading spacing */
.section-heading h2 {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-heading h2 {
    margin-bottom: 16px;
  }
}

/* Section Borders */
section:not(.hero-video-section):not(.page-header) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography */
.page-title-section {
  padding-top: 120px !important;
  padding-bottom: 10px !important;
  text-align: center;
}

@media (max-width: 768px) {
  .page-title-section {
    padding-top: 100px !important;
    padding-bottom: 20px !important;
  }
}

.page-title {
  font-size: 4rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  text-wrap: balance !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 8rem !important;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 12rem !important;
  }
}


h1.main-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 64px 0;
  color: #ffffff;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "AeonikFono", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* ========= CRITICAL FIX: Lead Text - Remove max-width ========= */
.lead-text {
  font-family: "AeonikFono", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

@media (min-width: 768px) {
  .lead-text {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

/* ========= CRITICAL FIX: Description - Remove max-width ========= */
.description {
  font-family: "AeonikFono", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 100% !important;
  margin-bottom: 12px;
  line-height: 1.6;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

@media (min-width: 768px) {
  .description {
    margin-bottom: 16px;
  }
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.savings-badge {
  background: rgba(255, 255, 0, 0.1);
  color: #ffff00;
  border: 1px solid rgba(255, 255, 0, 0.2);
}

/* Pricing Card */
.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.original-price {
  font-size: 0.875rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #ffff00;
}

.payment-type {
  font-size: 1rem;
  opacity: 0.6;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: #ffff00;
  color: #000;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-button:hover {
  background: #ffff33;
  color: #000 !important;
  transform: translateY(-2px);
}

/* Curriculum Stages */
.curriculum-stages {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stage {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.stage:last-child {
  border-bottom: none;
}

.curriculum-conclusion {
  margin-top: 32px;
  font-weight: 500;
}

/* Instructors Section - Prevent Overflow */
.instructors-section {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.instructors-section .container,
.instructors-section .grid-layout,
.instructors-section .section-content {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

/* Instructors */
.instructors-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.instructor {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}

@media (min-width: 768px) {
  .instructor {
    flex-direction: row;
    gap: 32px;
  }
}

.instructor-image {
  width: 100%;
  flex-shrink: 0;
  min-width: 0 !important;
}

@media (min-width: 768px) {
  .instructor-image {
    width: 40%;
  }
}

.instructor-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.placeholder-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0.3;
}

.instructor-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffff00;
  margin-bottom: 16px;
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.instructor-info {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  flex: 1 !important;
}

.instructor-info h3,
.instructor-info p {
  max-width: 100% !important;
  width: 100% !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  white-space: normal !important;
}

.instructor-bio {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.75;
  width: 100% !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  hyphens: auto !important;
}


/* Community Benefits */
.community-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .community-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit {
  border-left: 2px solid #ffff00;
  padding-left: 20px;
}

.benefit h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffff00;
  margin-bottom: 8px;
}

.benefit p {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* FAQ */
.faq-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.faq-item summary {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: underline;
  list-style: none;
}

.faq-item summary:hover {
  text-decoration: none;
}

.faq-item p {
  margin-top: 12px;
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 100% !important;
}

/* Footer Styles */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px 0 !important;
  margin-top: 96px;
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 40px 32px 0 !important;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 40px 40px 0 !important;
  }
}

@media (min-width: 1280px) {
  .site-footer {
    padding: 40px 48px 0 !important;
  }
}

.footer-container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-description {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 40ch;
}

.footer-social {
  flex-direction: column;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-social {
    border: none;
    padding: 0;
  }
}

.social-badge,
.contact-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: all 0.2s;
}

.social-link:hover {
  text-decoration: none;
  color: #ffff00;
}

.contact-item {
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .contact-item {
    border: none;
    gap: 32px;
  }
}

.contact-email {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: white;
  text-decoration: underline;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .contact-email {
    font-size: 2.4rem;
  }
}

.contact-email:hover {
  text-decoration: none;
  color: #ffff00;
}

.footer-bottom {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 32px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px !important;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 0 !important;
  }
}

.copyright {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  transition: all 0.2s;
}

.legal-link:hover {
  text-decoration: none;
  color: #ffff00;
}

/* Typography Classes - Matching Next.js Site */
.type-heading-2xl {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .type-heading-2xl {
    font-size: 16rem;
  }
}

.type-heading-xl {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .type-heading-xl {
    font-size: 12rem;
  }
}

.type-heading-lg {
  font-size: 2rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  max-width: 100% !important;
}

@media (min-width: 640px) {
  .type-heading-lg {
    font-size: 3rem !important;
  }
}

@media (min-width: 768px) {
  .type-heading-lg {
    font-size: 3.6rem !important;
  }
}

@media (min-width: 900px) {
  .type-heading-lg {
    font-size: 4.2rem !important;
  }
}

@media (min-width: 1024px) {
  .type-heading-lg {
    font-size: 4rem !important;
  }
}

@media (min-width: 1280px) {
  .type-heading-lg {
    font-size: 5.4rem !important;
  }
}

@media (min-width: 1536px) {
  .type-heading-lg {
    font-size: 4rem !important;
  }
}

.type-heading-md {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
}

@media (min-width: 768px) {
  .type-heading-md {
    font-size: 4.8rem;
  }
}

.type-heading-sm {
  font-size: 2rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: hidden !important;
}

@media (min-width: 768px) {
  .type-heading-sm {
    font-size: 3.2rem !important;
  }
}

.type-heading-xs {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .type-heading-xs {
    font-size: 2.4rem;
  }
}

.type-base {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

@media (min-width: 768px) {
  .type-base {
    font-size: 16px !important;
  }
}

@media (min-width: 1024px) {
  .type-base {
    font-size: 18px !important;
  }
}

.type-sm {
  font-size: 12px !important;
  line-height: 1.6 !important;
}

@media (min-width: 768px) {
  .type-sm {
    font-size: 14px !important;
  }
}

.type-label {
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
}

a:hover {
  color: #fff !important;
}

.glass-surface-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.07), 0 0 16px rgba(0, 0, 0, 0.02);
}

.glass-surface-effect,
.glass-surface-content::before {
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.glass-surface-effect {
  z-index: 0;
  /* ⬇️ this is the SVG filter hook */
  filter: url(#glass-distortion);
  /* glassy blur */
  -webkit-backdrop-filter: blur(8px) brightness(1.2) saturate(1.2);
  backdrop-filter: blur(8px) brightness(1.2) saturate(1.2);
  overflow: hidden;
  /* subtle dark tint using your design token */
  background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
}

.glass-surface-content {
  position: relative;
  border-radius: inherit;
  z-index: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}
/* Border shine effect */
.border-shine {
  position: relative;
}

.border-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  -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;
  pointer-events: none;
}

.glass-surface-content::before {
  content: "";
  pointer-events: none;
  mix-blend-mode: overlay;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) padding-box;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) padding-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(
    12deg,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 90%
  );
}

.image-container {
  margin: 100px 0;
 width: 100%;
 display: flex;
 justify-content: center;
}

.image-container img {
      max-width: 150px;
}
@media (max-width: 640px) {
.footer-brand svg {
    display: none;
}
}
.container.header__container.media.justify-content-left, 
.header__content,header__content--desktop.background-unrecognized {
    display: none;
}

/* ========== AUTH/LOGIN PAGE STYLES ========== */
/* Requires course_landing.css for CSS variables (--sl-*) */

.auth__content {
  max-width: 400px;
  margin: 0 auto;
  padding: var(--sl-spacing-2xl) var(--sl-spacing-lg);
}

.auth__image {
  margin-bottom: var(--sl-spacing-xl);
}

.auth__image .image {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.auth__title {
  font-family: var(--sl-font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--sl-spacing-lg);
  color: var(--sl-color-foreground);
  letter-spacing: -0.02em;
      margin: 20px;
      font-weight: 900 !important;
        font-family: "AeonikFono", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.auth__content .form-group {
  margin-bottom: var(--sl-spacing-md);
  text-align: left;
}

.auth__label {
  display: block;
  font-family: var(--sl-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--sl-color-muted);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.auth__field,
.auth__content .form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sl-font-body);
  font-size: 15px;
  color: var(--sl-color-foreground);
  background-color: var(--sl-color-surface);
  border: 1px solid #fff;
  border-radius: var(--sl-radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.auth__field:focus,
.auth__content .form-control:focus {
  outline: none;
  border-color: var(--sl-color-accent);
  box-shadow: 0 0 0 3px rgba(227, 255, 57, 0.15);
}

.auth__field::placeholder,
.auth__content .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Checkbox styling */
.auth__content .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
      font-size: 14px;
    margin: 20px 0 5px;
}

.auth__content input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--sl-color-accent);
  cursor: pointer;
}

/* Submit button */
.auth__content .form-btn,
.auth__content button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
margin: 20px auto;
  font-family: var(--sl-font-body);
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background-color: #feed00;
  border: none;
  border-radius: var(--sl-radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-transform: none;
  letter-spacing: 0;
}

.auth__content .form-btn:hover,
.auth__content button[type="submit"]:hover {
  color: #000;
  background-color: #feed00;
}

.auth__content .form-btn:active,
.auth__content button[type="submit"]:active {
  transform: scale(0.98);
}

/* Error/Notice messages */
.auth__message,
.auth__content .alert {
  padding: 12px 14px;
  margin-bottom: var(--sl-spacing-md);
  font-size: 14px;
  border-radius: var(--sl-radius-sm);
  text-align: left;
}

.auth__content .alert--danger {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Divider */
.auth__content .divider {
  display: flex;
  align-items: center;
  gap: var(--sl-spacing-md);
  margin: var(--sl-spacing-lg) 0;
  font-size: 13px;
  color: var(--sl-color-muted);
}

.auth__content .divider::before,
.auth__content .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--sl-color-border);
}

/* Google Sign-in Button */
.auth__content .gsi-material-button {
  width: 100%;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sl-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--sl-color-foreground);
  background-color: transparent;
  border: 1px solid var(--sl-color-border);
  border-radius: var(--sl-radius-sm);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin: 20px auto;
}

.auth__content .gsi-material-button:hover {
  background-color: var(--sl-color-surface);
  border-color: rgba(255, 255, 255, 0.15);
}

.auth__content .gsi-material-button-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth__content .gsi-material-button-icon svg {
  width: 100%;
  height: 100%;
}

.auth__content .gsi-material-button-state {
  display: none;
}

.auth__content .gsi-material-button-content-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Forgot password link */
.auth__link {
  margin-top: var(--sl-spacing-lg);
}

.auth__link a {
  font-size: 14px;
  color: var(--sl-color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth__link a:hover {
  color: var(--sl-color-accent);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .auth__content {
    padding: var(--sl-spacing-xl) var(--sl-spacing-md);
  }
  
  .auth__title {
    font-size: 24px;
  }
}


.sl-course-layout,
.sl-course-layout * {
  font-family: inherit;
}

.sl-course-layout {
  font-family: var(--sl-font-body) !important;
}

.sl-course-layout p,
.sl-course-layout span,
.sl-course-layout a,
.sl-course-layout li,
.sl-course-layout button,
.sl-course-layout input,
.sl-course-layout textarea,
.sl-course-layout select {
  font-family: var(--sl-font-body) !important;
}

.sl-font-debug {
  font-family: "AeonikFono" !important;
  font-weight: 400 !important;
  font-size: 18px;
}


</style>

<script>
// Mobile menu toggle functionality (kept for compatibility)
function toggleMobileMenu() {
  const mobileNav = document.getElementById('mobileNav');
  if (mobileNav) {
    mobileNav.classList.toggle('active');
  }
}

function closeMobileMenu() {
  const mobileNav = document.getElementById('mobileNav');
  if (mobileNav) {
    mobileNav.classList.remove('active');
  }
}
</script>
