/* Global Styles */
:root {
  --primary-dark: #0a0a0a;
  --primary-medium: #121212;
  --primary-light: #1a1a1a;
  --container-dark: rgba(15, 15, 15, 0.8);
  --container-medium: rgba(30, 30, 30, 0.7);
  --primary-accent: #1976d2;
  --primary-accent-alt: #00bcd4;
  --secondary-accent: #9c27b0;
  --profit-green: #00c853;
  --loss-red: #ff1744;
  --warning-orange: #ff9800;
  --text-light: #e6e9f5;
  --text-bright: #ffffff;
  --text-gray: #a0a0a0;
  --text-gray-light: #c0c0c0;
  --gold: #ffd700;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hamburger {
  display: none;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium), var(--primary-light));
  color: var(--text-light);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Base styles for instructor avatar */
.instructor-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Base styles for instructor avatar */
.instructor-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 80px;       /* default container size */
    height: 80px;
    border-radius: 50%; /* make the container circular */
    overflow: hidden;   /* ensure image stays inside circle */
}

.instructor-avatar img {
    width: 100%;       /* fill the container */
    height: 100%;      /* fill the container */
    object-fit: cover; /* maintain aspect ratio and cover circle */
    transition: transform 0.3s;
}

/* Optional hover effect */
.instructor-avatar img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .instructor-avatar {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .instructor-avatar {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .instructor-avatar {
        width: 50px;
        height: 50px;
    }
}



@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(-15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(25, 118, 210, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(25, 118, 210, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 118, 210, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(25, 118, 210, 0.5); }
  50% { box-shadow: 0 0 20px rgba(25, 118, 210, 0.8); }
  100% { box-shadow: 0 0 5px rgba(25, 118, 210, 0.5); }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-in-up {
  animation: slideInUp 0.5s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.4s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.4s ease forwards;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 1px;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(25, 118, 210, 0.5);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-gray-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  padding: 10px 0;
}

.nav-link:hover {
  color: var(--text-light);
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-size: 1rem;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  color: white;
  box-shadow: 0 0 10px rgba(25, 118, 210, 0.4);
  animation: glow 2s infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 20px rgba(25, 118, 210, 0.6);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--primary-accent);
}

.btn-secondary:hover {
  background: rgba(25, 118, 210, 0.1);
  transform: translateY(-3px) scale(1.02);
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium), var(--primary-light));
}

.hero-title {
  font-size: 4.2rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform-style: preserve-3d;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  text-shadow: 0 0 20px rgba(25, 118, 210, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray-light);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.primary-button {
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  color: #e6e9f5;
  box-shadow: 
    0 0 15px rgba(25, 118, 210, 0.4),
    0 0 30px rgba(25, 118, 210, 0.2),
    inset 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: fadeInUp 1s ease 0.4s forwards, glow 3s infinite;
  opacity: 0;
  display: inline-block;
}

.primary-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.primary-button:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 
    0 0 25px rgba(25, 118, 210, 0.6),
    0 0 50px rgba(25, 118, 210, 0.3),
    0 0 100px rgba(25, 118, 210, 0.1),
    inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.primary-button:hover::after {
  left: 120%;
}

.primary-button:active {
  transform: scale(0.98) translateY(-1px);
}

.secondary-button {
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-light);
  border: 2px solid var(--primary-accent);
  transition: all 0.3s ease;
  background: var(--container-dark);
  cursor: pointer;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
  display: inline-block;
  box-shadow: 0 0 10px rgba(25, 118, 210, 0.2);
}

.secondary-button:hover {
  background: rgba(25, 118, 210, 0.1);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 0 20px rgba(25, 118, 210, 0.3);
}

/* Features Section */
.features-section {
  padding: 120px 20px;
  text-align: center;
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 80px;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  animation: fadeIn 1s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 0 0 15px rgba(25, 118, 210, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--container-dark);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-accent);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(25, 118, 210, 0.1), rgba(0, 188, 212, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

.feature-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-accent);
}

.feature-description {
  font-size: 1.1rem;
  color: var(--text-gray-light);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: rgba(5, 5, 5, 0.9);
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-light);
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  list-style: none;
}

.footer-link {
  display: block;
  color: var(--text-gray);
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--container-medium);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-accent);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 1rem;
}

/* Form Styles */
.form-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  perspective: 1000px;
}

