 /* Base layout */
 .mox-container { max-width: 1100px; margin: 0 auto; padding: 24px; }
 
 .mox-main-wrapper {
   width: 100%;
   overflow-x: hidden;
 }
 
 .mox-container-inner {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   width: 100%;
   box-sizing: border-box;
 }
 
 @media (max-width: 768px) {
   .mox-container-inner {
     padding: 0 15px;
   }
 }
 
 /* Hero */
 .mox-hero { 
   text-align: center; 
   padding: 100px 0; 
   min-height: 85vh;
   display: flex;
   justify-content: center;
   align-items: center;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: #fff; 
   position: relative;
   overflow: hidden;
   width: 100vw;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
   border-radius: 0;
   margin-bottom: 40px;
 }
 
 .mox-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.15);
     z-index: 1;
 }
 
 .mox-hero::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: 
         radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
         radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
         radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 35%),
         radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.09) 0%, transparent 45%),
         radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.07) 0%, transparent 30%),
         radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
     z-index: 1;
     animation: floatShapes 20s ease-in-out infinite;
 }
 
 @keyframes floatShapes {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     25% { transform: translateY(-10px) rotate(1deg); }
     50% { transform: translateY(-5px) rotate(-1deg); }
     75% { transform: translateY(-15px) rotate(0.5deg); }
 }
 
 .mox-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
 
 .mox-floating-icons {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 2;
 }
 
 .mox-floating-icon {
   position: absolute;
   color: rgba(255, 255, 255, 0.15);
   font-size: 2.5rem;
   animation: float 8s infinite ease-in-out;
 }
 
 .mox-floating-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
 .mox-floating-icon:nth-child(2) { top: 25%; right: 12%; animation-delay: 1.5s; }
 .mox-floating-icon:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 3s; }
 .mox-floating-icon:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 4.5s; }
 .mox-floating-icon:nth-child(5) { top: 55%; left: 5%; animation-delay: 6s; }
 .mox-floating-icon:nth-child(6) { top: 45%; right: 5%; animation-delay: 7.5s; }
 
 @keyframes float {
   0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
   50% { transform: translateY(-30px) rotate(15deg) scale(1.1); }
 }
 
 .mox-avatar-container { 
   margin-bottom: 35px; 
   display: inline-block;
   padding: 8px;
   background: rgba(255, 255, 255, 0.25);
   border-radius: 50%;
   backdrop-filter: blur(10px);
   box-shadow: 0 15px 35px rgba(0,0,0,0.25);
   animation: fadeInUp 0.8s ease-out;
 }
 
 .mox-avatar-container img { 
   border-radius: 50%; 
   border: 6px solid #fff;
   width: 130px;
   height: 130px;
   object-fit: cover;
 }
 
 .mox-title { 
   font-size: 4.5rem; 
   margin: 0 0 15px; 
   letter-spacing: 1px; 
   font-weight: 900;
   text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
   animation: slideInUp 0.8s ease-out;
 }
 
 .mox-subtitle { 
   font-size: 1.8rem; 
   opacity: 0.95; 
   margin: 0; 
   font-weight: 500;
   margin-bottom: 50px;
   text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   animation: fadeInUp 1s ease-out 0.3s both;
 }
 
 /* Stats Container in Hero */