.form-card {
  background: var(--container-dark);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 500px;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
}

.form-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-accent);
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}

.form-label {
  font-weight: 500;
  color: var(--text-light);
  font-size: 1.1rem;
}

.form-input {
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--container-medium);
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
  transform: scale(1.02);
}

.form-input::placeholder {
  color: var(--text-gray);
}

.form-button {
  padding: 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.4);
  width: 100%;
  transform-style: preserve-3d;
  animation: glow 2s infinite;
}

.form-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 25px rgba(33, 150, 243, 0.6);
  animation: none;
}

.form-button:active {
  transform: translateY(0) scale(0.98);
}

/* Dashboard Styles */
.dashboard-container {
  width: 100%;
  padding: 20px;
  min-height: 80vh;
  perspective: 1000px;
  background-color: var(--primary-dark);
}

.dashboard-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-card {
  background: var(--container-dark);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-accent);
}

.card-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-accent);
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.progress-section {
  margin-bottom: 30px;
}

.progress-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 12px;
  background: var(--container-medium);
  transition: all 0.3s ease;
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.progress-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.progress-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.progress-item:hover::before {
  transform: scaleY(1);
}

.checkbox {
  margin-right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  accent-color: var(--profit-green);
}

.progress-text {
  flex: 1;
  font-size: 1.1rem;
  color: var(--text-bright);
  transition: all 0.3s ease;
}

.progress-text.completed {
  text-decoration: line-through;
  color: var(--text-gray);
}

.zoom-link-card {
  background: var(--container-medium);
  border-radius: 15px;
  padding: 25px;
  margin-top: 25px;
}