.mox-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 1s ease-out 0.6s both;
}
 
 .mox-stat-card {
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(15px);
     border-radius: 24px;
     padding: 30px 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }
 
 .mox-stat-card:hover {
     transform: translateY(-10px) scale(1.02);
     background: rgba(255, 255, 255, 0.25);
     box-shadow: 0 20px 45px rgba(0,0,0,0.3);
     border-color: rgba(255, 255, 255, 0.5);
 }
 
 .mox-stat-icon {
     font-size: 2.8rem;
     color: #ffd700;
     text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
 }
 
 .mox-stat-info {
     display: flex;
     flex-direction: column;
     text-align: left;
 }
 
 .mox-stat-value {
     font-size: 2.5rem;
     font-weight: 900;
     line-height: 1;
     color: #fff;
 }
 
 .mox-stat-label {
     font-size: 1rem;
     opacity: 0.9;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     font-weight: 600;
 }
 
 @media (max-width: 768px) {
  .mox-hero { padding: 100px 0; min-height: 90vh; }
  .mox-title { font-size: 3.2rem; }
  .mox-subtitle { font-size: 1.4rem; }
  .mox-hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .mox-stat-card { padding: 20px; }
  .mox-stat-value { font-size: 2rem; }
  .mox-hero-content { padding: 0 15px; }
}
 
 .mox-hero-actions { 
     display: flex; 
     gap: 25px; 
     flex-wrap: wrap; 
     justify-content: center;
     animation: fadeInUp 1s ease-out 0.9s both;
 }
 
 .mox-hero-actions .mox-btn {
   padding: 18px 45px;
   font-size: 1.3rem;
   font-weight: 800;
   border-radius: 60px;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }
 
 .mox-hero-actions .mox-btn-primary {
   background: #fff;
   color: #764ba2;
   border: none;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
 }
 
 .mox-hero-actions .mox-btn-primary:hover {
   transform: translateY(-8px) scale(1.05);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
   background: #fff;
 }
 
 .mox-hero-actions .mox-btn-secondary {
   background: rgba(255, 255, 255, 0.15);
   color: #fff;
   border: 3px solid rgba(255, 255, 255, 0.5);
   backdrop-filter: blur(15px);
 }
 
 .mox-hero-actions .mox-btn-secondary:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: translateY(-8px) scale(1.05);
   border-color: #fff;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
 }
 
 @keyframes slideInUp {
     from { opacity: 0; transform: translateY(40px); }
     to { opacity: 1; transform: translateY(0); }
 }
 
 @keyframes fadeInUp {
     from { opacity: 0; transform: translateY(30px); }
     to { opacity: 1; transform: translateY(0); }
 }
 
 /* Post Sections Full Width */
 .mox-posts-section {
   width: 100vw;
   left: 50%;
   right: 50%;
   margin-left: -50vw;
   margin-right: -50vw;
   padding: 60px 0;
   background: #f8fafc;
   border-radius: 0;
   border: none;
   border-top: 1px solid #edf2f7;
   border-bottom: 1px solid #edf2f7;
   margin-bottom: 0;
   box-shadow: none;
   position: relative;
 }
 
 .mox-posts-section:nth-of-type(even) {
   background: #ffffff;
 }
 
 .mox-posts-section .mox-overlay-title {
   margin-bottom: 10px;
 }
 
 .mox-posts-section .mox-blog-grid {
   margin-top: 30px;
 }
 
 @media (max-width: 768px) {
   .mox-posts-section {
     padding: 40px 0;
   }
 }
 
 /* Metrics */
 .mox-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
 .mox-metric { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
 .mox-metric .fa { font-size: 28px; color: #4b6cb7; }
 .mox-metric-body { display: flex; flex-direction: column; }
 .mox-metric-label { font-size: 13px; color: #6b7280; }
 .mox-metric-value { font-size: 22px; font-weight: 600; color: #111827; }
 
 /* Nav */
 .mox-nav { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0 24px; }
 .mox-nav a { text-decoration: none; color: #374151; background: #f3f4f6; border: 1px solid #e5e7eb; padding: 8px 12px; border-radius: 8px; font-size: 14px; }
 .mox-nav a:hover { background: #e5e7eb; }
 
 /* Sections */
.mox-section { 
  background: #fff; 
  border: 1px solid #e5e7eb; 
  border-radius: 16px; 
  padding: 30px; 
  margin-bottom: 40px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
}
 .mox-section h2 { margin-top: 0; font-size: 20px; }
 
 .mox-section-subtitle {
    text-align: center;
}
 .mox-table-wrap { overflow-x: auto; }
 .mox-table { width: 100%; border-collapse: collapse; }
 .mox-table th, .mox-table td { padding: 10px 12px; border-bottom: 1px solid #e5e7eb; text-align: left; }
 .mox-table thead th { background: #f9fafb; font-weight: 600; }
 
 /* Cards */
 .mox-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
 .mox-card { border: 1px solid #e5e7eb; border-radius: 20px; padding: 24px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05); display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
 .mox-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.1); }
 .mox-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(135deg, #4b6cb7, #182848); }
 
 /* Recommended Cards - Modern Gradient Style with Left Border */
 .mox-card.is-recommended { 
   border: 2px solid transparent;
   background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 50%, #ffffff 100%);
   box-shadow: 0 4px 15px rgba(59,130,246,0.15), 0 0 0 1px rgba(59,130,246,0.1);
   border-left: 6px solid #3b82f6;
   border-radius: 16px;
 }
 .mox-card.is-recommended::before { 
   display: none;
 }
 .mox-card.is-recommended::after {
   content: "⭐";
   position: absolute;
   top: 16px;
   right: 16px;
   font-size: 32px;
   opacity: 0.15;
 }
 .mox-card.is-recommended:hover {
   transform: translateY(-8px) scale(1.02);
   box-shadow: 0 12px 28px rgba(59,130,246,0.25), 0 0 0 2px rgba(59,130,246,0.2);
 }
 
 /* Popular Cards - Bold Card Style with Fire Icon Background */
 .mox-card.is-popular {
   border: 1px solid #4338ca;
   background: linear-gradient(135deg, #4f46e5, #6366f1);
   border-radius: 18px;
   position: relative;
   overflow: hidden;
   box-shadow: 0 10px 24px rgba(79,70,229,0.35);
   color: #ffffff;
 }
 .mox-card.is-popular::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 56px;
   background: linear-gradient(90deg, #3730a3, #4f46e5);
   clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
   z-index: 0;
 }
 .mox-card.is-popular::after {
   content: "";
   position: absolute;
   inset: 0;
   background: repeating-linear-gradient(45deg, rgba(79,70,229,0.08) 0 12px, transparent 12px 24px);
   z-index: 0;
 }
 .mox-card.is-popular .mox-card-header,
 .mox-card.is-popular .mox-card-title,
 .mox-card.is-popular .mox-card-actions {
   position: relative;
   z-index: 1;
 }
 .mox-card.is-popular .mox-card-title { color: #ffffff; }
 .mox-card.is-popular .mox-btn-secondary { background: #475569; color: #ffffff; border-color: #64748b; }
 .mox-card.is-popular:hover {
   transform: translateY(-6px) scale(1.01);
   box-shadow: 0 18px 38px rgba(79,70,229,0.45);
 }
 
 /* New Cards - Sleek Modern Style with Corner Badge */
 .mox-card.is-new {
   border: 1px solid #1d4ed8;
   background: linear-gradient(135deg, #2563eb, #3b82f6);
   border-radius: 18px;
   position: relative;
   overflow: hidden;
   box-shadow: 0 10px 24px rgba(37,99,235,0.35);
   color: #ffffff;
 }
 .mox-card.is-new::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 56px;
   background: linear-gradient(90deg, #1d4ed8, #2563eb);
   clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
   z-index: 0;
 }
 .mox-card.is-new::after {
   content: "";
   position: absolute;
   inset: 0;
   background: repeating-linear-gradient(45deg, rgba(37,99,235,0.08) 0 12px, transparent 12px 24px);
   z-index: 0;
 }
 .mox-card.is-new .mox-card-header,
 .mox-card.is-new .mox-card-title,
 .mox-card.is-new .mox-card-actions {
   position: relative;
   z-index: 1;
 }
 .mox-card.is-new .mox-card-title { color: #ffffff; }
 .mox-card.is-new .mox-chip-new { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.24); color: #e0e7ff; }
 .mox-card.is-new .mox-btn-secondary { background: #475569; color: #ffffff; border-color: #64748b; }
 .mox-card.is-new:hover {
   transform: translateY(-6px) scale(1.01);
   box-shadow: 0 18px 38px rgba(37,99,235,0.45);
 }
 
 .mox-card-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; line-height: 1.4; }
 .mox-card-actions { display: flex; gap: 10px; margin-top: 20px; }
 .mox-card-media { height: 140px; border-radius: 12px; background-size: cover; background-position: center; margin-bottom: 14px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
 .mox-card .mox-card-title { margin-top: 6px; }
 .mox-card .mox-card-desc { margin-top: 6px; }
 .mox-btn-primary { border-radius: 999px; box-shadow: 0 8px 20px rgba(75,108,183,0.4); padding: 14px 28px; font-size: 17px; font-weight: 600; }
 .mox-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
 .mox-blog-card { border: 1px solid #e5e7eb; border-radius: 16px; background: #ffffff; text-decoration: none; color: inherit; box-shadow: 0 6px 18px rgba(0,0,0,0.08); overflow: hidden; display: block; transition: transform 0.2s ease, box-shadow 0.2s ease; }
 .mox-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.14); }
 .mox-blog-card-image { height: 160px; background-size: cover; background-position: center; }
 .mox-blog-card-content { padding: 14px; }
 .mox-blog-card-title { font-size: 18px; font-weight: 700; color: #111827; margin: 10px 0 12px; line-height: 1.4; }
 .mox-blog-card-actions { display: flex; align-items: center; }
 .mox-chip-blog { background: #eef2ff; border: 1px solid #e0e7ff; color: #3730a3; border-radius: 999px; padding: 4px 8px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
 .mox-advice-list { display: grid; gap: 12px; }
 .mox-advice-item { border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; background: #fff; }
 .mox-advice-actions { display: flex; gap: 10px; margin-top: 8px; }
 .mox-advice-item .mox-section { margin-bottom: 12px; }
 .mox-advice-item .mox-section:last-child { margin-bottom: 0; }
 .mox-card-header { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
 .mox-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #374151; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 999px; padding: 4px 8px; }
 .mox-chip-author { cursor: pointer; }
 .mox-chip-author:hover { background: #e5e7eb; }
 .mox-chip-secondary { background: #eef2ff; border-color: #e0e7ff; color: #4338ca; }
 .mox-chip-muted { background: #f9fafb; border-color: #e5e7eb; color: #6b7280; }
 .mox-chip-recommended { background: #dbeafe; border-color: #93c5fd; color: #1e40af; font-weight: 600; }
 .mox-chip-popular { background: #fed7aa; border-color: #fb923c; color: #9a3412; font-weight: 600; }
 .mox-chip-new { background: #e0e7ff; border-color: #c7d2fe; color: #3730a3; font-weight: 600; }
 .mox-card-desc { font-size: 14px; color: #4b5563; margin: 0 0 12px; }
 .mox-btn { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; border-radius: 8px; padding: 8px 12px; font-size: 14px; border: 1px solid #e5e7eb; }
 .mox-btn-primary { background: #4b6cb7; color: #fff; border-color: #4b6cb7; }
 .mox-btn-primary:hover { background: #3f5aa0; }
 .mox-btn-danger { background: #e74c3c; color: #fff; border-color: #e74c3c; }
 .mox-btn-danger:hover { background: #c0392b; }
 .mox-card.is-recommended .mox-btn-primary { background: linear-gradient(135deg, #3b82f6, #2563eb); border-color: #3b82f6; box-shadow: 0 6px 16px rgba(59,130,246,0.4); }
 .mox-card.is-recommended .mox-btn-primary:hover { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 8px 20px rgba(59,130,246,0.5); }
 .mox-card.is-popular .mox-btn-primary { background: linear-gradient(135deg, #f97316, #ea580c); border-color: #f97316; box-shadow: 0 6px 16px rgba(249,115,22,0.4); }
 .mox-card.is-popular .mox-btn-primary:hover { background: linear-gradient(135deg, #ea580c, #c2410c); box-shadow: 0 8px 20px rgba(249,115,22,0.5); }
 .mox-card.is-new .mox-btn-primary { background: linear-gradient(135deg, #2563eb, #1d4ed8); border-color: #2563eb; box-shadow: 0 6px 16px rgba(37,99,235,0.35); }
 .mox-card.is-new .mox-btn-primary:hover { background: linear-gradient(135deg, #1d4ed8, #1e40af); box-shadow: 0 8px 20px rgba(37,99,235,0.45); }
 .mox-btn-light { background: #f3f4f6; color: #374151; }
 .mox-btn-light:hover { background: #e5e7eb; }
 
 /* See All button */
 .mox-section .mox-see-all {
   display: block;
   margin: 20px auto 0;
   padding: 12px 18px;
   font-weight: 700;
   font-size: 15px;
   border-radius: 999px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border-color: #2563eb;
   color: #ffffff;
   box-shadow: 0 8px 20px rgba(37,99,235,0.25);
   text-align: center;
   width: fit-content;
 }
 .mox-section .mox-see-all:hover {
   background: linear-gradient(135deg, #1d4ed8, #1e40af);
   color: #ffffff;
   text-decoration: none;
 }
 
 /* Badges */
 .mox-badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 1200px; margin-left: auto; margin-right: auto; }
 .mox-badge { display: flex; gap: 12px; align-items: center; border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 12px; background: #fff; }
 .mox-badge.is-unlocked { border-color: #c4d7ff; background: #f0f5ff; }
 .mox-badge.is-locked { opacity: 0.85; }
 .mox-badge-icon .fa { font-size: 22px; color: #4b6cb7; }
 .mox-badge-name { font-weight: 600; display: flex; align-items: center; gap: 8px; }
 .mox-badge-tag { font-size: 11px; color: #0f5132; background: #d1e7dd; border: 1px solid #badbcc; border-radius: 999px; padding: 2px 8px; }
 .mox-badge-tag-muted { color: #6b7280; background: #f3f4f6; border-color: #e5e7eb; }
 .mox-badge-desc { font-size: 13px; color: #4b5563; }
 
 /* Progress */
 .mox-progress-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
 .mox-progress { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; }
 .mox-progress-label { font-size: 14px; font-weight: 600; color: #374151; display: flex; align-items: center; gap: 8px; }
 .mox-progress-track { height: 10px; background: #f3f4f6; border-radius: 999px; margin: 8px 0; overflow: hidden; }
 .mox-progress-fill { height: 100%; background: linear-gradient(90deg, #4b6cb7, #3f5aa0); border-radius: 999px; }
 .mox-progress-value { font-size: 12px; color: #6b7280; text-align: right; }
 
 /* Bar chart */
 .mox-bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 140px; padding: 12px; border: 1px solid #e5e7eb; border-radius: 10px; background: #fff; }
 .mox-bar { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 6px; }
 .mox-bar-fill { width: 24px; background: #4b6cb7; border-radius: 6px 6px 0 0; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
 .mox-bar-label { font-size: 11px; color: #6b7280; }
 .mox-chart-note { font-size: 12px; color: #6b7280; margin-top: 8px; }
 
 /* FAQ */
 .mox-faq details { border: 1px solid #e5e7eb; border-radius: 8px; padding: 10px 12px; margin-bottom: 10px; }
 .mox-faq summary { cursor: pointer; font-weight: 600; }
 
 /* Responsive */
 @media (max-width: 768px) {
   .mox-metrics { grid-template-columns: 1fr; }
   .mox-title { font-size: 32px; }
   .mox-card-grid { grid-template-columns: 1fr; }
   .mox-blog-grid { grid-template-columns: 1fr; }
   .mox-badge-grid { grid-template-columns: 1fr 1fr; }
   .mox-progress-wrap { grid-template-columns: 1fr; }
 }
 
 /* App bar (Facebook-like top bar) */
 .mox-appbar { position: sticky; top: 0; z-index: 50; display: flex; justify-content: space-between; align-items: center; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 8px 10px; margin-bottom: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
 .mox-global-appbar-container:not(.alignwide) { max-width: none; padding-left: 0; padding-right: 0; }
 body.mox-subscriber-home .mox-global-appbar-container { max-width: 1100px; padding-left: 24px; padding-right: 24px; }
 .mox-appbar-left, .mox-appbar-right { display: flex; align-items: center; gap: 8px; }
 .mox-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; border: 1px solid #e5e7eb; background: #f9fafb; color: #374151; text-decoration: none; position: relative; }
 .mox-icon-btn .fa { font-size: 18px; }
 .mox-icon-btn:hover { background: #f3f4f6; }
 .mox-notice-badge { position: absolute; top: -6px; right: -6px; background: #ef4444; color: #fff; font-size: 11px; border-radius: 999px; padding: 2px 6px; border: 2px solid #fff; }
 
 /* Mobile menu */
 .mox-mobile-menu { position: fixed; inset: 0; z-index: 1000; display: none; background: rgba(17,24,39,0.50); }
 .mox-mobile-menu.is-open {
   display: block;
 }
 .mox-mobile-menu-panel { position: absolute; inset: 0; background: #ffffff; display: flex; flex-direction: column; animation: moxSlideIn 0.2s ease-out; }
 .mox-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #e5e7eb; font-weight: 600; }
 .mox-mobile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px; flex: 1; overflow-y: auto; }
 .mox-mobile-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 110px; border-radius: 14px; color: #ffffff; text-decoration: none; box-shadow: 0 6px 12px rgba(0,0,0,0.12); transition: transform 0.15s ease, box-shadow 0.15s ease; position: relative; }
 .mox-mobile-card .fa { font-size: 26px; }
 .mox-mobile-card span { margin-top: 6px; font-size: 14px; font-weight: 600; }
 .mox-mobile-card:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.18); }
 /* Color themes */
 .mox-mobile-card.is-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
 .mox-mobile-card.is-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
 .mox-mobile-card.is-green { background: linear-gradient(135deg, #34d399, #059669); }
 .mox-mobile-card.is-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
 .mox-mobile-card.is-teal { background: linear-gradient(135deg, #22d3ee, #0ea5e9); }
 .mox-mobile-card.is-pink { background: linear-gradient(135deg, #fb7185, #e11d48); }
 .mox-mobile-card.is-indigo { background: linear-gradient(135deg, #818cf8, #4338ca); }
 .mox-mobile-card.is-violet { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
 .mox-mobile-card.is-slate { background: linear-gradient(135deg, #94a3b8, #475569); }
 .mox-mobile-card.is-gray { background: linear-gradient(135deg, #9ca3af, #4b5563); }
 .mox-mobile-card.is-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
 .mox-mobile-card.is-lime { background: linear-gradient(135deg, #a3e635, #65a30d); }
 .mox-mobile-card.is-gold { background: linear-gradient(135deg, #fbbf24, #b45309); }
 .mox-mobile-card.is-cyan { background: linear-gradient(135deg, #22d3ee, #0891b2); }
 @media (max-width: 640px) { .mox-mobile-grid { grid-template-columns: repeat(2, 1fr); } }
 @keyframes moxSlideIn { from { transform: translateX(100%);} to { transform: translateX(0);} }
 body.mox-no-scroll { overflow: hidden; }
 
 /* Icon grid (apps) */
 .mox-apps h2 { margin-bottom: 12px; }
 .mox-icon-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
 .mox-icon-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-decoration: none; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; color: #111827; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
 .mox-icon-card .fa { font-size: 22px; color: #4b6cb7; }
 .mox-icon-card span { font-size: 12px; color: #374151; }
 .mox-icon-card:hover { background: #f9fafb; }
 
 @media (max-width: 1024px) {
   .mox-icon-grid { grid-template-columns: repeat(4, 1fr); }
 }
 @media (max-width: 640px) {
   .mox-icon-grid { grid-template-columns: repeat(3, 1fr); }
   .mox-mobile-menu { right: 12px; top: 60px; width: 90%; }
 }
 /* Utility */
 .mox-overlay { position: fixed; inset: 0; z-index: 2001; display: none; background: rgba(17,24,39,0.60); }
 .mox-overlay:not(.is-hidden) { display: block; }
 
 /* Overrides: Make Popular/New cards use light style similar to Recommended */
 .mox-card.is-popular {
   border: 2px solid transparent;
   background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 50%, #ffffff 100%);
   box-shadow: 0 4px 15px rgba(245,158,11,0.15), 0 0 0 1px rgba(245,158,11,0.1);
   border-left: 6px solid #f59e0b;
   border-radius: 16px;
   color: #111827;
 }
 .mox-card.is-popular::before { display: none; }
 .mox-card.is-popular::after { content: "🔥"; position: absolute; top: 16px; right: 16px; font-size: 32px; opacity: 0.12; }
 .mox-card.is-popular:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 28px rgba(245,158,11,0.25), 0 0 0 2px rgba(245,158,11,0.2); }
 .mox-card.is-popular .mox-btn-secondary { background: #f3f4f6; color: #111827; border-color: #e5e7eb; }
 
 .mox-card.is-new {
   border: 2px solid transparent;
   background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
   box-shadow: 0 4px 15px rgba(59,130,246,0.15), 0 0 0 1px rgba(59,130,246,0.1);
   border-left: 6px solid #3b82f6;
   border-radius: 16px;
   color: #111827;
 }
 .mox-card.is-new::before { display: none; }
 .mox-card.is-new::after { content: "✨"; position: absolute; top: 16px; right: 16px; font-size: 28px; opacity: 0.14; }
 .mox-card.is-new:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 28px rgba(59,130,246,0.25), 0 0 0 2px rgba(59,130,246,0.2); }
 .mox-card.is-new .mox-chip-new { background: #eef2ff; border-color: #e0e7ff; color: #3730a3; }
 .mox-card.is-new .mox-btn-secondary { background: #f3f4f6; color: #111827; border-color: #e5e7eb; }
 .mox-card.is-popular .mox-card-title,
 .mox-card.is-new .mox-card-title { color: #111827; }
 .mox-btn-secondary.mox-btn-whatsapp { background: #25D366; border-color: #1ebe5d; color: #ffffff; }
 .mox-btn-secondary.mox-btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 6px 16px rgba(37,211,102,0.4); }
 .mox-btn-secondary.mox-btn-whatsapp .fa { color: #ffffff; }
 .mox-card.is-new .mox-btn-secondary.mox-btn-whatsapp { background: #25D366; border-color: #1ebe5d; color: #ffffff; }
 .mox-card.is-new .mox-btn-secondary.mox-btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 6px 16px rgba(37,211,102,0.4); }
 .mox-card.is-popular .mox-btn-secondary.mox-btn-whatsapp { background: #25D366; border-color: #1ebe5d; color: #ffffff; }
 .mox-card.is-popular .mox-btn-secondary.mox-btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 6px 16px rgba(37,211,102,0.4); }
 .mox-overlay-content { position: absolute; inset: 0; background: #ffffff; display: flex; flex-direction: column; overflow-y: auto; }
 .mox-overlay-header { position: sticky; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #e5e7eb; background: #fff; z-index: 1; }
 .mox-overlay-title { display: flex; align-items: center; justify-content: center; width: 100%; gap: 8px; font-size: 18px; font-weight: 700; color: #111827; text-align: center; text-decoration: underline; text-underline-offset: 4px; }
 
 /* Community Q&A layout */
 #mox-community-overlay .mox-community-content { padding: 16px; }
 #mox-community-overlay .mox-section { margin-bottom: 16px; }
 #mox-community-overlay .mox-section-title { padding: 12px 14px; border-bottom: 1px solid #eef2f7; }
 #mox-community-overlay .mox-section-body { padding: 12px 14px; }
 #mox-community-overlay .mox-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
 #mox-community-overlay .mox-field label { font-size: 12px; font-weight: 600; color: #374151; }
 #mox-community-overlay .mox-field textarea { border: 1px solid #d1d5db; border-radius: 8px; padding: 10px 12px; font-size: 14px; background: #fff; }
 #mox-community-overlay .mox-actions-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
 #mox-community-overlay #mox-community-questions { margin-top: 8px; }
 #mox-community-overlay .mox-card-grid { grid-template-columns: 1fr; gap: 12px; }
 .mox-close-btn { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid #e5e7eb; background: #f9fafb; color: #374151; cursor: pointer; }
 .mox-close-btn:hover { background: #f3f4f6; }
 
 #mox-leaderboard-overlay .mox-overlay-header { background: linear-gradient(135deg, #f59e0b, #b45309); color: #fff; border-bottom: none; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
 #mox-leaderboard-overlay .mox-overlay-title { color: #fff; }
 #mox-leaderboard-overlay .mox-close-btn { background: rgba(255,255,255,.15); border: none; color: #fff; backdrop-filter: blur(4px); }
 #mox-leaderboard-overlay .mox-close-btn:hover { background: rgba(255,255,255,.25); }
 
 /* Leaderboard footer bar */
 .mox-leaderboard-footer {
   position: sticky;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fff;
   border-top: 1px solid #e5e7eb;
   padding: 1rem;
   text-align: center;
   box-shadow: 0 -2px 8px rgba(0,0,0,.06);
 }
 .mox-leaderboard-footer .mox-btn {
   min-width: 200px;
   font-weight: 600;
   border-radius: 999px;
   box-shadow: 0 2px 6px rgba(0,0,0,.12);
 }
 .mox-leaderboard-content { padding: 16px; }
 .mox-leader-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
 .mox-leader-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
 .mox-leader-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
 .mox-leader-rank { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 999px; background: #4b6cb7; color: #fff; font-weight: 700; font-size: 13px; }
 .mox-leader-name { font-weight: 600; color: #111827; }
 .mox-leader-meta { display: flex; align-items: center; gap: 12px; color: #374151; font-size: 13px; }
 .mox-leader-meta .fa { color: #4b6cb7; }
 
 .mox-leaderboard-content .mox-table-wrap {
     max-height: 60vh;
     overflow-y: auto;
 }
 .mox-table-modern thead th { background: #f9fafb; font-weight: 700; }
 .mox-table-modern tbody tr:nth-child(even) { background: #f9fafb; }
 .mox-table-modern tbody tr:hover { background: #f3f4f6; }
 /* Highlight current user row */
 .mox-table-modern tbody tr.mox-current-user { background: #dcfce7 !important; }
 .mox-leader-self { margin-top: 12px; text-align: center; background: #f9fafb; border: 1px solid #e5e7eb; padding: 10px; border-radius: 8px; }
 
 @media (max-width: 640px) {
   .mox-leader-top { grid-template-columns: 1fr; }
 }
 
 .is-hidden {
     display: none !important;
 }
 
 /* Modern Dashboard Overlay */
 #mox-dashboard-overlay .mox-overlay-header {
   background: linear-gradient(135deg, #8b5cf6, #6d28d9);
   color: #fff;
   border-bottom: none;
   border-radius: 0 0 24px 24px;
   padding: 20px 24px;
   box-shadow: 0 6px 18px rgba(0,0,0,.12);
 }
 #mox-dashboard-overlay .mox-overlay-title {
   color: #fff;
   font-size: 22px;
   letter-spacing: .4px;
 }
 #mox-dashboard-overlay .mox-close-btn {
   background: rgba(255,255,255,.15);
   border: none;
   color: #fff;
   backdrop-filter: blur(4px);
 }
 #mox-dashboard-overlay .mox-close-btn:hover {
   background: rgba(255,255,255,.25);
 }
 
 #mox-dashboard-overlay .mox-dashboard-content {
   padding: 24px;
   background: #f8fafc;
 }
 #mox-dashboard-overlay .mox-dashboard-summary {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
   gap: 16px;
   margin-bottom: 24px;
 }
 #mox-dashboard-overlay .mox-summary-card {
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   text-align: center;
   box-shadow: 0 4px 12px rgba(0,0,0,.05);
   transition: transform .2s ease, box-shadow .2s ease;
 }
 #mox-dashboard-overlay .mox-summary-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 20px rgba(0,0,0,.08);
 }
 #mox-dashboard-overlay .mox-summary-icon {
   font-size: 28px;
   color: #8b5cf6;
   margin-bottom: 8px;
 }
 #mox-dashboard-overlay .mox-summary-value {
   font-size: 24px;
   font-weight: 700;
   color: #111827;
 }
 #mox-dashboard-overlay .mox-summary-label {
   font-size: 13px;
   color: #6b7280;
   margin-top: 4px;
 }
 
 #mox-dashboard-overlay .mox-table-wrap {
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   box-shadow: 0 4px 12px rgba(0,0,0,.05);
 }
 #mox-dashboard-overlay .mox-table {
   border-collapse: separate;
   border-spacing: 0;
 }
 #mox-dashboard-overlay .mox-table thead th {
   background: #f1f5f9;
   color: #475569;
   font-weight: 600;
   text-transform: uppercase;
   font-size: 12px;
   letter-spacing: .4px;
   padding: 12px 16px;
   border-bottom: 1px solid #e2e8f0;
 }
 #mox-dashboard-overlay .mox-table tbody tr {
   transition: background .15s ease;
 }
 #mox-dashboard-overlay .mox-table tbody tr:nth-child(even) {
   background: #f8fafc;
 }
 #mox-dashboard-overlay .mox-table tbody tr:hover {
   background: #eef2ff;
 }
 #mox-dashboard-overlay .mox-table td {
   padding: 14px 16px;
   border-bottom: 1px solid #f1f5f9;
   vertical-align: middle;
 }
 #mox-dashboard-overlay .mox-table .mox-quiz-name {
   font-weight: 600;
   color: #1e293b;
 }
 #mox-dashboard-overlay .mox-table .mox-score {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 700;
   font-size: 15px;
 }
 #mox-dashboard-overlay .mox-table .mox-score .fa {
   color: #22c55e;
 }
 
 #mox-dashboard-overlay .mox-load-more-wrap {
   text-align: center;
   margin-top: 20px;
   padding-top: 20px;
   border-top: 1px solid #e2e8f0;
 }
 
 #mox-dashboard-overlay .mox-load-more-wrap .mox-btn {
   background: linear-gradient(135deg, #8b5cf6, #6d28d9);
   color: #fff;
   border: none;
   padding: 12px 24px;
   border-radius: 12px;
   font-weight: 600;
   font-size: 14px;
   cursor: pointer;
   transition: all 0.2s ease;
   box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
 }
 
 #mox-dashboard-overlay .mox-load-more-wrap .mox-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
 }
 
 #mox-dashboard-overlay .mox-load-more-wrap .mox-btn:active {
   transform: translateY(0);
 }
 
 /* Progress Charts */
 #mox-dashboard-overlay .mox-dashboard-charts {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 20px;
   margin: 25px 0;
   padding: 20px;
   background: #f8fafc;
   border-radius: 12px;
   border: 1px solid #e0e7ff;
 }
 
 #mox-dashboard-overlay .mox-chart-section {
   background: #fff;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }
 
 #mox-dashboard-overlay .mox-chart-title {
   font-size: 16px;
   font-weight: 600;
   color: #4c51bf;
   margin: 0 0 15px 0;
   display: flex;
   align-items: center;
   gap: 8px;
 }
 
 #mox-dashboard-overlay .mox-chart-title i {
   color: #8b5cf6;
 }
 
 /* Progress Bars */
 #mox-dashboard-overlay .mox-progress-bars {
   display: flex;
   flex-direction: column;
   gap: 15px;
 }
 
 #mox-dashboard-overlay .mox-progress-item {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 #mox-dashboard-overlay .mox-progress-label {
   font-size: 14px;
   font-weight: 500;
   color: #4a5568;
   min-width: 80px;
 }
 
 #mox-dashboard-overlay .mox-progress-bar {
   flex: 1;
   height: 8px;
   background: #e2e8f0;
   border-radius: 4px;
   overflow: hidden;
   position: relative;
 }
 
 #mox-dashboard-overlay .mox-progress-fill {
   height: 100%;
   background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%);
   border-radius: 4px;
   transition: width 0.8s ease;
   position: relative;
 }
 
 #mox-dashboard-overlay .mox-progress-fill::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(
     90deg,
     transparent,
     rgba(255, 255, 255, 0.3),
     transparent
   );
   animation: shimmer 2s infinite;
 }
 
 @keyframes shimmer {
   0% { transform: translateX(-100%); }
   100% { transform: translateX(100%); }
 }
 
 #mox-dashboard-overlay .mox-progress-value {
   font-size: 14px;
   font-weight: 600;
   color: #8b5cf6;
   min-width: 40px;
   text-align: right;
 }
 
 /* Weekly Chart */
 #mox-dashboard-overlay .mox-weekly-chart {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   height: 120px;
   padding: 10px 0;
 }
 
 #mox-dashboard-overlay .mox-timeframe-selector {
   display: flex;
   gap: 10px;
   margin-bottom: 15px;
 }
 
 #mox-dashboard-overlay .mox-timeframe-button {
   background-color: #e2e8f0;
   border: none;
   padding: 8px 12px;
   border-radius: 5px;
   cursor: pointer;
   font-size: 14px;
   color: #4a5568;
   transition: all 0.3s ease;
 }
 
 #mox-dashboard-overlay .mox-timeframe-button:hover {
   background-color: #cbd5e0;
 }
 
 #mox-dashboard-overlay .mox-timeframe-button.active {
   background-color: #8b5cf6;
   color: #ffffff;
 }
 
 #mox-dashboard-overlay .mox-weekly-bar {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   flex: 1;
   max-width: 40px;
 }
 
 #mox-dashboard-overlay .mox-bar-fill {
   width: 24px;
   background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
   border-radius: 4px 4px 0 0;
   transition: height 0.8s ease;
   position: relative;
   cursor: pointer;
 }
 
 #mox-dashboard-overlay .mox-bar-fill:hover {
   background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%);
   transform: scaleY(1.05);
 }
 
 #mox-dashboard-overlay .mox-bar-label {
   font-size: 12px;
   font-weight: 500;
   color: #718096;
   text-align: center;
 }
 
 /* Mobile Responsive */
 @media (max-width: 768px) {
   #mox-dashboard-overlay .mox-dashboard-charts {
     grid-template-columns: 1fr;
     gap: 15px;
     padding: 15px;
   }
   
   #mox-dashboard-overlay .mox-chart-section {
     padding: 15px;
   }
   
   #mox-dashboard-overlay .mox-progress-item {
     flex-direction: column;
     align-items: flex-start;
     gap: 8px;
   }
   
   #mox-dashboard-overlay .mox-progress-label {
     min-width: auto;
   }
   
   #mox-dashboard-overlay .mox-progress-bar {
     width: 100%;
   }
   
   #mox-dashboard-overlay .mox-progress-value {
     text-align: left;
     margin-top: 4px;
   }
   
   #mox-dashboard-overlay .mox-weekly-chart {
     height: 100px;
     padding: 5px 0;
   }
   
   #mox-dashboard-overlay .mox-bar-fill {
     width: 20px;
   }
   
   #mox-dashboard-overlay .mox-bar-label {
     font-size: 11px;
   }
 }
 
 @media (max-width: 640px) {
   #mox-dashboard-overlay .mox-dashboard-summary {
     grid-template-columns: 1fr 1fr 1fr;
   }
   #mox-dashboard-overlay .mox-summary-card {
     padding: 12px 8px;
   }
   #mox-dashboard-overlay .mox-summary-icon {
     font-size: 20px;
     margin-bottom: 4px;
   }
   #mox-dashboard-overlay .mox-summary-value {
     font-size: 18px;
   }
   #mox-dashboard-overlay .mox-summary-label {
     font-size: 11px;
   }
   #mox-dashboard-overlay .mox-table-wrap {
     padding: 16px;
   }
   #mox-dashboard-overlay .mox-table thead th,
   #mox-dashboard-overlay .mox-table td {
     padding: 10px 12px;
   }
   #mox-dashboard-overlay .mox-load-more-wrap .mox-btn {
     padding: 10px 20px;
     font-size: 13px;
   }
 }
 .mox-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   display: none;
   justify-content: center;
   align-items: center;
   z-index: 1000;
   visibility: hidden;
   opacity: 0;
   transition: opacity 0.3s ease, visibility 0.3s ease;
 }
 
 .mox-overlay.is-open {
   display: flex;
   visibility: visible;
   opacity: 1;
 }
 
 .mox-overlay-content {
   background-color: #fff;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   transform: translateY(-20px);
   transition: transform 0.3s ease;
   max-width: 90%;
   max-height: 90%;
   overflow: auto;
   position: relative;
 }
 
 .mox-overlay.is-open .mox-overlay-content {
   transform: translateY(0);
 }
 
 /* Bookmarks Overlay - Add Bookmark inline form */
 
 
 /* Profile Overlay */
 #mox-profile-overlay .mox-overlay-header { background: #fff; border-bottom: 1px solid #e5e7eb; }
 #mox-profile-overlay .mox-overlay-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:18px; color:#111827; }
 #mox-profile-overlay .mox-overlay-title i { color:#4b6cb7; }
 #mox-profile-overlay .mox-close-btn { border: 0; background: #f9fafb; color: #111827; border-radius: 8px; padding: 8px 10px; }
 #mox-profile-overlay .mox-close-btn:hover { background: #f3f4f6; }
 #mox-profile-overlay .mox-profile-content { padding: 12px 16px 20px; }
 #mox-profile-overlay .mox-profile-header { display:flex; align-items:center; gap:12px; padding: 8px 0 14px; border-bottom: 1px solid #eef2f7; }
 #mox-profile-overlay .mox-avatar { width: 56px; height: 56px; border-radius: 999px; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:22px; color:#fff; background: linear-gradient(135deg, #4b6cb7, #182848); box-shadow: 0 8px 18px rgba(75,108,183,0.25); overflow: hidden; }
 #mox-profile-overlay .mox-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
 .mox-profile-avatar-note { display: block; margin-top: 0.5rem; color: #6b7280; font-size: 0.75rem; }
 #mox-profile-overlay .mox-profile-name { font-size: 18px; font-weight: 700; color: #111827; }
 #mox-profile-overlay .mox-profile-username { font-size: 13px; font-weight: 500; color: #6b7280; }
 #mox-profile-overlay .mox-profile-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; padding-top: 14px; }
 #mox-profile-overlay .mox-profile-card { display:flex; align-items:flex-start; gap:10px; padding: 12px 14px; border-radius: 12px; border: 1px solid #e5e7eb; background: #ffffff; box-shadow: 0 1px 2px rgba(17,24,39,0.06); transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease; }
 #mox-profile-overlay .mox-profile-card:hover { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(17,24,39,0.10); border-color: #d1d5db; }
 #mox-profile-overlay .mox-profile-card i { font-size: 18px; color: #4b6cb7; margin-top: 2px; }
 #mox-profile-overlay .mox-profile-label { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.04em; }
 #mox-profile-overlay .mox-profile-value { font-size: 16px; font-weight: 600; color: #111827; }
 
 /* Extended sections */
 #mox-profile-overlay .mox-profile-sections { margin-top: 16px; display: flex; flex-direction: column; gap: 14px; }
 #mox-profile-overlay .mox-section { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; box-shadow: 0 1px 2px rgba(17,24,39,0.06); }
 #mox-profile-overlay .mox-section-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color:#111827; padding: 12px 14px; border-bottom: 1px solid #eef2f7; }
 #mox-profile-overlay .mox-section-title i { color:#4b6cb7; }
 #mox-profile-overlay .mox-section-body { padding: 12px 14px; }
 #mox-profile-overlay .mox-field { display:flex; flex-direction: column; gap:6px; margin-bottom: 10px; }
 #mox-profile-overlay .mox-field-inline { display:flex; align-items:center; gap:10px; flex-wrap: wrap; }
 #mox-profile-overlay .mox-field-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
 #mox-profile-overlay .mox-field label { font-size: 12px; color:#374151; font-weight:600; }
 #mox-profile-overlay .mox-field input[type="text"],
 #mox-profile-overlay .mox-field input[type="url"],
 #mox-profile-overlay .mox-field textarea,
 #mox-profile-overlay .mox-field select,
 #mox-profile-overlay input[type="file"] { border:1px solid #d1d5db; border-radius: 8px; padding: 8px 10px; font-size: 14px; color:#111827; background:#fff; }
 #mox-profile-overlay .mox-field textarea { resize: vertical; }
 
 #mox-profile-overlay .mox-options-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
 #mox-profile-overlay .mox-option { display:flex; align-items:center; gap:8px; font-size: 14px; color:#111827; }
 
 #mox-profile-overlay .mox-actions-row { display:flex; align-items:center; gap:10px; flex-wrap: wrap; }
 #mox-profile-overlay .mox-actions-end { justify-content: flex-end; margin-top: 10px; }
 
 #mox-profile-overlay .mox-switch { display:flex; align-items:center; gap:8px; }
 #mox-profile-overlay .mox-switch-label { font-size: 12px; color:#374151; font-weight:600; }
 #mox-profile-overlay .mox-switch-ui { width:36px; height:20px; border-radius:999px; background:#d1d5db; position:relative; }
 #mox-profile-overlay .mox-switch-ui::after { content:""; position:absolute; left:2px; top:2px; width:16px; height:16px; border-radius:999px; background:#fff; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
 #mox-profile-overlay .mox-switch-note { font-size: 12px; color:#6b7280; }
 
 #mox-profile-overlay .mox-avatar-upload { display:flex; align-items:center; gap:12px; }
 #mox-profile-overlay .mox-avatar-lg { width:64px; height:64px; font-size:24px; }
 
 #mox-profile-overlay .mox-section-danger .mox-section-title { color:#b91c1c; }
 
 @media (max-width: 640px) {
   #mox-profile-overlay .mox-profile-grid { grid-template-columns: 1fr; }
   #mox-profile-overlay .mox-avatar { width: 52px; height: 52px; font-size: 20px; }
   #mox-profile-overlay .mox-profile-name { font-size: 17px; }
   #mox-profile-overlay .mox-field-grid { grid-template-columns: 1fr; }
   #mox-profile-overlay .mox-options-grid { grid-template-columns: 1fr; }
 
 /* Notifications Overlay Styles */
 #mox-notifications-overlay .mox-overlay-header { background: #fff; border-bottom: 1px solid #e5e7eb; }
 #mox-notifications-overlay .mox-overlay-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:18px; color:#111827; }
 #mox-notifications-overlay .mox-overlay-title i { color:#4b6cb7; }
 
 #mox-bookmarks-overlay .mox-overlay-content { border-radius: 16px 16px 0 0; box-shadow: 0 -6px 24px rgba(0,0,0,.12); }
 #mox-bookmarks-overlay .mox-bookmarks-content { padding: 20px; }
 #mox-bookmarks-overlay .mox-bookmarks-list { display: flex; flex-direction: column; gap: 12px; }
 #mox-bookmarks-overlay .mox-bookmark-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 12px; background: #ffffff; box-shadow: 0 2px 8px rgba(17,24,39,0.06); }
 #mox-bookmarks-overlay .mox-bookmark-link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; flex: 1; }
 #mox-bookmarks-overlay .mox-bookmark-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; background:#f3f4f6; border:1px solid #e5e7eb; color:#374151; overflow:hidden; }
 #mox-bookmarks-overlay .mox-bookmark-icon img { width:100%; height:100%; object-fit:cover; }
 #mox-bookmarks-overlay .mox-bookmark-title { font-weight:700; color:#111827; }
 #mox-bookmarks-overlay .mox-bookmark-meta { font-size:12px; color:#6b7280; }
 #mox-bookmarks-overlay .mox-remove-bookmark { margin-left:auto; display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:8px; background:#f9fafb; border:1px solid #e5e7eb; color:#6b7280; cursor:pointer; }
 #mox-bookmarks-overlay .mox-remove-bookmark:hover { background:#fee2e2; border-color:#fecaca; color:#b91c1c; }
 #mox-bookmarks-overlay .mox-empty { text-align:center; padding: 40px 20px; color:#6b7280; }
 #mox-bookmarks-overlay .mox-empty i { font-size:42px; opacity:.4; margin-bottom:12px; }
 #mox-notifications-overlay .mox-close-btn { border: 0; background: #f9fafb; color: #111827; border-radius: 8px; padding: 8px 10px; }
 #mox-notifications-overlay .mox-close-btn:hover { background: #f3f4f6; }
 #mox-notifications-overlay .mox-notifications-content { padding: 20px; }
 #mox-events-overlay .mox-overlay-content { border-radius: 16px 16px 0 0; box-shadow: 0 -6px 24px rgba(0,0,0,.12); }
 #mox-events-overlay .mox-events-content { padding: 20px; }
 #mox-community-overlay .mox-overlay-content { border-radius: 16px 16px 0 0; box-shadow: 0 -6px 24px rgba(0,0,0,.12); }
 #mox-community-overlay .mox-community-content { padding: 20px; }
 #mox-notifications-overlay .mox-overlay-content { border-radius: 16px 16px 0 0; box-shadow: 0 -6px 24px rgba(0,0,0,.12); }
 #mox-notifications-overlay .mox-notifications-list { padding: 12px 14px; display: flex; flex-direction: column; gap: 12px; }
 #mox-notifications-overlay .mox-notification-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 12px; background: #ffffff; box-shadow: 0 2px 8px rgba(17,24,39,0.06); transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease; }
 #mox-notifications-overlay .mox-notification-item:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(17,24,39,0.12); border-color: #d1d5db; background: #fafafa; }
 #mox-notifications-overlay .mox-notification-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; background:#f3f4f6; border:1px solid #e5e7eb; color:#374151; }
 #mox-notifications-overlay .mox-notification-content { flex: 1; display: flex; flex-direction: column; gap: 4px; }
 #mox-notifications-overlay .mox-notification-title { font-weight: 700; color: #111827; }
 #mox-notifications-overlay .mox-notification-meta { font-size: 12px; color: #6b7280; }
 #mox-notifications-overlay .mox-remove-notification { margin-left: auto; display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:8px; background:#f9fafb; border:1px solid #e5e7eb; color:#6b7280; cursor:pointer; }
 #mox-notifications-overlay .mox-remove-notification:hover { background:#eef2ff; border-color:#e0e7ff; color:#4338ca; }
 
 #mox-notifications-overlay .mox-remove-notification {
     margin-left: auto;
     padding: 4px 8px;
     border-radius: 50%;
     background-color: #f3f4f6;
     color: #6b7280;
     cursor: pointer;
     font-size: 14px;
     transition: background-color 120ms ease;
 }
 
 #mox-notifications-overlay .mox-remove-notification:hover {
     background-color: #e5e7eb;
     color: #111827;
 }
 
 /* Badges Overlay Styles */
 #mox-badges-overlay .mox-overlay-header { background: #fff; border-bottom: 1px solid #e5e7eb; }
 #mox-badges-overlay .mox-overlay-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:18px; color:#111827; }
 #mox-badges-overlay .mox-overlay-title i { color:#f97316; } /* Orange color for badges icon */
 #mox-badges-overlay .mox-close-btn { border: 0; background: #f9fafb; color: #111827; border-radius: 8px; padding: 8px 10px; }
 #mox-badges-overlay .mox-close-btn:hover { background: #f3f4f6; }
 #mox-badges-overlay .mox-badges-content { padding: 20px; }
 
 /* Messages Overlay Styles */
 #mox-messages-overlay .mox-overlay-header { background: #fff; border-bottom: 1px solid #e5e7eb; }
 #mox-messages-overlay .mox-overlay-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:18px; color:#111827; }
 #mox-messages-overlay .mox-overlay-title i { color:#06b6d4; } /* Cyan color for messages icon */
 #mox-messages-overlay .mox-close-btn { border: 0; background: #f9fafb; color: #111827; border-radius: 8px; padding: 8px 10px; }
 #mox-messages-overlay .mox-close-btn:hover { background: #f3f4f6; }
 #mox-messages-overlay .mox-messages-content { padding: 20px; }
 
 .mox-message-item {
     background-color: #f0f2f5;
     border-radius: 12px;
     padding: 15px;
     margin-bottom: 10px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
     font-size: 1.0em;
     line-height: 1.4;
     color: #333;
 }
 
 .mox-message-item:last-child {
     margin-bottom: 0;
 }
 
 .mox-message-item p {
     margin: 0;
     padding: 0;
 }
 }
 
 /* Top 3 Quizzes Styling */
 .mox-top-quizzes {
     margin-top: 15px;
 }
 
 .mox-quiz-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 8px 0;
     border-bottom: 1px solid #e5e7eb;
 }
 
 .mox-quiz-item:last-child {
     border-bottom: none;
 }
 
 .mox-quiz-name {
     font-size: 14px; /* Matching .mox-progress-label */
     font-weight: 600;
     color: #374151;
 }
 
 .mox-quiz-percentage {
     font-size: 12px; /* Matching .mox-progress-value */
     color: #6b7280;
 }
 .mox-appbar:not(.mox-appbar-global) { display: none; }
 #mox-dm-overlay .mox-overlay-header { background: linear-gradient(135deg, #4b6cb7, #3f5aa0); color: #fff; border-bottom: none; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
 #mox-dm-overlay .mox-overlay-title { color: #fff; }
 #mox-dm-overlay .mox-close-btn { background: rgba(255,255,255,.15); border: none; color: #fff; }
 #mox-dm-overlay .mox-close-btn:hover { background: rgba(255,255,255,.25); }
 #mox-dm-overlay .mox-overlay-content { border-radius: 16px 16px 0 0; box-shadow: 0 -6px 24px rgba(0,0,0,.12); }
 #mox-dm-overlay .mox-dm-content { padding: 16px; flex: 1; display: flex; flex-direction: column; }
 #mox-dm-overlay .mox-section { height: 100%; display: flex; flex-direction: column; }
 #mox-dm-overlay .mox-section-title { padding: 12px 14px; border-bottom: 1px solid #eef2f7; }
 #mox-dm-overlay .mox-section-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
 #mox-dm-overlay .mox-chat-messages { flex: 1; overflow-y: auto; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px; }
 #mox-dm-overlay .mox-message { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 8px; }
 #mox-dm-overlay .mox-message.mox-out { justify-content: flex-end; }
 #mox-dm-overlay .mox-message.mox-in { justify-content: flex-start; }
 #mox-dm-overlay .mox-bubble { max-width: 80%; padding: 10px 12px; border-radius: 16px; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
 #mox-dm-overlay .mox-message.mox-out .mox-bubble { background: linear-gradient(135deg, #4b6cb7, #3f5aa0); color: #ffffff; border-radius: 16px 16px 4px 16px; }
 #mox-dm-overlay .mox-message.mox-in .mox-bubble { background: #ffffff; border: 1px solid #e5e7eb; color: #111827; border-radius: 16px 16px 16px 4px; }
 #mox-dm-overlay .mox-time { font-size: 11px; color: #6b7280; }
 #mox-dm-overlay .mox-chat-input { position: sticky; bottom: 0; background: #fff; display: flex; flex-direction: column; align-items: stretch; gap: 10px; border-top: 1px solid #e5e7eb; padding: 10px 0; }
 #mox-dm-overlay .mox-actions-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
 #mox-dm-overlay #mox-dm-send-btn { align-self: flex-end; }
 #mox-dm-overlay #mox-dm-text { flex: 1; border: 1px solid #d1d5db; border-radius: 12px; padding: 10px 12px; }
 #mox-dm-overlay #mox-dm-send-btn { border-radius: 999px; padding: 10px 16px; }

/* YouTube Videos Section */
.mox-youtube-section {
    padding: 60px 0;
    background: #ffffff;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    box-shadow: none;
    position: relative;
}

.mox-youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mox-youtube-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}

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

.mox-youtube-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.mox-youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mox-youtube-card:hover .mox-youtube-thumbnail img {
    opacity: 1;
    transform: scale(1.05);
}

.mox-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.85);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.mox-youtube-card:hover .mox-play-overlay {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

/* Reviews Carousel Section */
.mox-reviews-section {
    padding: 80px 0;
    background: #f1f5f9;
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
    border: none;
    position: relative;
}

.mox-reviews-carousel-wrapper {
    position: relative;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mox-reviews-carousel-track-container {
    overflow: hidden;
}

.mox-reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.mox-review-slide {
    flex: 0 0 33.3333%;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .mox-review-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .mox-review-slide {
        flex: 0 0 100%;
    }
    .mox-reviews-carousel-wrapper {
        padding: 0 30px;
    }
}

.mox-review-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef2f7;
}

.mox-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.mox-reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
}

.mox-reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mox-reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #1a202c;
}

.mox-review-rating {
    color: #ecc94b;
    font-size: 0.8rem;
}

.mox-review-rating .star {
    opacity: 0.3;
}

.mox-review-rating .fa-star.filled {
    opacity: 1;
}

.mox-review-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Carousel Navigation */
.mox-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: #4b6cb7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.mox-carousel-nav:hover {
    background: #4b6cb7;
    color: white;
}

.mox-prev-btn { left: 0; }
.mox-next-btn { right: 0; }

.mox-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.mox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mox-dot.active {
    background: #4b6cb7;
    transform: scale(1.2);
}
.mox-card-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mox-quiz-card-modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f7;
}

.mox-quiz-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mox-quiz-card-modern .mox-quiz-card-header {
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mox-quiz-card-modern .mox-quiz-title {
    margin: 0;
    font-size: 1.2rem;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}

.mox-quiz-card-modern .mox-quiz-difficulty {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.mox-difficulty-easy { background: #c6f6d5; color: #22543d; }
.mox-difficulty-medium { background: #feebc8; color: #744210; }
.mox-difficulty-hard { background: #fed7d7; color: #822727; }

.mox-quiz-card-modern .mox-quiz-card-body {
    padding: 20px;
    flex: 1;
}

.mox-quiz-card-modern .mox-quiz-description {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mox-quiz-card-modern .mox-quiz-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mox-quiz-card-modern .mox-stars {
    color: #ecc94b;
    margin-right: 8px;
    font-size: 1.1rem;
}

.mox-quiz-card-modern .mox-rating-text {
    font-size: 0.85rem;
    color: #718096;
}

.mox-quiz-card-modern .mox-quiz-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mox-quiz-card-modern .mox-quiz-meta-item {
    display: flex;
    flex-direction: column;
}

.mox-quiz-card-modern .mox-meta-label {
    font-size: 0.75rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.mox-quiz-card-modern .mox-meta-value {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 600;
}

.mox-quiz-card-modern .mox-quiz-card-footer {
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
}

.mox-quiz-card-modern .mox-quiz-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #4299e1;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.mox-quiz-card-modern .mox-quiz-button:hover {
    background: #3182ce;
    color: #fff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .mox-card-grid-modern {
        grid-template-columns: 1fr;
        margin-left: -15px;
        margin-right: -15px;
    }
    .mox-quiz-card-modern {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .mox-section {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    /* Make quiz cards larger on mobile */
    .mox-quiz-card-modern .mox-quiz-title {
        font-size: 1.4rem;
    }
    .mox-quiz-card-modern .mox-quiz-description {
        font-size: 1rem;
    }
    .mox-quiz-card-modern .mox-meta-value {
        font-size: 1rem;
    }
    .mox-quiz-card-modern .mox-quiz-button {
        font-size: 1.1rem;
        padding: 14px;
    }
}