.zoom-link {
  display: block;
  padding: 20px;
  background: var(--container-dark);
  border-radius: 12px;
  text-decoration: none;
  color: var(--primary-accent);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zoom-link:hover {
  background: rgba(0, 255, 65, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.zoom-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.zoom-link:hover::before {
  transform: translateX(100%);
}

.cta-button {
  padding: 20px 50px;
  border-radius: 15px;
  border: none;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  margin-top: 30px;
  transform-style: preserve-3d;
  animation: glow 2s infinite;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
  animation: none;
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.book-order-button {
  background: linear-gradient(45deg, var(--profit-green), var(--primary-accent));
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  margin-top: 20px;
}

.referral-code-section {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(0, 200, 83, 0.3));
  padding: 30px;
  border-radius: 15px;
  margin: 25px 0;
  border: 2px solid var(--primary-accent);
  box-shadow: 0 0 20px rgba(0, 219, 222, 0.5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-code-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(25, 118, 210, 0.1), rgba(0, 200, 83, 0.1));
  z-index: -1;
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}

.referral-title {
  margin: 0 0 15px 0;
  color: var(--primary-accent);
  font-size: 1.8rem;
}

.referral-code-display {
  margin: 0 0 20px 0;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-bright);
  word-break: break-all;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
}

.earnings-display {
  background: rgba(0, 200, 83, 0.2);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

/* Admin Panel Styles */
.admin-panel-container {
  width: 100%;
  padding: 20px;
  min-height: 80vh;
  background-color: var(--primary-dark);
}

.admin-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.admin-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {
  padding: 15px 25px;
  border-radius: 12px;
  border: none;
  background: var(--container-medium);
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.tab-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-button:hover::after {
  opacity: 0.2;
}

.tab-button.active {
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.4);
}

.tab-button:hover {
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(33, 150, 243, 0.6);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.admin-section {
  background: var(--container-dark);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.admin-section:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-accent);
}

.payment-item {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--container-medium);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.payment-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-status {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.payment-status.pending {
  background: rgba(255, 255, 0, 0.2);
  color: var(--warning-orange);
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.payment-status.approved {
  background: rgba(0, 255, 0, 0.2);
  color: var(--profit-green);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.payment-status.rejected {
  background: rgba(255, 0, 0, 0.2);
  color: var(--loss-red);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.action-button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-right: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
  transform-style: preserve-3d;
}

.action-button.approve {
  background: rgba(0, 255, 0, 0.2);
  color: var(--profit-green);
}

.action-button.reject {
  background: rgba(255, 0, 0, 0.2);
  color: var(--loss-red);
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Course Page Styles */
.course-container {
  width: 100%;
  padding: 20px;
  min-height: 80vh;
  background-color: var(--primary-dark);
  perspective: 1000px;
}

.course-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  transform-style: preserve-3d;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.course-card {
  background: var(--container-dark);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-accent);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(25, 118, 210, 0.1), rgba(0, 188, 212, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover::before {
  opacity: 1;
}

.course-phase-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-accent);
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.course-week-title {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.course-day-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  background: var(--container-medium);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
}

.course-day-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.course-day-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.course-day-item:hover::before {
  transform: scaleY(1);
}

.course-day-check {
  margin-right: 15px;
  color: var(--profit-green);
}

.course-day-text {
  flex: 1;
  font-size: 1rem;
  color: var(--text-bright);
}

/* Additional classes for course page */
.accent-text {
  color: var(--primary-accent);
  font-weight: 600;
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.feature-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-bullet {
  color: var(--primary-accent);
  font-size: 1rem;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.feature-description {
  flex: 1;
  line-height: 1.6;
}

/* Instructor section styles */
.instructor-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(27, 38, 59, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  border: 1px solid rgba(33, 150, 243, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.instructor-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--profit-green));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(33, 150, 243, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.instructor-name {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.instructor-title {
  font-size: 1.5rem;
  color: var(--profit-green);
  margin-bottom: 25px;
  font-weight: 600;
}

.instructor-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: var(--text-gray-light);
  font-weight: 300;
}

.stats-container {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--profit-green);
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-gray-light);
  font-weight: 500;
}

.motivation-banner {
  background: linear-gradient(45deg, rgba(0, 200, 83, 0.15), rgba(33, 150, 243, 0.15));
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  border: 1px solid rgba(0, 200, 83, 0.3);
  text-align: center;
}

.motivation-text {
  font-size: 1.3rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}

.highlight-text {
  color: var(--profit-green);
  font-weight: 700;
}

/* Dashboard specific styles */
.dashboard-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.earnings-text {
  margin: 0;
  font-size: 1.1rem;
}

.referrals-text {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.referral-info {
  margin: 0;
  font-size: 1rem;
  color: var(--text-gray);
}

.progress-title {
  color: var(--text-light);
  margin-bottom: 20px;
}

.phase-title {
  color: var(--primary-accent);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.zoom-title {
  color: var(--text-light);
  margin-bottom: 15px;
}

.zoom-description {
  margin-bottom: 20px;
}

/* Payment page specific styles */
.payment-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: var(--text-gray-light);
  line-height: 1.6;
}

.payment-amount {
  font-size: 4rem;
  font-weight: bold;
  margin: 40px 0;
  background: linear-gradient(45deg, var(--profit-green), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.payment-features {
  text-align: left;
  margin: 40px 0;
  padding: 0 20px;
}

.payment-option {
  color: var(--text-gray);
  margin: 20px 0;
  font-size: 1.1rem;
  text-align: center;
}

.whatsapp-button {
  display: block;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.error-message {
  color: var(--loss-red);
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 16, 240, 0.1);
  border: 1px solid var(--loss-red);
}

.success-message {
  color: var(--profit-green);
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid var(--profit-green);
}

/* Book order specific styles */
.order-confirmation-card {
  text-align: center;
  max-width: 600px;
}

.order-success-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--profit-green);
  text-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
}

.order-success-message {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--text-bright);
}

.order-id-display {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 30px 0;
  padding: 20px;
  border-radius: 15px;
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid var(--profit-green);
  box-shadow: 0 0 25px rgba(0, 200, 83, 0.3);
  color: var(--profit-green);
}

.shipping-info {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--text-bright);
}

.book-order-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: var(--text-gray-light);
}

/* Login/Register page specific styles */
.login-register-link, .register-login-link {
  text-align: center;
  margin-top: 20px;
  color: var(--text-gray-light);
}

.register-link, .login-link {
  color: var(--primary-accent);
  text-decoration: none;
}

/* Admin panel specific styles */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.admin-stat-card {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.admin-stat-card.approved {
  background: rgba(0, 200, 83, 0.1);
}

.admin-stat-card.pending {
  background: rgba(255, 255, 0, 0.1);
}

.admin-stat-card.rejected {
  background: rgba(255, 0, 0, 0.1);
}

.admin-stat-title {
  margin: 0 0 10px 0;
}

.admin-stat-card.approved .admin-stat-title {
  color: var(--profit-green);
}

.admin-stat-card.pending .admin-stat-title {
  color: var(--primary-accent);
}

.admin-stat-card.rejected .admin-stat-title {
  color: var(--loss-red);
}

.admin-stat-value {
  font-size: 2rem;
  margin: 0;
}

.admin-action-buttons {
  margin-top: 15px;
}

.user-status {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.user-status.approved {
  background: rgba(0, 255, 0, 0.2);
  color: var(--profit-green);
}

.user-status.rejected {
  background: rgba(255, 0, 0, 0.2);
  color: var(--loss-red);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

/* Contact page specific styles */
.contact-textarea {
  resize: vertical;
}

.contact-info-section {
  margin-top: 40px;
  text-align: center;
}

.contact-info-title {
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info-item {
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Index page specific styles */
.how-it-works-section {
  padding: 100px 20px;
  background: var(--primary-medium);
  text-align: center;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-number {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-title {
  color: var(--primary-accent);
  margin-bottom: 20px;
}

.step-description {
  color: var(--text-gray-light);
}

.testimonials-section {
  padding: 100px 20px;
  background: var(--primary-dark);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray-light);
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--primary-accent);
  font-weight: 600;
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
  text-align: center;
}

.cta-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.3rem;
  color: var(--text-gray-light);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: relative;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .auth-buttons {
    display: none;
    position: absolute;
    top: 100%;
    right: 15px;
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
  }
  
  .auth-buttons.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
  
  .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
    min-width: 100px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .primary-button, .secondary-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .dashboard-card {
    padding: 30px;
  }
  
  .form-card {
    padding: 30px;
    margin: 10px;
  }
  
  .admin-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .course-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .course-card {
    padding: 30px;
  }
  
  .course-title {
    font-size: 2.2rem;
  }
  
  .course-phase-title {
    font-size: 1.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Additional responsive fixes */
  .dashboard-container, .course-container, .admin-panel-container {
    padding: 10px;
  }
  
  .progress-item, .course-day-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .progress-text, .course-day-text {
    margin-top: 10px;
    margin-left: 0;
  }
  
  .payment-details {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .action-button {
    margin-bottom: 10px;
    width: 100%;
  }
  
  /* Instructor section responsive styles */
  .instructor-container {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
  
  .instructor-avatar {
    width: 180px;
    height: 180px;
    font-size: 5rem;
    margin-bottom: 30px;
  }
  
  .instructor-name {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-card {
    min-width: 130px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .navbar {
    padding: 10px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .form-card {
    padding: 20px;
  }
  
  .form-input {
    padding: 12px 15px;
  }
  
  .form-button {
    padding: 15px;
  }
  
  .dashboard-card, .course-card, .feature-card {
    padding: 20px;
  }
  
  .card-title, .course-phase-title {
    font-size: 1.5rem;
  }
  
  .progress-text, .course-day-text {
    font-size: 0.9rem;
  }
  
  .feature-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .feature-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .feature-bullet {
    margin-bottom: 5px;
  }
  
  .dashboard-description {
    font-size: 1rem;
  }
  
  .phase-title {
    font-size: 1.1rem;
  }
  
  .referral-code-display {
    font-size: 1.2rem;
  }
  
  .referral-info {
    font-size: 0.9rem;
  }
  
  .payment-description {
    font-size: 1rem;
  }
  
  .payment-amount {
    font-size: 3rem;
  }
  
  .order-success-title {
    font-size: 1.5rem;
  }
  
  .order-id-display {
    font-size: 1.2rem;
  }
  
  .book-order-description {
    font-size: 1rem;
  }
  
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-stat-value {
    font-size: 1.5rem;
  }
  
  .contact-info-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-icon {
    font-size: 1.5rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .hamburger {
    font-size: 1.3rem;
  }
  
  /* Instructor section responsive styles */
  .instructor-container {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  
  .instructor-avatar {
    width: 150px;
    height: 150px;
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .instructor-name {
    font-size: 2.2rem;
  }
  
  .instructor-title {
    font-size: 1.3rem;
  }
  
  .instructor-description {
    font-size: 1rem;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .stat-card {
    min-width: 120px;
    padding: 15px;
  }
  
  .stat-value {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .motivation-text {
    font-size: 1.1rem;
  }
}

/* Checkbox styling */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-gray-light);
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--container-dark);
  border: 1px solid var(--primary-accent);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: rgba(25, 118, 210, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-accent);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container a {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-container a:hover {
  text-decoration: underline;
}
