@import"https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;500;600;700;800;900&display=swap";:root{--primary-orange: #F48434;--primary-purple: #7C34D9;--primary-hover: #e0742f;--accent-light: #fdf2e8;--dark-text: #1f2937;--secondary-gray: #e5e7eb;--font-family: "Noto Sans Arabic", "Inter", sans-serif;--card-shadow: 0 10px 30px -5px rgba(22, 22, 22, .08);--card-shadow-hover: 0 10px 30px -5px rgba(22, 22, 22, .15);--container-max-width: 1280px;--section-padding: 5rem 0}*{box-sizing:border-box}body{font-family:var(--font-family);color:var(--dark-text);background-color:#fff;margin:0;padding:0}.container{max-width:var(--container-max-width);margin:0 auto;padding:0 1rem}.card-shadow{box-shadow:var(--card-shadow)}.card-shadow-hover{box-shadow:var(--card-shadow-hover)}.rounded-xl{border-radius:.75rem}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.btn-primary{background:var(--primary-orange);color:#fff;padding:.75rem 1.5rem;border-radius:.5rem;font-weight:700;border:none;cursor:pointer;transition:all .3s;text-decoration:none;display:inline-block}.btn-primary:hover{background:var(--primary-hover);transform:translateY(-2px);box-shadow:0 4px 12px #f4843466}.btn-gradient{background:linear-gradient(to right,var(--primary-purple),var(--primary-orange));color:#fff;padding:.75rem 1.5rem;border-radius:.75rem;font-weight:700;border:none;cursor:pointer;transition:all .3s;text-decoration:none;display:inline-block}.btn-gradient:hover{box-shadow:0 8px 20px #7c34d966;transform:scale(1.05)}.btn-secondary{background:#fff;color:var(--primary-orange);padding:.75rem 1.5rem;border-radius:.5rem;font-weight:600;border:2px solid var(--primary-orange);cursor:pointer;transition:all .3s;text-decoration:none;display:inline-block}.btn-secondary:hover{background:var(--accent-light)}.btn-success{background:#10b981;color:#fff;padding:.75rem 1.5rem;border-radius:.5rem;font-weight:600;border:none;cursor:pointer;transition:all .3s}.btn-success:hover{background:#059669}.btn-danger{background:#ef4444;color:#fff;padding:.75rem 1.5rem;border-radius:.5rem;font-weight:600;border:none;cursor:pointer;transition:all .3s}.btn-danger:hover{background:#dc2626}.card{background:#fff;border-radius:1rem;padding:1.5rem;box-shadow:var(--card-shadow);transition:all .3s}.card:hover{box-shadow:var(--card-shadow-hover);transform:translateY(-4px)}.card-gradient{background:linear-gradient(to bottom right,#7c34d91a,#f484341a);border:2px solid var(--primary-orange)}.navbar{background:#fff;box-shadow:0 4px 6px -1px #0000001a;position:sticky;top:0;z-index:50;transition:all .3s}.navbar-scrolled{box-shadow:0 4px 6px -1px #0000001a}.navbar-container{max-width:var(--container-max-width);margin:0 auto;padding:0 1rem;display:flex;align-items:center;justify-content:space-between;height:5rem}.navbar-logo{height:3.5rem;width:auto}.navbar-menu{display:flex;align-items:center;gap:2rem}.navbar-link{color:#374151;font-weight:600;text-decoration:none;transition:color .3s}.navbar-link:hover{color:var(--primary-orange)}.hero{min-height:80vh;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;background:linear-gradient(-45deg,#ffffff,#ffffff,#fef3c7,var(--primary-orange),#ffffff,#ffffff,#fed7aa,#ffffff);background-size:600% 600%;animation:gradientShift 3s linear infinite}@keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}.hero-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#ffffffbf;z-index:0}.hero-content{position:relative;z-index:10;text-align:center;max-width:48rem;padding:2rem 1rem}.hero-title{font-size:2.5rem;font-weight:900;color:var(--dark-text);margin-bottom:1.5rem;line-height:1.2}.hero-subtitle{font-size:1.25rem;color:#4b5563;margin-bottom:2rem;line-height:1.6}.section{padding:var(--section-padding)}.section-gray{background-color:#f9fafb}.section-gradient{background:linear-gradient(to bottom right,var(--primary-purple),var(--primary-orange));color:#fff}.section-title{font-size:2rem;font-weight:900;color:var(--dark-text);margin-bottom:1rem;text-align:center}.section-subtitle{font-size:1.125rem;color:#6b7280;text-align:center;max-width:48rem;margin:0 auto 3rem}.form-label{display:block;font-weight:600;color:var(--dark-text);margin-bottom:.5rem}.form-input{width:100%;padding:.75rem;border:2px solid #e5e7eb;border-radius:.5rem;font-size:1rem;transition:all .3s;font-family:var(--font-family)}.form-input:focus{outline:none;border-color:var(--primary-orange);box-shadow:0 0 0 3px #f484341a}.form-textarea{width:100%;padding:.75rem;border:2px solid #e5e7eb;border-radius:.5rem;font-size:1rem;transition:all .3s;font-family:var(--font-family);resize:vertical;min-height:120px}.form-textarea:focus{outline:none;border-color:var(--primary-orange);box-shadow:0 0 0 3px #f484341a}.badge{display:inline-block;padding:.25rem .75rem;border-radius:9999px;font-size:.875rem;font-weight:700}.badge-orange{background:var(--primary-orange);color:#fff}.badge-purple{background:var(--primary-purple);color:#fff}.badge-green{background:#10b981;color:#fff}.badge-gradient{background:linear-gradient(to right,var(--primary-purple),var(--primary-orange));color:#fff}.footer{background:var(--dark-text);color:#fff;padding:3rem 0}.footer-container{max-width:var(--container-max-width);margin:0 auto;padding:0 1rem;display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:1.5rem}.footer-logo{height:3rem;width:auto;filter:brightness(0) invert(1)}.footer-link{color:#9ca3af;text-decoration:none;transition:color .3s}.footer-link:hover{color:var(--primary-orange)}@media (min-width: 768px){.hero-title{font-size:3rem}.section-title{font-size:2.5rem}.footer-container{flex-direction:row}}@media (min-width: 1024px){html{font-size:80%}.hero-title{font-size:3.2rem!important}.section-title{font-size:2.4rem!important}.hero-subtitle{font-size:1rem!important}.section-subtitle{font-size:.9rem!important}.navbar-container{height:4rem!important}.navbar-logo{height:2.8rem!important}.footer-logo{height:2.4rem!important}.btn-primary,.btn-gradient,.btn-secondary,.btn-success,.btn-danger{padding:.6rem 1.2rem!important;font-size:.875rem!important}.card{padding:1.2rem!important}.form-input,.form-textarea{padding:.6rem!important;font-size:.875rem!important}.badge{padding:.2rem .6rem!important;font-size:.7rem!important}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}.animate-float{animation:float 3s ease-in-out infinite}.grid{display:grid;gap:1.5rem}.grid-1{grid-template-columns:1fr}.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}@media (max-width: 768px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}@media (min-width: 769px) and (max-width: 1024px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}@keyframes slideUp{0%{opacity:0;transform:translateY(20px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.alert-overlay{animation:fadeIn .2s ease-out}.alert-modal{animation:slideUp .3s ease-out}@media (max-width: 640px){.alert-modal{max-width:95%!important;margin:1rem}.alert-modal>div:first-child{padding:1.25rem 1.5rem!important;flex-direction:column;text-align:center}.alert-modal>div:first-child>div:last-child{padding:1rem 1.5rem!important;flex-direction:column}.alert-modal>div:last-child button{width:100%!important}}.auth-container{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#667eea,#764ba2);padding:2rem}.auth-card{background:#fff;border-radius:10px;padding:2.5rem;width:100%;max-width:450px;box-shadow:0 10px 40px #0000001a}.auth-card h1{margin-bottom:.5rem;color:#333;font-size:2rem}.auth-subtitle{color:#666;margin-bottom:2rem}.auth-form{display:flex;flex-direction:column;gap:1.5rem}.form-group{display:flex;flex-direction:column;gap:.5rem}.form-group label{font-weight:500;color:#333}.form-group input{padding:.75rem;border:2px solid #e0e0e0;border-radius:5px;font-size:1rem;transition:border-color .2s}.form-group input:focus{outline:none;border-color:#667eea}.form-group small{color:#999;font-size:.85rem}.role-selector{display:flex;gap:1rem;margin-top:.5rem}.role-option{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;border:2px solid #e0e0e0;border-radius:5px;cursor:pointer;transition:all .2s;flex:1}.role-option:hover{border-color:#667eea;background:#f8f9ff}.role-option input[type=radio]{margin:0;cursor:pointer}.role-option input[type=radio]:checked+span{font-weight:600;color:#667eea}.auth-button{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border:none;padding:.75rem;border-radius:5px;font-size:1rem;font-weight:600;cursor:pointer;transition:transform .2s,box-shadow .2s;margin-top:.5rem}.auth-button:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 5px 15px #667eea66}.auth-button:disabled{opacity:.6;cursor:not-allowed;transform:none}.auth-button:active:not(:disabled){transform:translateY(0)}.auth-footer{text-align:center;margin-top:1.5rem;color:#666}.auth-footer a{color:#667eea;text-decoration:none;font-weight:500}.auth-footer a:hover{text-decoration:underline}.error-message{background:#fee;color:#c33;padding:.75rem;border-radius:5px;margin-bottom:1rem;border:1px solid #fcc}.btn-link{display:inline-block;color:#667eea;text-decoration:none;font-weight:600;padding:.5rem 1rem;border:2px solid #667eea;border-radius:5px;transition:all .2s}.btn-link:hover{background:#667eea;color:#fff}.demo-accounts{margin-top:2rem;padding-top:2rem;border-top:1px solid #e0e0e0}.demo-accounts h3{font-size:.9rem;color:#666;margin-bottom:.5rem}.demo-accounts p{font-size:.85rem;color:#999;margin:.25rem 0}@media (max-width: 768px){.auth-container{padding:.75rem .5rem!important;min-height:100vh}.auth-card{padding:1.5rem 1rem!important;border-radius:.75rem!important;margin:0;max-width:100%}.auth-card h1{font-size:1.375rem!important;margin-bottom:.5rem!important}.auth-subtitle{font-size:.8125rem!important;margin-bottom:1.25rem!important}.auth-form{gap:1rem!important}.form-group{gap:.5rem!important}.form-group label{font-size:.875rem!important}.form-group input{font-size:16px!important;padding:.75rem!important;min-height:44px;border-radius:.5rem!important}.role-selector{flex-direction:column;gap:.625rem!important}.role-option{padding:.875rem!important;min-height:48px;font-size:.875rem!important}.auth-button{width:100%;padding:.75rem!important;font-size:.875rem!important;min-height:44px;margin-top:.5rem}.auth-footer{margin-top:1.25rem!important;font-size:.8125rem!important}.auth-footer a{font-size:.8125rem!important;padding:.5rem;min-height:44px;display:inline-flex;align-items:center}.error-message{padding:.75rem!important;font-size:.8125rem!important;margin-bottom:.875rem!important}.demo-accounts{margin-top:1.25rem!important;padding-top:1.25rem!important}.demo-accounts h3{font-size:.8125rem!important}.demo-accounts p{font-size:.75rem!important}}.dashboard{max-width:1280px;margin:0 auto;padding:2rem 1rem}.dashboard-header{margin-bottom:2rem;text-align:center}.dashboard-header h1{font-size:2.5rem;font-weight:900;color:#1f2937;margin-bottom:.5rem}.dashboard-header p{color:#6b7280;font-size:1.125rem}.earnings-summary,.summary-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin-bottom:3rem}.summary-card{background:#fff;border-radius:1rem;padding:2rem;box-shadow:0 10px 30px -5px #16161614;transition:all .3s;text-align:center}.summary-card:hover{box-shadow:0 10px 30px -5px #16161626;transform:translateY(-4px)}.summary-card h3{font-size:1rem;font-weight:600;color:#6b7280;margin-bottom:1rem}.summary-card .amount{font-size:2.5rem;font-weight:900;color:#1f2937;margin-bottom:1rem}.summary-card small{display:block;color:#6b7280;font-size:.875rem;margin-top:.5rem}.admin-tabs,.dashboard-tabs{display:flex;gap:.5rem;margin-bottom:2rem;flex-wrap:wrap;border-bottom:2px solid #e5e7eb;padding-bottom:.5rem}.admin-tabs button,.dashboard-tabs button{background:transparent;border:none;padding:.75rem 1.5rem;font-weight:600;color:#6b7280;cursor:pointer;border-radius:.5rem .5rem 0 0;transition:all .3s;font-size:.875rem}.admin-tabs button:hover,.dashboard-tabs button:hover{background:#f9fafb;color:#f48434}.admin-tabs button.active,.dashboard-tabs button.active{background:#fff;color:#f48434;border-bottom:3px solid #F48434;margin-bottom:-2px}.admin-section,.dashboard-section{background:#fff;border-radius:1rem;padding:2rem;box-shadow:0 10px 30px -5px #16161614;margin-bottom:2rem}.admin-section h2,.dashboard-section h2{font-size:1.75rem;font-weight:900;color:#1f2937;margin-bottom:1.5rem}.admin-list,.courses-list{display:flex;flex-direction:column;gap:1.5rem}.admin-item,.course-item{background:#f9fafb;border-radius:.75rem;padding:1.5rem;border:1px solid #e5e7eb;transition:all .3s}.admin-item:hover,.course-item:hover{border-color:#f48434;box-shadow:0 4px 12px #f484341a}.item-info,.course-info{margin-bottom:1rem}.item-info h3,.course-info h3{font-size:1.25rem;font-weight:700;color:#1f2937;margin-bottom:.5rem}.item-info p,.course-info p{color:#6b7280;font-size:.875rem;margin:.25rem 0}.item-actions,.course-actions{display:flex;gap:.75rem;flex-wrap:wrap}.status-badge{display:inline-block;padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:700;text-transform:uppercase}.status-badge.status-pending{background:#fef3c7;color:#92400e}.status-badge.status-approved{background:#d1fae5;color:#065f46}.status-badge.status-rejected{background:#fee2e2;color:#991b1b}.status-badge.status-published{background:#dbeafe;color:#1e40af}.status-badge.status-draft{background:#f3f4f6;color:#374151}.settings-form{max-width:600px}.form-group label{display:block;font-weight:600;color:#1f2937;margin-bottom:.5rem}.form-group label small{display:block;font-weight:400;color:#6b7280;font-size:.875rem;margin-top:.25rem}.form-group input,.form-group textarea,.form-group select{width:100%;padding:.75rem;border:2px solid #e5e7eb;border-radius:.5rem;font-size:1rem;transition:all .3s;font-family:Noto Sans Arabic,sans-serif}.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:#f48434;box-shadow:0 0 0 3px #f484341a}.form-help{font-size:.875rem;color:#6b7280;margin-top:.5rem}.form-actions{margin-top:2rem;display:flex;gap:1rem}.empty-state{text-align:center;padding:3rem 1rem;color:#6b7280}.empty-state p{font-size:1.125rem;margin-bottom:1rem}.error-message{background:#fef2f2;border:1px solid #fecaca;color:#dc2626;padding:1rem;border-radius:.5rem;margin-bottom:1.5rem}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000;padding:1rem}.modal-content{background:#fff;border-radius:1rem;padding:2rem;max-width:500px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 20px 25px -5px #0000001a}.modal-content h2{font-size:1.5rem;font-weight:900;color:#1f2937;margin-bottom:1.5rem}.modal-actions{display:flex;gap:1rem;margin-top:1.5rem;justify-content:flex-end}.payment-proof{margin-top:1rem;padding:1rem;background:#fff;border-radius:.5rem;border:1px solid #e5e7eb}.payment-proof img{max-width:100%;border-radius:.5rem;margin-top:.5rem}.rejection-note-prominent,.restriction-notice{background:#fef2f2;border:2px solid #fecaca;border-radius:.75rem;padding:1.5rem;margin:1rem 0}.rejection-note-prominent strong,.restriction-notice strong{display:block;color:#dc2626;font-size:1.125rem;margin-bottom:.5rem}.rejection-note-prominent p,.restriction-notice p{color:#991b1b;margin:.5rem 0}.loading{display:flex;justify-content:center;align-items:center;padding:3rem;color:#6b7280;font-size:1.125rem}@media (max-width: 768px){.dashboard{padding:.75rem .5rem!important}.dashboard-header{margin-bottom:1.25rem!important;text-align:center}.dashboard-header h1{font-size:1.5rem!important;margin-bottom:.5rem!important;line-height:1.2}.dashboard-header p{font-size:.8125rem!important}.earnings-summary,.summary-cards{grid-template-columns:1fr!important;gap:.75rem!important;margin-bottom:1.25rem!important}.summary-card{padding:1rem!important;border-radius:.75rem!important}.summary-card h3{font-size:.8125rem!important;margin-bottom:.625rem!important}.summary-card .amount{font-size:1.5rem!important;margin-bottom:.625rem!important}.admin-tabs,.dashboard-tabs{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;margin-bottom:1.25rem!important;padding-bottom:.5rem}.admin-tabs::-webkit-scrollbar,.dashboard-tabs::-webkit-scrollbar{display:none}.admin-tabs button,.dashboard-tabs button{white-space:nowrap;flex-shrink:0;padding:.75rem 1rem!important;font-size:.8125rem!important;min-height:44px}.admin-section,.dashboard-section{padding:1rem!important;border-radius:.75rem!important;margin-bottom:1.25rem!important}.admin-section h2,.dashboard-section h2{font-size:1.125rem!important;margin-bottom:.875rem!important}.admin-list,.courses-list{gap:.75rem!important}.admin-item,.course-item{padding:1rem!important;border-radius:.625rem!important}.item-info h3,.course-info h3{font-size:1rem!important;margin-bottom:.5rem!important}.item-info p,.course-info p{font-size:.8125rem!important;line-height:1.5}.item-actions,.course-actions{flex-direction:column;gap:.625rem!important;width:100%}.item-actions button,.course-actions button{width:100%;min-height:44px;padding:.75rem!important;font-size:.875rem!important}.status-badge{padding:.3125rem .625rem!important;font-size:.75rem!important;display:inline-block;margin-top:.5rem}.form-group{margin-bottom:1rem!important}.form-group input,.form-group textarea,.form-group select{font-size:16px!important;padding:.75rem!important;min-height:44px}.form-actions{flex-direction:column;gap:.625rem!important;margin-top:1.25rem!important}.form-actions button{width:100%;min-height:44px}.empty-state{padding:1.5rem .75rem!important}.empty-state p{font-size:.875rem!important;margin-bottom:.875rem!important}.error-message{padding:.75rem!important;margin-bottom:1rem!important;font-size:.8125rem!important}.modal-content{padding:1.25rem .75rem!important;border-radius:1rem 1rem 0 0!important;max-height:90vh}.modal-content h2{font-size:1.125rem!important;margin-bottom:1rem!important}.modal-actions{flex-direction:column-reverse;gap:.625rem!important;margin-top:1.25rem!important}.modal-actions button{width:100%;min-height:44px}.payment-proof{padding:.75rem!important}.payment-proof img{max-width:100%;height:auto}div[style*="gridTemplateColumns: 'repeat(auto-fill"]{grid-template-columns:repeat(2,1fr)!important;gap:1.25rem!important;padding:0 .25rem}div[style*="background: 'white'"][style*="borderRadius: '1rem'"]{margin-bottom:.75rem;box-shadow:0 4px 12px #00000014!important}div[style*="height: '200px'"]{height:150px!important}div[style*="padding: '1.5rem'"]{padding:1.25rem!important}div[style*="padding: '1.5rem'"] h3{font-size:1.0625rem!important;margin-bottom:.75rem!important;line-height:1.5;padding:.25rem 0}div[style*="padding: '1.5rem'"] p{margin-bottom:1rem!important;padding:.25rem 0}div[style*="background: '#fef2f2'"]{padding:1rem!important;margin-bottom:1rem!important;border-radius:.75rem!important}div[style*="marginTop: 'auto'"]{padding-top:1.25rem!important}}.earnings-grid-responsive{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}@media (max-width: 1200px){.earnings-grid-responsive{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.earnings-grid-responsive{grid-template-columns:1fr;gap:.75rem!important}}.profile-images-grid-responsive{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}@media (max-width: 768px){.profile-images-grid-responsive{grid-template-columns:1fr;gap:1rem!important}.profile-settings-section{padding:1rem!important}.profile-settings-header{padding:1rem!important;margin-bottom:1rem!important}.profile-settings-header h2{font-size:1.125rem!important}.form-section{margin-bottom:1rem!important;padding:.875rem!important}.form-section-title{font-size:1rem!important;margin-bottom:.75rem!important}.form-input,.form-textarea{font-size:16px!important;padding:.75rem!important;min-height:44px}.image-upload-grid{gap:.75rem!important}.image-preview-circle,.image-preview-rectangle{width:100px!important;height:100px!important}.course-card{padding:1rem!important;border-radius:.75rem!important}.course-card h3{font-size:1rem!important;margin-bottom:.5rem!important}.course-card p{font-size:.8125rem!important}.stats-card{padding:1rem!important;border-radius:.75rem!important}.stats-card h3{font-size:.8125rem!important}.stats-card .amount{font-size:1.5rem!important}div[style*="maxWidth: '1400px'"]{padding:1rem .75rem!important}div[style*="display: 'flex'"][style*="justifyContent: 'space-between'"]{flex-direction:column!important;align-items:flex-start!important;gap:1rem!important;margin-bottom:1.5rem!important}h1[style*="fontSize: '2.5rem'"]{font-size:1.75rem!important;margin-bottom:.375rem!important}p[style*="color: '#6b7280'"][style*="fontSize: '1rem'"]{font-size:.875rem!important}div[style*="display: 'flex'"][style*="gap: '1rem'"]{width:100%!important;flex-direction:column!important}a[class*=btn],button[class*=btn]{width:100%!important;padding:.875rem 1.25rem!important;font-size:.875rem!important;min-height:44px!important;text-align:center!important}div[style*="display: 'flex'"][style*="gap: '0.5rem'"][style*="marginBottom: '2rem'"]{overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important;margin-bottom:1.5rem!important;border-bottom:2px solid #e5e7eb!important}div[style*="display: 'flex'"][style*="gap: '0.5rem'"][style*="marginBottom: '2rem'"]::-webkit-scrollbar{display:none!important}button[style*="padding: '1rem 2rem'"]{padding:.875rem 1.25rem!important;font-size:.875rem!important;white-space:nowrap!important;min-height:44px!important;flex-shrink:0!important}div[class*=earnings-grid],div[style*="gridTemplateColumns: 'repeat(4"]{grid-template-columns:1fr!important;gap:.875rem!important}div[style*="background: 'linear-gradient(135deg, #7C34D9"]{padding:1.25rem 1rem!important;border-radius:.875rem!important}div[style*="fontSize: '2.5rem'"]{font-size:1.75rem!important}div[style*="fontSize: '2.25rem'"]{font-size:1.5rem!important}div[style*="fontSize: '1.75rem'"]{font-size:1.25rem!important}div[style*="display: 'flex'"][style*="flexDirection: 'column'"]{gap:1rem!important}div[style*="background: '#f9fafb'"]{padding:1rem .75rem!important;border-radius:.75rem!important}div[style*="display: 'grid'"][style*="gridTemplateColumns: 'repeat(3"]{grid-template-columns:1fr!important;gap:.75rem!important}div[style*="textAlign: 'center'"]{padding:2rem 1rem!important}div[style*="textAlign: 'center'"] p{font-size:.9375rem!important;margin-bottom:1rem!important}div[style*="background: 'white'"][style*="borderRadius: '1.5rem'"]{border-radius:1rem!important;margin:0 .5rem!important}div[style*="background: 'linear-gradient(135deg, #7C34D9"]{padding:1.5rem 1rem!important}h2[style*="fontSize: '2rem'"]{font-size:1.5rem!important;margin-bottom:.375rem!important}p[style*="color: 'rgba(255, 255, 255, 0.9)'"]{font-size:.875rem!important}form[style*="padding: '2.5rem'"]{padding:1.5rem 1rem!important}div[style*="marginBottom: '2.5rem'"]{margin-bottom:1.5rem!important;padding-bottom:1.5rem!important}label[style*="fontSize: '1rem'"]{font-size:.875rem!important;margin-bottom:.5rem!important}input[type=text],input[type=url],textarea{font-size:16px!important;padding:.875rem!important;min-height:44px!important;width:100%!important;border-radius:.5rem!important}textarea{min-height:120px!important}button[type=submit]{width:100%!important;padding:.875rem 1.25rem!important;font-size:.875rem!important;min-height:44px!important;margin-top:1rem!important}@keyframes pulse{0%,to{opacity:1}50%{opacity:.8}}div[style*="display: 'grid'"][style*=gridTemplateColumns]{grid-template-columns:1fr!important;gap:1rem!important}div[style*="background: 'white'"][style*="borderRadius: '1rem'"]{padding:1rem!important;border-radius:.875rem!important}h3[style*="fontSize: '1.25rem'"]{font-size:1.0625rem!important;margin-bottom:.5rem!important}div[style*="position: 'fixed'"]{padding:1rem!important}div[style*="background: 'white'"][style*="borderRadius: '1.5rem'"][style*="padding: '2rem'"]{padding:1.5rem 1rem!important;border-radius:1rem!important;max-width:95%!important;max-height:90vh!important;overflow-y:auto!important}h2[style*="fontSize: '1.75rem'"]{font-size:1.25rem!important;margin-bottom:1rem!important}}.course-detail-container{display:grid;grid-template-columns:2fr 1fr;gap:24px}@media (max-width: 900px){.course-detail-container{grid-template-columns:1fr}.course-detail-container header{flex-direction:column;align-items:flex-start;gap:12px}.course-detail-container aside{position:relative!important;top:0!important}}.course-browse{max-width:1200px;margin:0 auto}.browse-header{text-align:center;margin-bottom:3rem}.browse-header h1{font-size:2.5rem;color:#333;margin-bottom:.5rem}.browse-header p{font-size:1.1rem;color:#666}@media (min-width: 1024px){.browse-header{margin-bottom:2.4rem}.browse-header h1{font-size:2rem;margin-bottom:.4rem}.browse-header p{font-size:.88rem}.courses-grid{gap:1rem}.course-card{border-radius:8px}.course-content{padding:1.2rem}.course-content h3{font-size:.8125rem;margin-bottom:.6rem}.course-description{font-size:.76rem;margin-bottom:.8rem}.course-footer .price{font-size:1.2rem}}.courses-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}.course-card-link{text-decoration:none;color:inherit}.course-card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 2px 10px #0000001a;transition:transform .2s,box-shadow .2s;height:100%;display:flex;flex-direction:column}.course-card:hover{transform:translateY(-5px);box-shadow:0 5px 20px #00000026}.course-image{width:100%;aspect-ratio:1;overflow:hidden;flex-shrink:0}@media (max-width: 768px){.courses-grid{grid-template-columns:1fr!important;gap:.75rem}.course-card{flex-direction:row!important;height:auto;min-height:100px}.course-image{width:80px!important;min-width:80px;height:80px!important;aspect-ratio:1!important;flex-shrink:0}.course-content{flex:1;padding:.75rem!important;display:flex;flex-direction:column;justify-content:space-between;min-width:0}.course-content h3{font-size:.8125rem!important;margin-bottom:.375rem!important;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.course-content p{font-size:.75rem!important;margin-bottom:.5rem!important}.course-content>div>div[style*="background: '#f3f4f6'"]{font-size:.625rem!important;padding:.2rem .4rem!important;margin-bottom:.375rem!important}.course-content>div:last-of-type{padding-top:.5rem!important;border-top:1px solid #f3f4f6!important}.course-content>div:last-of-type>div{font-size:.9375rem!important}}.course-image img{width:100%;height:100%;object-fit:cover;object-position:center}.course-content{padding:1rem;flex:1;display:flex;flex-direction:column;justify-content:space-between}.course-content h3{margin-bottom:.5rem;color:#333;font-size:.8125rem;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.course-description{display:none}.course-meta{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:1rem;font-size:.9rem;color:#666}.course-meta .creator{font-weight:500}.course-meta .rating{color:#f59e0b}.course-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:1rem;border-top:1px solid #e0e0e0}.course-footer .price{font-size:1.25rem;font-weight:700;color:#7c34d9}.course-footer .view-course{color:#667eea;font-weight:500}.course-detail{max-width:1200px;margin:0 auto}.course-hero{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:3rem;background:#fff;padding:2rem;border-radius:10px;box-shadow:0 2px 10px #0000001a}.course-hero-content h1{font-size:2.5rem;color:#333;margin-bottom:.5rem}.course-creator{color:#666;font-size:1.1rem;margin-bottom:1rem}.course-stats{display:flex;gap:1.5rem;margin-bottom:1.5rem;color:#666}.course-description-full{color:#666;line-height:1.6;margin-bottom:2rem}.course-cover-image{height:400px}@media (max-width: 768px){.course-cover-image{height:200px!important}}@media (max-width: 500px){.course-cover-image{height:150px!important}}.course-video-player{aspect-ratio:16 / 9;min-height:400px}@media (max-width: 768px){.course-video-player{min-height:0!important;aspect-ratio:16 / 9!important}}.course-price-section{display:flex;align-items:center;gap:2rem}.course-price{font-size:2rem;font-weight:700;color:#667eea}.btn-enroll{padding:1rem 2rem;font-size:1.1rem}.course-hero-image img{width:100%;border-radius:10px}.course-content-section{background:#fff;padding:2rem;border-radius:10px;box-shadow:0 2px 10px #0000001a}.trailer-section{margin-bottom:3rem}.trailer-section h2{margin-bottom:1.5rem;color:#333}.video-player{border-radius:10px;overflow:hidden;background:#000}.video-player video{display:block}.course-outline h2{margin-bottom:2rem;color:#333}.module{margin-bottom:2rem}.module h3{color:#333;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid #e0e0e0}.lessons-list{display:flex;flex-direction:column;gap:.75rem}.lesson-item{display:flex;align-items:center;gap:1rem;padding:1rem;background:#f9fafb;border-radius:5px;transition:background .2s}.lesson-item:hover{background:#f3f4f6}.lesson-icon{font-size:1.2rem}.lesson-info{flex:1;display:flex;justify-content:space-between;align-items:center}.lesson-title{font-weight:500;color:#333}.lesson-duration{color:#666;font-size:.9rem}.btn-sm{padding:.5rem 1rem;font-size:.9rem}.locked-badge{padding:.5rem 1rem;background:#e0e0e0;color:#666;border-radius:5px;font-size:.9rem}.proof-preview{max-width:300px;margin-top:1rem;border-radius:5px;border:1px solid #e0e0e0}.course-stats-bar{display:flex;gap:2rem;margin:1rem 0;padding:1rem;background:#f9f9f9;border-radius:8px;flex-wrap:wrap}.stat-item{color:#666;font-size:.9rem}.stat-item strong{color:#333;font-weight:600}.creator-link{color:#667eea;text-decoration:none;font-weight:500}.creator-link:hover{text-decoration:underline}.course-video-lessons-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(300px,1fr);gap:2rem;align-items:start}@media (max-width: 768px){.course-video-lessons-grid{grid-template-columns:1fr}.course-video-lessons-grid>div:first-child{order:1}.course-video-lessons-grid>div:last-child{order:2;position:relative!important;top:auto!important;max-height:none!important}}.course-social-section{margin-top:2rem;background:#fff;border-radius:10px;padding:2rem;box-shadow:0 2px 10px #0000001a}.rating-section,.like-section{margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid #e0e0e0}.rating-section h3,.comments-section h3{margin-top:0;color:#333}.like-btn{background:#fff;border:2px solid #e0e0e0;border-radius:8px;padding:.75rem 1.5rem;font-size:1rem;cursor:pointer;transition:all .2s;display:inline-flex;align-items:center;gap:.5rem}.like-btn:hover{border-color:#667eea;background:#f8f9ff}.like-btn.liked{background:#fef2f2;border-color:#ef4444;color:#dc2626}.comments-section{margin-top:2rem}.delete-comment-btn{background:#ef4444;color:#fff;border:none;border-radius:50%;width:24px;height:24px;cursor:pointer;font-size:1.2rem;line-height:1;padding:0;margin-left:auto}.course-title-header{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem}.report-btn{background:#fff;border:2px solid #e0e0e0;border-radius:5px;padding:.5rem 1rem;font-size:.9rem;cursor:pointer;color:#666;transition:all .2s;white-space:nowrap}.report-btn:hover{border-color:#ef4444;color:#ef4444;background:#fef2f2}.comment-actions{display:flex;gap:.5rem;margin-left:auto}.info-message{background:#eff6ff;border:1px solid #3b82f6;border-radius:8px;padding:1rem;margin-bottom:1rem;color:#1e40af}.course-detail-content-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(300px,1fr);gap:2rem;align-items:flex-start}@media (max-width: 768px){.course-detail-content-grid{grid-template-columns:1fr}}@keyframes shimmer{0%{transform:translate(-100%) translateY(-100%) rotate(45deg)}to{transform:translate(100%) translateY(100%) rotate(45deg)}}.filters-grid-responsive{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}@media (max-width: 640px){.filters-grid-responsive{grid-template-columns:1fr;gap:1.25rem}}.courses-layout-responsive{display:grid;grid-template-columns:280px 1fr;gap:2rem;align-items:start}@media (max-width: 1024px){.courses-layout-responsive{grid-template-columns:1fr}.courses-layout-responsive aside{position:relative!important;top:0!important;max-height:none!important}}@media (max-width: 768px){.course-browse-container{padding:.75rem .5rem!important}.course-browse-container h1{font-size:1.5rem!important;margin-bottom:.5rem!important}.course-browse-container p{font-size:.875rem!important}.course-browse-container>div[style*="background: 'linear-gradient"]{padding:1rem!important;border-radius:1rem!important;margin-bottom:1rem!important}.course-browse-container input[type=text]{font-size:16px!important;padding:.75rem .75rem .75rem 2.25rem!important;border-radius:.5rem!important}.courses-layout-responsive{grid-template-columns:1fr!important;gap:1rem!important}.courses-layout-responsive aside{position:relative!important;top:0!important;max-height:none!important;margin-bottom:1rem;border-radius:.75rem!important;padding:1rem!important;box-shadow:0 4px 12px #00000014!important}.courses-layout-responsive aside>div{margin-bottom:1rem!important}.courses-layout-responsive aside h3{font-size:.9375rem!important;margin-bottom:.75rem!important;padding:.5rem 0}.categories-dropdown-toggle{display:flex!important;margin-bottom:.75rem!important;font-size:.9375rem!important;padding:.625rem .75rem!important;min-height:44px;border-radius:.5rem!important}.categories-section-mobile>h3{display:none!important}.categories-dropdown-content{max-height:0!important;opacity:0!important;overflow:hidden!important;margin-bottom:0!important;transition:max-height .3s ease,opacity .3s ease,margin-bottom .3s ease!important}.categories-dropdown-content.open{max-height:1000px!important;opacity:1!important;margin-bottom:.75rem!important}}@media (min-width: 769px){.categories-dropdown-toggle{display:none!important}.categories-section-mobile>h3{display:flex!important}.categories-dropdown-content{max-height:none!important;opacity:1!important;margin-bottom:0!important}.courses-layout-responsive aside button{padding:.625rem .75rem!important;font-size:.8125rem!important;min-height:40px;margin-bottom:.375rem;border-radius:.5rem!important}.courses-layout-responsive aside button[style*=paddingRight]{padding-right:1.5rem!important;font-size:.75rem!important}.courses-layout-responsive aside>div:last-child>div{display:flex;flex-direction:row;overflow-x:auto;gap:.5rem;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;padding-bottom:.5rem}.courses-layout-responsive aside>div:last-child>div::-webkit-scrollbar{display:none}.courses-layout-responsive aside>div:last-child button{white-space:nowrap;flex-shrink:0;min-width:auto;padding:.625rem 1rem!important}.courses-layout-responsive aside button[style*="background: 'linear-gradient"]{width:100%;margin-top:.75rem;padding:.75rem!important;font-size:.875rem!important;min-height:44px}.courses-layout-responsive main>div[style*=grid],.courses-grid-mobile{grid-template-columns:repeat(2,1fr)!important;gap:.875rem!important;padding:0 .25rem}.courses-layout-responsive main a>div,.courses-grid-mobile a>div{border-radius:1rem!important;margin-bottom:.875rem!important;box-shadow:0 4px 12px #00000014!important}.courses-layout-responsive main a>div>div[style*="height: '180px'"],.courses-grid-mobile a>div>div[style*="height: '180px'"]{height:180px!important}.courses-layout-responsive main a>div>div[style*="padding: '1.25rem'"],.courses-grid-mobile a>div>div[style*="padding: '1.25rem'"]{padding:1.5rem!important}.courses-layout-responsive main a>div h3,.courses-grid-mobile a>div h3{font-size:1.125rem!important;margin-bottom:.875rem!important;line-height:1.6!important;min-height:3.6em!important;padding:.25rem 0!important;font-weight:700!important}.courses-layout-responsive main a>div p[style*="color: '#6b7280'"],.courses-grid-mobile a>div p[style*="color: '#6b7280'"]{display:none!important}.courses-layout-responsive main a>div>div[style*="fontSize: '0.875rem'"],.courses-grid-mobile a>div>div[style*="fontSize: '0.875rem'"]{font-size:.9375rem!important;margin-bottom:.875rem!important;padding:.375rem 0!important;line-height:1.5!important}.courses-layout-responsive main a>div>div[style*="display: 'flex'"]:last-child,.courses-grid-mobile a>div>div[style*="display: 'flex'"]:last-child{padding:1.25rem 1.5rem!important;font-size:1rem!important;margin-top:auto;gap:.75rem!important}.courses-layout-responsive main a>div strong,.courses-grid-mobile a>div strong{font-size:1.375rem!important;font-weight:700!important}.courses-layout-responsive main a>div>div[style*="position: 'absolute'"],.courses-grid-mobile a>div>div[style*="position: 'absolute'"]{top:10px!important;right:10px!important;padding:.5rem .75rem!important;font-size:.8125rem!important;line-height:1.4!important}}@media (min-width: 769px){.courses-layout-responsive main>div[style*=grid],.courses-grid-mobile{grid-template-columns:repeat(2,1fr)!important;gap:1.5rem!important;padding:0!important}.courses-layout-responsive main a>div>div[style*="padding: '1.25rem'"],.courses-grid-mobile a>div>div[style*="padding: '1.25rem'"]{padding:1.75rem!important}.courses-layout-responsive main a>div h3,.courses-grid-mobile a>div h3{font-size:1.25rem!important}}@media (min-width: 1400px){.courses-layout-responsive main>div[style*=grid],.courses-grid-mobile{gap:3rem!important}}@media (max-width: 768px){div[style*="maxWidth: '1400px'"][style*="padding: '2rem 1rem'"]{padding:1rem .75rem!important}div[style*="background: 'linear-gradient(135deg, #f9fafb"]{border-radius:.875rem!important;margin-bottom:1.5rem!important}div[style*="height: '400px'"]{height:220px!important}div[style*="padding: '2rem'"][style*="background: 'white'"]{padding:1.25rem 1rem!important}h1[style*="fontSize: '2.5rem'"]{font-size:1.5rem!important;line-height:1.3!important;margin-bottom:.75rem!important}div[style*="fontSize: '0.875rem'"][style*="color: '#7C34D9'"]{font-size:.8125rem!important;padding:.375rem .625rem!important;margin-bottom:.625rem!important}div[style*="display: 'flex'"][style*="alignItems: 'center'"][style*="gap: '1.5rem'"]{flex-direction:column!important;align-items:flex-start!important;gap:.875rem!important;margin-bottom:1rem!important}div[style*="display: 'flex'"][style*="alignItems: 'center'"][style*="gap: '1rem'"]{flex-wrap:wrap!important;gap:.75rem!important;font-size:.8125rem!important}p[style*="fontSize: '1.125rem'"]{font-size:.9375rem!important;line-height:1.6!important;margin-bottom:1.5rem!important}div[style*="minWidth: '300px'"][style*="position: 'sticky'"]{position:relative!important;top:0!important;min-width:100%!important;margin-top:1.5rem!important;border-radius:1rem!important}div[style*="padding: '2rem'"]{padding:1.25rem 1rem!important}button[style*="padding: '1.5rem 2rem'"],button[style*="padding: '1.25rem 2rem'"]{padding:1rem 1.25rem!important;font-size:1rem!important;min-height:52px!important}button[style*="padding: '0.75rem 1rem'"]{width:100%!important;padding:.875rem 1rem!important;font-size:.875rem!important;min-height:44px!important;margin-top:.75rem!important}div[style*="display: 'grid'"][style*="gridTemplateColumns: 'minmax(0, 2fr)"],div[class*=course-video-lessons-grid]{display:flex!important;flex-direction:column!important;grid-template-columns:none!important;gap:1.5rem!important;margin-bottom:1.5rem!important}div[class*=course-video-lessons-grid]>div:first-child{order:1!important;width:100%!important;max-width:100%!important;margin-bottom:0!important;flex-shrink:0!important}div[class*=course-video-lessons-grid]>div:first-child>div{width:100%!important;max-width:100%!important;margin-bottom:1.5rem!important}div[class*=course-video-lessons-grid]>div:last-child{order:2!important;width:100%!important;max-width:100%!important;position:relative!important;top:0!important;max-height:none!important;overflow-y:visible!important;height:auto!important;flex-shrink:0!important}div[style*="marginBottom: '2rem'"],div[style*="background: 'linear-gradient(135deg, #f9fafb"]{margin-bottom:1.5rem!important}div[style*="display: 'flex'"][style*="justifyContent: 'space-between'"]{flex-direction:column!important;gap:1rem!important;margin-bottom:1.25rem!important}div[style*="minWidth: '300px'"]{margin-top:1.5rem!important}div[style*="background: 'linear-gradient(135deg, #7C34D9"]{margin-top:1.5rem!important;margin-bottom:1.5rem!important}div[style*="marginTop: '2rem'"],div[style*="background: 'white'"][style*="borderRadius: '1rem'"][style*="padding: '1.5rem'"]{margin-top:1.5rem!important}div[style*="background: '#111827'"]{border-radius:.875rem!important;min-height:200px!important;max-height:250px!important;aspect-ratio:16 / 9!important;width:100%!important;overflow:hidden!important;position:relative!important}iframe{border-radius:.875rem!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;max-width:100%!important;max-height:100%!important}div[style*="display: 'grid'"][style*="gridTemplateColumns: 'minmax(0, 2fr)"]>div:first-child{width:100%!important;max-width:100%!important;overflow:hidden!important}div[style*="background: 'white'"][style*="borderRadius: '1rem'"]{border-radius:.875rem!important;padding:1rem .875rem!important}h3[style*="fontSize: '1.5rem'"]{font-size:1.25rem!important;margin-bottom:1rem!important}div[style*="padding: '10px 8px'"]{padding:.875rem .75rem!important;min-height:48px!important;font-size:.875rem!important;margin-bottom:.5rem!important;border-radius:.625rem!important}div[style*="background: 'linear-gradient(135deg, #7C34D9"]{padding:1.25rem 1rem!important;border-radius:.875rem!important;margin-bottom:1.5rem!important}h2[style*="fontSize: '1.75rem'"]{font-size:1.25rem!important;margin-bottom:1rem!important}div[style*="display: 'flex'"][style*="gap: '0.5rem'"] button{font-size:1.75rem!important;min-width:44px!important;min-height:44px!important}div[style*="marginTop: '2rem'"]{margin-top:1.5rem!important;padding:1.25rem 1rem!important;border-radius:.875rem!important}h2[style*="fontSize: '1.5rem'"]{font-size:1.25rem!important;margin-bottom:1rem!important}form[style*="marginBottom: '2rem'"]{margin-bottom:1.5rem!important}textarea[style*="width: '100%'"]{font-size:16px!important;padding:.875rem!important;min-height:100px!important;border-radius:.625rem!important}button[type=submit]{width:100%!important;padding:.875rem 1.25rem!important;font-size:.875rem!important;min-height:44px!important;margin-top:.75rem!important}div[style*="padding: '1rem'"][style*="background: '#f9f9f9'"]{padding:.875rem!important;border-radius:.75rem!important;margin-bottom:.875rem!important}div[style*="position: 'fixed'"]{padding:1rem .75rem!important}div[style*="background: 'white'"][style*="borderRadius: '1.5rem'"][style*="padding: '2.5rem'"]{padding:1.5rem 1rem!important;border-radius:1rem!important;max-width:95%!important;max-height:90vh!important;overflow-y:auto!important}h2[style*="fontSize: '2rem'"]{font-size:1.5rem!important;margin-bottom:1rem!important}div[style*="display: 'flex'"][style*="gap: '1rem'"] button{width:100%!important;padding:.875rem 1.25rem!important;font-size:.875rem!important;min-height:44px!important}input[type=file]{font-size:16px!important;padding:.875rem!important;min-height:44px!important}div[style*="fontSize: '2.5rem'"]{font-size:1.75rem!important}div[style*="fontSize: '1.5rem'"]{font-size:1.25rem!important}}.creator-profile{min-height:100vh;background:#f5f5f5;width:100%;box-sizing:border-box;margin:0;padding:0}.creator-profile>div{max-width:1400px;margin:0 auto;padding:2rem 1rem;width:100%;box-sizing:border-box}.creator-profile>div>div:first-child{width:100%;max-width:100%;box-sizing:border-box;margin-left:0;margin-right:0}.creator-profile .creator-cover-image{max-width:100%}.profile-cover{width:100%;height:300px;overflow:hidden;background:linear-gradient(135deg,#667eea,#764ba2)}.profile-cover img{width:100%;height:100%;object-fit:cover}.creator-cover-image{height:400px}@media (max-width: 768px){.creator-cover-image{height:200px!important}}@media (max-width: 500px){.creator-cover-image{height:150px!important}}.profile-container{max-width:1200px;margin:0 auto;padding:2rem}.profile-header{background:#fff;border-radius:10px;padding:2rem;margin-top:-80px;position:relative;box-shadow:0 2px 10px #0000001a;display:flex;gap:2rem;align-items:flex-start}.profile-avatar{width:150px;height:150px;border-radius:50%;overflow:hidden;border:5px solid white;box-shadow:0 2px 10px #0000001a;flex-shrink:0}.profile-avatar img{width:100%;height:100%;object-fit:cover}.profile-info{flex:1}.profile-info h1{margin:0 0 .5rem;color:#333}.profile-bio{color:#666;margin:.5rem 0;line-height:1.6}.profile-website{color:#667eea;text-decoration:none;display:inline-block;margin-top:.5rem}.profile-website:hover{text-decoration:underline}.profile-stats{display:flex;gap:2rem;flex-shrink:0}.profile-stats .stat-item{text-align:center}.profile-stats .stat-item strong{display:block;font-size:1.5rem;color:#333}.profile-stats .stat-item span{display:block;color:#666;font-size:.9rem;margin-top:.25rem}.rating-section,.comments-section,.creator-courses-section{background:#fff;border-radius:10px;padding:2rem;margin-top:2rem;box-shadow:0 2px 10px #0000001a}.rating-section h3,.comments-section h2,.creator-courses-section h2{margin-top:0;color:#333}.rating-stars{display:flex;gap:.5rem;margin:1rem 0}.star-btn{background:none;border:none;font-size:2rem;cursor:pointer;padding:0;transition:transform .2s;filter:grayscale(100%);opacity:.5}.star-btn:hover{transform:scale(1.2)}.star-btn.active,.star-btn.hover{filter:grayscale(0%);opacity:1}.courses-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1.5rem}@media (min-width: 768px){.courses-grid{grid-template-columns:repeat(3,1fr);gap:1rem}}@media (min-width: 1024px){.courses-grid{grid-template-columns:repeat(3,1fr);gap:1rem}}@media (min-width: 1400px){.courses-grid{grid-template-columns:repeat(3,1fr);gap:1.25rem}}.course-card{background:#fff;border-radius:1rem;overflow:hidden;box-shadow:0 4px 15px -3px #1616161a;text-decoration:none;color:inherit;transition:all .3s;width:100%}.course-card:hover{transform:translateY(-8px);box-shadow:0 10px 25px -5px #16161633}.course-card .course-image{width:100%;aspect-ratio:1;overflow:hidden}.categories-dropdown-toggle{display:none}@media (max-width: 768px){.categories-dropdown-toggle{display:flex!important;max-width:160px;margin:0 auto 1rem}.categories-section{display:flex;flex-direction:column;align-items:center}.categories-section h3{display:none!important}.categories-list{display:none!important;max-width:160px;margin:0 auto;width:100%}.categories-list.categories-list-open{display:flex!important}.categories-list button{max-width:160px;width:100%}}@media (max-width: 500px){.categories-dropdown-toggle,.categories-list,.categories-list button{max-width:140px}}@media (max-width: 768px){.creator-layout-responsive{grid-template-columns:1fr!important;gap:1.5rem!important}.creator-layout-responsive aside{width:100%;max-width:100%}}@media (max-width: 768px){.courses-grid{grid-template-columns:1fr!important;gap:.75rem;justify-items:stretch}.course-card{min-width:0!important;max-width:100%!important;width:100%!important;flex-direction:row!important;height:auto;min-height:100px}.course-card .course-image{width:80px!important;min-width:80px;height:80px!important;aspect-ratio:1!important;flex-shrink:0}.course-card .course-content{flex:1;padding:.75rem!important;display:flex;flex-direction:column;justify-content:space-between;min-width:0}.course-card .course-content h3{font-size:.8125rem!important;margin-bottom:.375rem!important;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.course-card .course-content>div:last-of-type{padding-top:.5rem!important;border-top:1px solid #e5e7eb!important}.course-card .course-price,.course-card .course-content span[style*="fontSize: '1.25rem'"],.course-card .course-content span[style*="fontSize: '1.5rem'"]{font-size:.9375rem!important}.course-card .course-content>div>div[style*="background: '#f3f4f6'"]{font-size:.625rem!important;padding:.2rem .4rem!important;margin-bottom:.375rem!important}}.course-card .course-image img{width:100%;height:100%;object-fit:cover;object-position:center}.course-card .course-content{padding:1rem}.course-card .course-content h3{font-size:.8125rem;font-weight:700;color:#1f2937;margin:0 0 .5rem;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.course-card .course-price{font-size:1.125rem;font-weight:900;color:#7c34d9}@media (max-width: 900px){.course-card .course-content{padding:.75rem}.course-card .course-content h3{font-size:.875rem;margin-bottom:.375rem}.course-card .course-price{font-size:1rem}}@media (max-width: 500px){.course-card .course-content{padding:.625rem}.course-card .course-content h3{font-size:.8125rem;margin-bottom:.375rem}.course-card .course-price{font-size:.875rem}}.course-card h3{margin:0 0 .5rem;color:#333;font-size:.8125rem}.course-card .course-price{color:#667eea;font-weight:700;margin:0}.comment-form{margin-bottom:2rem}.comment-form textarea{width:100%;padding:.75rem;border:2px solid #e0e0e0;border-radius:5px;font-family:inherit;font-size:1rem;resize:vertical;margin-bottom:.5rem}.comment-form textarea:focus{outline:none;border-color:#667eea}.comments-list{display:flex;flex-direction:column;gap:1.5rem}.comment-item{padding:1rem;background:#f9f9f9;border-radius:8px}.comment-header{display:flex;align-items:center;gap:1rem;margin-bottom:.5rem;position:relative}.comment-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover}.comment-author{flex:1}.comment-author strong{display:block;color:#333}.comment-date{font-size:.85rem;color:#999}.delete-comment-btn{background:#ef4444;color:#fff;border:none;border-radius:50%;width:24px;height:24px;cursor:pointer;font-size:1.2rem;line-height:1;padding:0}.delete-comment-btn:hover{background:#dc2626}.comment-text{margin:0;color:#666;line-height:1.6}.no-comments{text-align:center;color:#999;padding:2rem;font-style:italic}@media (max-width: 1024px){.creator-layout-responsive{grid-template-columns:1fr!important}}@media (max-width: 768px){.profile-header{flex-direction:column;align-items:center;text-align:center;padding:1rem .75rem!important}.profile-avatar{width:80px!important;height:80px!important;margin-bottom:.75rem!important}.profile-info h1{font-size:1.5rem!important;margin-bottom:.5rem!important}.profile-info p{font-size:.875rem!important;margin-bottom:.75rem!important}.profile-stats{width:100%;justify-content:space-around;gap:.75rem!important;padding:.75rem!important}.stat-item{padding:.5rem!important}.stat-item strong{font-size:1.125rem!important}.stat-item span{font-size:.75rem!important}.courses-grid{grid-template-columns:1fr!important;gap:.75rem!important}.course-card{padding:1rem!important;border-radius:.75rem!important}.course-card h3{font-size:1rem!important;margin-bottom:.5rem!important}.course-card p{font-size:.8125rem!important}.rating-section,.comments-section{padding:1rem .75rem!important}.rating-section h2,.comments-section h2{font-size:1.125rem!important;margin-bottom:.75rem!important}.star-btn{font-size:1.5rem!important;min-width:40px;min-height:40px}.comment-item{padding:.75rem!important;margin-bottom:.75rem!important}.comment-author strong{font-size:.875rem!important}.comment-date{font-size:.75rem!important}.comment-text{font-size:.8125rem!important}.comment-form textarea{font-size:16px!important;padding:.75rem!important;min-height:100px}.comment-form button{padding:.75rem 1.25rem!important;font-size:.875rem!important;min-height:44px;width:100%!important}div[style*="width: '100%'"][style*="padding: '0 2rem'"]{padding:0 .75rem!important;margin-bottom:1rem!important}div[style*="height: '400px'"]{height:250px!important}div[style*="fontSize: '2.5rem'"]{font-size:1.5rem!important}div[style*="maxWidth: '1200px'"][style*="padding: '0 24px"]{padding:0 .75rem 1.5rem!important}.creator-profile-header{gap:1rem!important}div[style*="padding: '2rem'"][style*="background: 'white'"]{padding:1.5rem 1rem!important}h1[style*="fontSize: '2.5rem'"]{font-size:1.75rem!important;line-height:1.3!important}p[style*="fontSize: '1.125rem'"]{font-size:1rem!important;line-height:1.6!important}div[style*="display: 'flex'"][style*="alignItems: 'center'"][style*="gap: '1.5rem'"]{flex-direction:column!important;align-items:flex-start!important;gap:1rem!important}div[style*="display: 'flex'"][style*="alignItems: 'center'"][style*="gap: '1rem'"]{flex-wrap:wrap!important;gap:.75rem!important;font-size:.875rem!important}div[style*="display: 'flex'"][style*="gap: '1rem'"][style*="marginTop: '1rem'"]{flex-wrap:wrap!important;gap:.75rem!important;margin-top:.75rem!important}a[style*="padding: '0.5rem 1rem'"]{padding:.625rem .875rem!important;font-size:.8125rem!important;min-height:44px!important}.creator-layout-responsive{grid-template-columns:1fr!important}aside{margin-bottom:2rem!important}.creator-layout-responsive{overflow-x:hidden!important}main[style*="width: '100%'"]{overflow-x:hidden!important}}@media (min-width: 1200px){.creator-layout-responsive{grid-template-columns:280px 1fr!important}main[style*="width: '100%'"]{max-width:1200px}}.course-form-page{max-width:1000px;margin:0 auto}.form-header{margin-bottom:2rem}.form-header h1{font-size:2rem;color:#333;margin-bottom:.5rem}.form-header p{color:#666}.course-form{background:#fff;padding:2rem;border-radius:10px;box-shadow:0 2px 10px #0000001a}.form-section{margin-bottom:3rem;padding-bottom:2rem;border-bottom:2px solid #e0e0e0}.form-section:last-child{border-bottom:none}.form-section h2{color:#333;margin-bottom:1.5rem;font-size:1.5rem}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:#333}.form-group input,.form-group textarea,.form-group select{width:100%;padding:.75rem;border:2px solid #e0e0e0;border-radius:5px;font-size:1rem;font-family:inherit;transition:border-color .2s}.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:#667eea}.form-group small{display:block;margin-top:.5rem;color:#666;font-size:.85rem}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.module-editor{background:#f9fafb;padding:1.5rem;border-radius:10px;margin-bottom:1.5rem}.module-header{display:flex;gap:1rem;margin-bottom:1rem;align-items:center}.module-title-input{flex:1;padding:.75rem;border:2px solid #e0e0e0;border-radius:5px;font-size:1.1rem;font-weight:600}.module-title-input:focus{outline:none;border-color:#667eea}.lessons-editor{display:flex;flex-direction:column;gap:1rem}@media (max-width: 768px){.course-form-page{padding:.75rem .5rem!important}.form-header{margin-bottom:1.25rem!important}.form-header h1{font-size:1.5rem!important;margin-bottom:.5rem!important}.form-header p{font-size:.875rem!important}.course-form{padding:1.25rem!important;border-radius:.75rem!important}.form-section{margin-bottom:1.5rem!important;padding-bottom:1.25rem!important}.form-section h2{font-size:1.125rem!important;margin-bottom:1rem!important}.form-group{margin-bottom:1rem!important}.form-group label{font-size:.875rem!important;margin-bottom:.5rem!important}.form-group input,.form-group textarea,.form-group select{font-size:16px!important;padding:.75rem!important;min-height:44px;border-radius:.5rem!important}.form-group textarea{min-height:100px}.form-row{grid-template-columns:1fr!important;gap:1rem!important}.section-header{flex-direction:column;align-items:flex-start;gap:.75rem;margin-bottom:1rem!important}.section-header button{width:100%;min-height:44px;padding:.75rem!important;font-size:.875rem!important}.module-editor{padding:1rem!important;border-radius:.75rem!important;margin-bottom:1rem!important}.module-header{flex-direction:column;gap:.625rem;margin-bottom:.875rem!important}.module-title-input{font-size:16px!important;padding:.75rem!important;min-height:44px}.lessons-editor{gap:.625rem!important}.lesson-editor{flex-direction:column;gap:.625rem;padding:.875rem!important;border-radius:.5rem!important}.lesson-editor input{width:100%;font-size:16px!important;padding:.75rem!important;min-height:44px}.lesson-editor button{width:100%;min-height:44px;padding:.75rem!important;font-size:.875rem!important}.form-actions{flex-direction:column;gap:.625rem!important;margin-top:1.5rem!important}.form-actions button{width:100%;min-height:44px;padding:.75rem 1.25rem!important;font-size:.875rem!important}}.lesson-editor{display:flex;gap:1rem;align-items:flex-start;background:#fff;padding:1rem;border-radius:5px}.lesson-number{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:#667eea;color:#fff;border-radius:50%;font-weight:600;flex-shrink:0}.lesson-inputs{flex:1;display:flex;flex-direction:column;gap:.75rem}.lesson-inputs input[type=text]{padding:.75rem;border:2px solid #e0e0e0;border-radius:5px;font-size:1rem}.lesson-inputs input[type=text]:focus{outline:none;border-color:#667eea}.form-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:2rem;padding-top:2rem;border-top:2px solid #e0e0e0}.btn-primary{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:.75rem 1.5rem;border:none;border-radius:5px;font-weight:500;cursor:pointer;font-size:1rem;transition:transform .2s,box-shadow .2s}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 5px 15px #667eea66}.btn-secondary{background:#fff;color:#667eea;padding:.75rem 1.5rem;border:2px solid #667eea;border-radius:5px;font-weight:500;cursor:pointer;font-size:1rem;transition:all .2s}.btn-secondary:hover{background:#f8f9ff}.landing-page{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;direction:rtl;text-align:right}.landing-page .navbar{direction:ltr}.landing-page .navbar-container{direction:ltr;flex-direction:row}.landing-page .navbar-menu{direction:ltr}html{scroll-behavior:smooth}.landing-nav{background:#fff;position:fixed;top:0;width:100%;z-index:50;transition:box-shadow .3s}.landing-nav.nav-scrolled{box-shadow:0 4px 6px -1px #0000001a}.nav-container{max-width:1280px;margin:0 auto;padding:0 1rem}.nav-content{display:flex;align-items:center;justify-content:space-between;height:80px}.nav-logo{display:flex;align-items:center}.logo-img{height:56px;width:auto}.nav-menu{display:none;align-items:center;gap:2rem}.nav-link{color:#374151;font-weight:600;transition:color .3s;text-decoration:none}.nav-link:hover{color:#f48434}.nav-cta-btn{padding:.75rem 1.5rem;background:#f48434;color:#fff;border-radius:.5rem;font-weight:700;transition:background .3s;text-decoration:none}.nav-cta-btn:hover{background:#e0742f}.mobile-menu-btn{display:block;color:#374151;background:none;border:none;cursor:pointer}.mobile-menu{display:flex;padding-bottom:1rem;flex-direction:column;gap:.75rem}.mobile-menu.hidden{display:none}.mobile-menu-link{display:block;padding:.5rem 1rem;color:#374151;font-weight:600;border-radius:.5rem;transition:all .3s;text-decoration:none}.mobile-menu-link:hover{background:#fdf2e8;color:#f48434}.mobile-menu-cta{display:block;padding:.5rem 1rem;background:#f48434;color:#fff;border-radius:.5rem;font-weight:700;text-align:center;transition:background .3s;text-decoration:none}.mobile-menu-cta:hover{background:#e0742f}@media (min-width: 768px){.nav-menu{display:flex}.mobile-menu-btn{display:none}.mobile-menu{display:none!important}}.hero-section{background:#fff;padding-top:100px;padding-bottom:2.5rem;min-height:auto;display:flex;align-items:center}.hero-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:2.5rem;padding:0 1.5rem}.hero-content{text-align:right;display:flex;flex-direction:column;justify-content:center;min-height:auto}.hero-badge{display:inline-block;padding:.625rem 1.25rem;background:linear-gradient(135deg,#f484341a,#7c34d91a);color:#f48434;border-radius:9999px;font-size:.875rem;font-weight:700;margin-bottom:1rem;white-space:nowrap;max-width:fit-content;border:1px solid rgba(244,132,52,.2);box-shadow:0 4px 12px #f4843426;transition:all .3s ease}.hero-badge:hover{transform:translateY(-2px);box-shadow:0 6px 20px #f4843440}.hero-title{font-size:0;font-weight:900;line-height:1.2;color:#111827;margin-bottom:0;margin-top:0}.hero-title-accent{background:linear-gradient(135deg,#f48434,#7c34d9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:block;font-size:1.75rem!important;font-weight:900;line-height:1.2;letter-spacing:-.02em;text-shadow:0 4px 20px rgba(244,132,52,.2)}.hero-description{margin-top:1rem;font-size:1rem;color:#6b7280;line-height:1.7;max-width:520px}.hero-actions{margin-top:1.5rem}.hero-btn-primary{background:#f48434;color:#fff;padding:.9rem 2rem;border-radius:999px;font-size:1rem;font-weight:700;border:none;cursor:pointer;text-decoration:none;display:inline-block;transition:all .3s ease}.hero-btn-primary:hover{background:#e0742f;transform:translateY(-2px);box-shadow:0 8px 20px #f484344d}.hero-stats{display:flex;gap:1rem;margin-top:1.5rem;font-weight:700;font-size:.875rem;flex-wrap:wrap;justify-content:flex-start;max-width:520px;text-align:right}.hero-stat-item{text-align:right;display:flex;flex-direction:column;align-items:flex-start;gap:.375rem;min-width:120px}.hero-stat-icon{font-size:1.5rem}.hero-stat-text{color:#111827}.hero-visual{position:relative;width:100%;height:100%;min-height:320px;max-height:400px;overflow:hidden;border-radius:20px;box-shadow:0 20px 60px #0000001a;align-self:center}.hero-visual img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover;opacity:0;animation:fadeSlider 12s infinite}.hero-visual img:nth-child(1){animation-delay:0s}.hero-visual img:nth-child(2){animation-delay:4s}.hero-visual img:nth-child(3){animation-delay:8s}@keyframes fadeSlider{0%{opacity:0}8%{opacity:1}33%{opacity:1}41%{opacity:0}to{opacity:0}}@media (max-width: 900px){.hero-container{grid-template-columns:1fr;text-align:center;gap:3rem;align-items:center}.hero-content{text-align:center;min-height:auto;display:flex;flex-direction:column;align-items:center}.hero-badge{margin-left:auto;margin-right:auto}.hero-title{text-align:center;width:100%}.hero-title-accent{text-align:center}.hero-description{margin-left:auto;margin-right:auto;text-align:center}.hero-actions{display:flex;justify-content:center;width:100%}.hero-stats{justify-content:center;flex-wrap:wrap;width:100%;gap:1rem;max-width:100%;text-align:center}.hero-stat-item{min-width:120px;text-align:center;align-items:center}.hero-visual{min-height:280px;max-height:320px;height:280px;order:-1}.hero-section{padding-top:80px;padding-bottom:2rem}.hero-container{gap:2rem}.hero-badge{font-size:.8125rem;padding:.5rem 1rem;margin-bottom:.75rem}.hero-description{margin-top:.75rem;font-size:.9375rem}.hero-actions{margin-top:1.25rem}.hero-stats{margin-top:1.25rem;gap:.75rem;font-size:.8125rem;justify-content:center;max-width:100%;text-align:center}.hero-stat-item{min-width:100px;text-align:center;align-items:center}.courses-section{padding:3rem 0}.courses-header{margin-bottom:2rem}.category-section{margin-bottom:3rem}.category-header-image{height:120px;margin-bottom:1.5rem;border-radius:12px}.category-header-overlay{padding:1.5rem 1rem}.category-title{font-size:1.25rem}.category-courses-wrapper{gap:.5rem}.category-scroll-btn{width:36px;height:36px;font-size:1.125rem;display:none}.category-courses-scroll{gap:1rem;padding:.25rem 0;-webkit-overflow-scrolling:touch}.category-course-card{min-width:140px;max-width:140px}.category-course-thumbnail{aspect-ratio:1;height:auto}.category-course-content{padding:.5rem}.category-course-title{font-size:.75rem;line-height:1.3;margin-bottom:.25rem}.category-course-badge{top:.375rem;right:.375rem;padding:.15rem .4rem;font-size:.5625rem}.category-course-price{font-size:.8125rem}.category-course-free{font-size:.625rem;padding:.125rem .4rem}}@media (max-width: 500px){.hero-section{padding-top:70px;padding-bottom:1.5rem}.hero-container{gap:1.5rem}.hero-visual{height:240px;min-height:240px;max-height:240px}.hero-title{font-size:0}.hero-title-accent{font-size:1.75rem!important}.hero-badge{font-size:.75rem;padding:.5rem .875rem;margin-bottom:.75rem}.hero-description{font-size:.875rem;margin-top:.5rem;line-height:1.6}.hero-actions{margin-top:1rem}.hero-stats{margin-top:1rem;gap:.5rem;font-size:.75rem;justify-content:center;max-width:100%;text-align:center}.hero-stat-item{min-width:90px;gap:.25rem;text-align:center;align-items:center}.hero-stat-icon{font-size:1.25rem}.courses-section{padding:2rem 0}.courses-header{margin-bottom:1.5rem}.category-section{margin-bottom:2.5rem}.category-header-image{height:100px;margin-bottom:1rem;border-radius:8px}.category-header-overlay{padding:1rem .75rem}.category-title{font-size:1.125rem}.category-courses-wrapper{gap:.25rem}.category-scroll-btn{display:none}.category-courses-scroll{gap:.75rem;padding:0}.category-course-card{min-width:120px;max-width:120px}.category-course-thumbnail{aspect-ratio:1;height:auto}.category-course-content{padding:.4rem}.category-course-title{font-size:.6875rem;margin-bottom:.2rem;line-height:1.25;-webkit-line-clamp:2;line-clamp:2}.category-course-badge{top:.25rem;right:.25rem;padding:.1rem .35rem;font-size:.5rem}.category-course-price{font-size:.75rem}.category-course-free{font-size:.5625rem;padding:.1rem .35rem}}@media (min-width: 768px){.hero-section{padding-bottom:3rem}.hero-container{padding:0 2rem;gap:3rem}.hero-content{gap:1rem}.hero-title{font-size:0}.hero-title-accent{font-size:2.25rem!important}.hero-badge{font-size:.9375rem;padding:.625rem 1.25rem}.hero-visual{min-height:350px;max-height:400px}}@media (min-width: 1024px){.hero-container{gap:3rem}.hero-title{font-size:0}.hero-title-accent{font-size:3rem!important}.hero-badge{font-size:1rem;padding:.75rem 1.5rem}.hero-visual{min-height:380px;max-height:420px}}.section-container{max-width:1152px;margin:0 auto;padding:0 1rem}.section-title{font-size:1.75rem;font-weight:900;color:#1f2937;margin-bottom:1.5rem;text-align:center}.section-title-large{font-size:2rem;font-weight:900;color:#1f2937;margin-bottom:1.5rem;line-height:1.2;text-align:center}.section-divider{width:80px;height:4px;background:linear-gradient(to left,#f48434,#7c34d9);margin:0 auto 2rem}@media (min-width: 768px){.section-title{font-size:2.25rem}.section-title-large{font-size:2.75rem}}@media (min-width: 1024px){.section-title{font-size:3rem}.section-title-large{font-size:3.5rem}}.about-section{padding:5rem 0;background:#f9fafb}.about-intro{font-size:1.5rem;color:#1f2937;max-width:1024px;margin:0 auto 2rem;text-align:center;line-height:1.75;font-weight:700}.about-highlight{background:linear-gradient(135deg,#7c34d90d,#f484340d);border-radius:1.5rem;padding:2.5rem;max-width:900px;margin:0 auto;border:2px solid rgba(124,52,217,.1)}.about-description{font-size:1.125rem;color:#374151;text-align:center;line-height:1.8;font-weight:500;margin:0}.features-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-top:3rem}.feature-card{background:#fff;padding:2rem;border-radius:1.5rem;box-shadow:0 10px 30px -5px #16161614;text-align:center}.feature-icon{font-size:3rem;margin-bottom:1rem}.feature-icon-large{font-size:5rem!important}.feature-title{font-size:1.25rem;font-weight:700;margin-bottom:.75rem;color:#1f2937}.feature-description{font-size:1rem;color:#4b5563}@media (min-width: 768px){.features-grid{grid-template-columns:repeat(3,1fr)}.feature-title{font-size:1.375rem}}.topics-section{padding:3rem 0;background:#fff}.topics-section-integrated{margin-top:3rem;padding-top:3rem;border-top:2px solid rgba(124,52,217,.1)}.topics-section-title{font-size:1.5rem;font-weight:900;color:#1f2937;margin-bottom:1.5rem;text-align:center}.topics-container{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;max-width:1200px;margin:0 auto}.topic-tag{padding:.625rem 1.25rem;background:#fff;border:2px solid #e5e7eb;border-radius:9999px;font-size:.875rem;font-weight:600;color:#374151;cursor:pointer;transition:all .3s}.topic-tag:hover{border-color:#7c34d9;color:#7c34d9;background:#7c34d90d;transform:translateY(-2px)}.topic-tag:active{transform:translateY(0)}.courses-section{padding:6rem 0;background:linear-gradient(to bottom right,#f9fafb,#fff);position:relative;overflow:hidden}.courses-bg-decoration{position:absolute;border-radius:50%;filter:blur(80px);opacity:.05}.bg-1{width:288px;height:288px;background:#f48434;top:0;left:0}.bg-2{width:384px;height:384px;background:#7c34d9;bottom:0;right:0}.courses-header{text-align:center;margin-bottom:3rem}.courses-badge{display:inline-block;margin-bottom:1rem;background:linear-gradient(to left,#7c34d9,#f48434);color:#fff;padding:.5rem 1.5rem;border-radius:9999px;font-size:.875rem;font-weight:700}.courses-subtitle{font-size:1rem;color:#4b5563;max-width:768px;margin:0 auto;line-height:1.75}.text-primary-orange{color:#f48434}.font-bold{font-weight:700}.loading-courses,.no-courses{text-align:center;padding:4rem 2rem}.loading-spinner{width:48px;height:48px;border:4px solid #f3f4f6;border-top-color:#f48434;border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 1rem}@keyframes spin{to{transform:rotate(360deg)}}.no-courses-icon{font-size:4rem;margin-bottom:1rem}.categories-container{display:flex;flex-direction:column;gap:4rem;margin-top:3rem}.category-section{width:100%}.category-header-image{position:relative;width:100%;height:200px;border-radius:0;overflow:hidden;margin-bottom:2rem;box-shadow:0 10px 30px -5px #1616161a}.category-image{width:100%;height:100%;object-fit:cover}.category-header-overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(0,0,0,.8),transparent);padding:2rem;display:flex;align-items:flex-end}.category-title{font-size:2rem;font-weight:900;color:#fff;margin:0}.category-courses-wrapper{position:relative;display:flex;align-items:center;gap:1rem}.category-scroll-btn{background:#fff;border:2px solid #e5e7eb;border-radius:50%;width:48px;height:48px;display:none;align-items:center;justify-content:center;font-size:1.5rem;color:#7c34d9;cursor:pointer;transition:all .3s;flex-shrink:0;z-index:10}@media (min-width: 768px){.category-scroll-btn{display:flex}}.category-scroll-btn:hover{background:#7c34d9;color:#fff;border-color:#7c34d9;transform:scale(1.1)}.category-courses-scroll{display:flex;gap:1.5rem;overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth;scrollbar-width:thin;flex:1;padding:.5rem 0}.category-courses-scroll::-webkit-scrollbar{height:8px}.category-courses-scroll::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}.category-courses-scroll::-webkit-scrollbar-thumb{background:#7c34d9;border-radius:10px}.category-course-card{min-width:280px;max-width:280px;background:#fff;border-radius:1rem;overflow:hidden;box-shadow:0 4px 15px -3px #1616161a;cursor:pointer;transition:all .3s;flex-shrink:0}@media (max-width: 900px){.category-courses-scroll .category-course-card{min-width:200px!important;max-width:200px!important}.category-courses-scroll .category-course-thumbnail{aspect-ratio:1!important;height:auto!important}.category-courses-scroll .category-course-content{padding:.75rem!important}.category-courses-scroll .category-course-title{font-size:.875rem!important;line-height:1.4!important;margin-bottom:.375rem!important}.category-courses-scroll .category-course-price{font-size:1rem!important}.category-courses-scroll .category-course-free{font-size:.75rem!important;padding:.2rem .5rem!important}}@media (max-width: 500px){.category-courses-scroll .category-course-card{min-width:170px!important;max-width:170px!important}.category-courses-scroll .category-course-thumbnail{aspect-ratio:1!important;height:auto!important}.category-courses-scroll .category-course-content{padding:.625rem!important}.category-courses-scroll .category-course-title{font-size:.8125rem!important;margin-bottom:.375rem!important;line-height:1.3!important}.category-courses-scroll .category-course-badge{top:.5rem!important;right:.5rem!important;padding:.2rem .5rem!important;font-size:.625rem!important}.category-courses-scroll .category-course-price{font-size:.875rem!important}.category-courses-scroll .category-course-free{font-size:.6875rem!important;padding:.15rem .5rem!important}}.category-course-card:hover{transform:translateY(-8px);box-shadow:0 10px 25px -5px #16161633}.category-course-thumbnail{position:relative;width:100%;aspect-ratio:1;overflow:hidden;background:#f3f4f6}.category-course-image{width:100%;height:100%;object-fit:cover;transition:transform .3s}.category-course-card:hover .category-course-image{transform:scale(1.1)}.category-course-badge{position:absolute;top:.75rem;right:.75rem;padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:700;color:#fff;z-index:5}.category-course-content{padding:1rem}.category-course-title{font-size:1rem;font-weight:700;color:#1f2937;margin:0 0 .5rem;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.category-course-meta{display:flex;align-items:center;justify-content:space-between}.category-course-price{font-size:1.125rem;font-weight:900;color:#7c34d9}.category-course-free{font-size:.875rem;font-weight:700;color:#10b981;background:#10b9811a;padding:.25rem .75rem;border-radius:9999px}.courses-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-bottom:3rem}.course-card{background:#fff;border-radius:1.5rem;overflow:hidden;box-shadow:0 10px 30px -5px #1616160d;transition:all .3s;cursor:pointer;border-top:4px solid}.course-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px -5px #16161626}.course-free{border-top-color:#10b981}.course-premium{border-top-color:#f48434}.course-pro{border-top-color:#7c34d9}.course-plan-badge{padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:700;color:#fff;display:inline-block;margin-bottom:1rem}.bg-gradient-to-r{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.from-green-500{--tw-gradient-from: #10b981}.to-emerald-600{--tw-gradient-to: #059669}.from-primary-orange{--tw-gradient-from: #F48434}.to-orange-600{--tw-gradient-to: #ea580c}.from-primary-purple{--tw-gradient-from: #7C34D9}.to-purple-700{--tw-gradient-to: #6b21a8}.course-thumbnail-container{position:relative;width:100%;height:200px;overflow:hidden;background:#f3f4f6}.course-thumbnail{width:100%;height:100%;object-fit:cover;transition:transform .3s}.course-card:hover .course-thumbnail{transform:scale(1.05)}.course-plan-badge-overlay{position:absolute;top:1rem;left:1rem;padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:700;color:#fff;z-index:10}.course-content{padding:1.5rem}.course-title{font-size:1.125rem;font-weight:700;margin-bottom:.5rem;color:#1f2937}.course-description{font-size:.875rem;color:#4b5563;margin-bottom:1rem;line-height:1.6}.course-meta{display:flex;align-items:center;justify-content:space-between;font-size:.75rem;color:#6b7280;margin-bottom:1rem}.course-price{font-weight:700;color:#7c34d9}.course-action-btn{width:100%;padding:.75rem 1rem;background:linear-gradient(to left,#7c34d9,#f48434);color:#fff;font-size:.875rem;font-weight:700;border-radius:.75rem;border:none;cursor:pointer;transition:box-shadow .3s}.course-action-btn:hover{box-shadow:0 10px 20px -5px #7c34d94d}.courses-cta{text-align:center}.courses-cta-btn{display:inline-flex;align-items:center;gap:.5rem;padding:1.25rem 2.5rem;background:linear-gradient(to left,#7c34d9,#f48434);color:#fff;font-size:1.125rem;font-weight:700;border-radius:1.5rem;transition:all .3s;text-decoration:none;transform:scale(1)}.courses-cta-btn:hover{box-shadow:0 20px 40px -5px #16161633;transform:scale(1.05)}@media (min-width: 768px){.courses-grid{grid-template-columns:repeat(2,1fr)}.course-title{font-size:1.5rem}}@media (min-width: 1024px){.courses-grid{grid-template-columns:repeat(3,1fr)}}.testimonials-section{padding:5rem 0;background:#f9fafb}.testimonials-header{text-align:center;margin-bottom:3rem}.testimonials-subtitle{font-size:1rem;color:#4b5563}.testimonials-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:3rem}.testimonials-cta{text-align:center;margin-top:3rem}.testimonials-cta-btn{padding:1rem 2.5rem;background:linear-gradient(to left,#7c34d9,#f48434);color:#fff;font-size:1.125rem;font-weight:700;border-radius:.75rem;border:none;cursor:pointer;transition:all .3s;box-shadow:0 4px 15px -3px #7c34d94d}.testimonials-cta-btn:hover{box-shadow:0 10px 25px -5px #7c34d966;transform:translateY(-2px)}.testimonials-cta-btn:active{transform:translateY(0)}.testimonial-card{background:#fff;padding:1.5rem;border-radius:1.5rem;box-shadow:0 10px 30px -5px #1616160d;transition:box-shadow .3s}.testimonial-card:hover{box-shadow:0 20px 40px -5px #16161626}.testimonial-header{display:flex;align-items:center;margin-bottom:1rem}.testimonial-avatar{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.25rem;margin-left:1rem}.testimonial-info{text-align:right}.testimonial-name{font-weight:700;color:#1f2937}.testimonial-role{font-size:.875rem;color:#6b7280}.testimonial-rating{margin-bottom:.75rem}.stars{font-size:.875rem;color:#fbbf24}.testimonial-text{color:#374151;line-height:1.6}@media (min-width: 768px){.testimonials-grid{grid-template-columns:repeat(3,1fr)}}.pricing-section{padding:5rem 0;background:#fff}.pricing-subtitle{font-size:1rem;color:#4b5563;margin-bottom:2rem;max-width:768px;margin-left:auto;margin-right:auto;text-align:center}.pricing-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-bottom:3rem}.pricing-card{background:#f9fafb;border-radius:1.5rem;padding:2rem;text-align:center;transition:box-shadow .3s;position:relative}.pricing-card:hover{box-shadow:0 20px 40px -5px #16161626}.pricing-featured{background:linear-gradient(to bottom right,#f48434,#ea580c);color:#fff;transform:scale(1.05)}.pricing-badge{background:#fff;color:#f48434;padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:700;display:inline-block;margin-bottom:.5rem}.pricing-icon{font-size:3rem;margin-bottom:1rem}.pricing-title{font-size:1.5rem;font-weight:700;margin-bottom:.5rem;color:#1f2937}.pricing-featured .pricing-title{color:#fff}.pricing-price{font-size:2.25rem;font-weight:900;margin-bottom:1rem;color:#1f2937}.pricing-featured .pricing-price{color:#fff}.price-unit{font-size:1.25rem;font-weight:700}.pricing-description{font-size:1rem;color:#4b5563;margin-bottom:1.5rem}.pricing-featured .pricing-description{color:#ffffffe6}.pricing-btn{display:block;width:100%;padding:.75rem 1.5rem;border-radius:.75rem;font-weight:700;transition:all .3s;text-decoration:none;text-align:center}.pricing-btn-secondary{background:#e5e7eb;color:#374151}.pricing-btn-secondary:hover{background:#d1d5db}.pricing-btn-primary{background:#fff;color:#f48434}.pricing-btn-primary:hover{background:#f9fafb}.pricing-btn-gradient{background:linear-gradient(to left,#7c34d9,#f48434);color:#fff}.pricing-btn-gradient:hover{box-shadow:0 10px 20px -5px #7c34d94d}@media (min-width: 768px){.pricing-grid{grid-template-columns:repeat(3,1fr)}}.contact-section{padding:6rem 0;background:linear-gradient(to bottom right,#7c34d9,#f48434);color:#fff}.contact-header{text-align:center;margin-bottom:3rem}.contact-title{font-size:1.75rem;font-weight:900;margin-bottom:1rem;color:#fff}.contact-subtitle{font-size:1rem;color:#ffffffe6;max-width:512px;margin:0 auto;line-height:1.75}.contact-card{background:#fff;border-radius:1.5rem;padding:2rem;box-shadow:0 10px 30px -5px #16161614}.contact-grid{display:grid;grid-template-columns:1fr;gap:2rem}.contact-item{display:flex;align-items:center;gap:1rem;padding:1.5rem;border-radius:1.5rem;transition:box-shadow .3s;text-decoration:none}.contact-item:hover{box-shadow:0 10px 20px -5px #16161626}.contact-phone{background:linear-gradient(to bottom right,#f484341a,#f484340d)}.contact-whatsapp{background:linear-gradient(to bottom right,#10b9811a,#10b9810d)}.contact-email{background:linear-gradient(to bottom right,#7c34d91a,#7c34d90d)}.contact-instagram{background:linear-gradient(to bottom right,#ec48991a,#ec48990d)}.contact-facebook{background:linear-gradient(to bottom right,#2563eb1a,#2563eb0d)}.contact-linkedin{background:linear-gradient(to bottom right,#1d4ed81a,#1d4ed80d)}.contact-icon{font-size:3rem}.contact-item-title{font-size:1.125rem;font-weight:700;color:#1f2937;margin-bottom:.25rem}.contact-item-value{font-weight:600;color:#f48434}.contact-whatsapp .contact-item-value{color:#10b981}.contact-email .contact-item-value{color:#7c34d9}.contact-instagram .contact-item-value{color:#ec4899}.contact-facebook .contact-item-value{color:#2563eb}.contact-linkedin .contact-item-value{color:#1d4ed8}.contact-cta{text-align:center;margin-top:2.5rem}.contact-cta-btn{display:inline-block;padding:1rem 2.5rem;background:linear-gradient(to left,#7c34d9,#f48434);color:#fff;font-size:1.125rem;font-weight:700;border-radius:.75rem;transition:all .3s;text-decoration:none;transform:scale(1)}.contact-cta-btn:hover{box-shadow:0 20px 40px -5px #16161633;transform:scale(1.05)}@media (min-width: 768px){.contact-grid{grid-template-columns:repeat(2,1fr)}.contact-title{font-size:2.25rem}}@media (min-width: 1024px){.contact-title{font-size:3rem}}.landing-footer{padding:2rem 0 3rem;background:#1f2937;color:#fff}.footer-container{max-width:1280px;margin:0 auto;padding:0 1rem}.footer-content{display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:1.5rem}.footer-brand{text-align:center}.footer-logo{height:48px;width:auto;filter:brightness(0) invert(1);margin-bottom:.75rem}.footer-tagline{color:#9ca3af;font-size:.875rem}.footer-copyright{text-align:center}.copyright-text{color:#9ca3af;font-size:.875rem}.copyright-rights{color:#6b7280;font-size:.75rem;margin-top:.25rem}.footer-links{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}.footer-link{color:#9ca3af;font-size:.875rem;transition:color .3s;text-decoration:none}.footer-link:hover{color:#f48434}@media (min-width: 768px){.footer-content{flex-direction:row}.footer-brand{text-align:right}.footer-copyright{text-align:center}}@media (max-width: 767px){.mobile-menu-btn{display:block}}.layout{min-height:100vh;display:flex;flex-direction:column}.main-content{flex:1;padding-top:0}.navbar-logo-link{display:flex;align-items:center;text-decoration:none;transition:opacity .3s}.navbar-logo-link:hover{opacity:.8}.mobile-menu-button{display:none;background:none;border:none;font-size:1.5rem;color:#374151;cursor:pointer;padding:.5rem;transition:color .2s}.mobile-menu-button:hover{color:#7c34d9}.mobile-menu-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;z-index:1000;display:flex;align-items:flex-start;justify-content:flex-end;padding:0;animation:fadeIn .2s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.mobile-menu{background:#fff;width:280px;max-width:85vw;height:100vh;box-shadow:-4px 0 20px #0000001a;display:flex;flex-direction:column;animation:slideIn .3s ease;overflow-y:auto}@keyframes slideIn{0%{transform:translate(100%)}to{transform:translate(0)}}.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid #e5e7eb;background:linear-gradient(135deg,#7c34d9,#f48434);color:#fff}.mobile-menu-header span{color:#fff!important;font-weight:700}.mobile-menu-close{background:#fff3;border:none;color:#fff;font-size:1.5rem;width:2rem;height:2rem;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}.mobile-menu-close:hover{background:#ffffff4d}.mobile-menu-links{display:flex;flex-direction:column;padding:1rem 0}.mobile-menu-link{padding:1rem 1.5rem;color:#374151;text-decoration:none;font-weight:600;font-size:1rem;transition:all .2s;border-bottom:1px solid #f3f4f6;display:flex;align-items:center;min-height:48px}.mobile-menu-link:active{background:#f9fafb;transform:scale(.98)}.mobile-menu-link:hover{background:#f9fafb;color:#7c34d9}.mobile-menu-button-primary{background:linear-gradient(135deg,#7c34d9,#f48434);color:#fff!important;margin:.5rem 1rem;border-radius:.5rem;text-align:center;justify-content:center}.mobile-menu-button-primary:hover{background:linear-gradient(135deg,#6b2fc4,#e0742f);color:#fff!important}.mobile-menu-button-logout{background:#fef2f2;color:#dc2626!important;margin:.5rem 1rem;border-radius:.5rem;text-align:center;justify-content:center;border:2px solid #fecaca}.mobile-menu-button-logout:hover{background:#fee2e2;color:#991b1b!important}@media (max-width: 768px){.desktop-menu{display:none}.mobile-menu-button{display:flex;align-items:center;justify-content:center;font-size:1.25rem!important;padding:.5rem!important}.navbar-container{position:relative;padding:0 .75rem!important}.navbar-logo{height:2.25rem!important}.mobile-menu{width:260px!important;max-width:80vw!important}.mobile-menu-header{padding:1.25rem!important}.mobile-menu-header span{font-size:.875rem!important}.mobile-menu-close{width:1.75rem!important;height:1.75rem!important;font-size:1.25rem!important}.mobile-menu-link{padding:.875rem 1.25rem!important;font-size:.875rem!important;min-height:44px}.mobile-menu-button-primary,.mobile-menu-button-logout{margin:.5rem .875rem!important;padding:.75rem!important;font-size:.875rem!important}.navbar-container button[style*="width: '40px'"]{width:36px!important;height:36px!important}.mobile-menu-link button[style*="display: 'flex'"]{min-height:64px!important}.mobile-menu-link button[style*="display: 'flex'"]:active{background:#f9fafb!important;transform:scale(.98)!important}}@media (min-width: 769px){.mobile-menu-overlay{display:none!important}}.session-blocking-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#000000f2;z-index:99999;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);pointer-events:all;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.session-blocking-content{background:#fff;border-radius:16px;padding:2rem;max-width:400px;width:90%;text-align:center;box-shadow:0 20px 60px #0000004d;animation:slideIn .3s ease-out}@keyframes slideIn{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}.session-blocking-icon{font-size:4rem;margin-bottom:1rem;animation:pulse 2s ease-in-out infinite}@keyframes pulse{0%,to{transform:scale(1)}50%{transform:scale(1.1)}}.session-blocking-content h2{margin:0 0 1rem;color:#333;font-size:1.5rem;font-weight:600}.session-blocking-content p{margin:0 0 1.5rem;color:#666;font-size:1rem;line-height:1.5}.session-blocking-spinner{display:flex;justify-content:center;align-items:center;margin-top:1rem}.spinner{width:40px;height:40px;border:4px solid #f3f3f3;border-top:4px solid #7C34D9;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.session-blocking-overlay *{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}body.session-blocked{overflow:hidden;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}@media (prefers-color-scheme: dark){.session-blocking-content{background:#1a1a1a;color:#fff}.session-blocking-content h2{color:#fff}.session-blocking-content p{color:#ccc}.spinner{border-color:#333;border-top-color:#7c34d9}}@media (min-width: 1024px){html{font-size:80%}h1{font-size:2.4rem!important}h2{font-size:1.92rem!important}h3{font-size:1.44rem!important}h4{font-size:1.152rem!important}button,.btn-primary,.btn-gradient,.btn-secondary,.btn-success,.btn-danger{padding:.6rem 1.2rem!important;font-size:.875rem!important}.navbar-container{height:4rem!important}.navbar-logo{height:2.8rem!important}.card{padding:1.2rem!important}.form-input,.form-textarea,input,textarea,select{padding:.6rem!important}.badge,.status-badge{padding:.2rem .6rem!important;font-size:.7rem!important}[style*="fontSize: '3rem'"],[style*='fontSize: "3rem"'],[style*="font-size: 3rem"]{font-size:2.4rem!important}[style*="fontSize: '2.5rem'"],[style*='fontSize: "2.5rem"'],[style*="font-size: 2.5rem"]{font-size:2rem!important}[style*="fontSize: '2rem'"],[style*='fontSize: "2rem"'],[style*="font-size: 2rem"]{font-size:1.6rem!important}[style*="fontSize: '1.5rem'"],[style*='fontSize: "1.5rem"'],[style*="font-size: 1.5rem"]{font-size:1.2rem!important}[style*="fontSize: '1.25rem'"],[style*='fontSize: "1.25rem"'],[style*="font-size: 1.25rem"]{font-size:1rem!important}[style*="fontSize: '1.125rem'"],[style*='fontSize: "1.125rem"'],[style*="font-size: 1.125rem"]{font-size:.9rem!important}[style*="fontSize: '1rem'"],[style*='fontSize: "1rem"'],[style*="font-size: 1rem"]{font-size:.875rem!important}[style*="padding: '2rem'"],[style*='padding: "2rem"'],[style*="padding: 2rem"]{padding:1.6rem!important}[style*="padding: '2rem 1rem'"],[style*='padding: "2rem 1rem"'],[style*="padding: 2rem 1rem"]{padding:1.6rem .8rem!important}[style*="padding: '1.5rem'"],[style*='padding: "1.5rem"'],[style*="padding: 1.5rem"]{padding:1.2rem!important}[style*="padding: '1rem'"],[style*='padding: "1rem"'],[style*="padding: 1rem"]{padding:.8rem!important}[style*="marginBottom: '3rem'"],[style*='marginBottom: "3rem"'],[style*="margin-bottom: 3rem"]{margin-bottom:2.4rem!important}[style*="marginBottom: '2rem'"],[style*='marginBottom: "2rem"'],[style*="margin-bottom: 2rem"]{margin-bottom:1.6rem!important}[style*="marginBottom: '1.5rem'"],[style*='marginBottom: "1.5rem"'],[style*="margin-bottom: 1.5rem"]{margin-bottom:1.2rem!important}[style*="marginBottom: '1rem'"],[style*='marginBottom: "1rem"'],[style*="margin-bottom: 1rem"]{margin-bottom:.8rem!important}[style*="gap: '2rem'"],[style*='gap: "2rem"'],[style*="gap: 2rem"]{gap:1.6rem!important}[style*="gap: '1.5rem'"],[style*='gap: "1.5rem"'],[style*="gap: 1.5rem"]{gap:1.2rem!important}[style*="gap: '1rem'"],[style*='gap: "1rem"'],[style*="gap: 1rem"]{gap:.8rem!important}}@media (max-width: 768px){body{overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button,a,input,select,textarea,[role=button]{min-height:44px;min-width:44px}*{-webkit-tap-highlight-color:rgba(124,52,217,.1)}html{scroll-behavior:smooth;-webkit-overflow-scrolling:touch}.container{padding:0 .75rem}*{--mobile-spacing: .75}h1{font-size:1.5rem!important;line-height:1.2}h2{font-size:1.25rem!important;line-height:1.3}h3{font-size:1.125rem!important;line-height:1.4}h4{font-size:1rem!important}body,p,span,div,a,li{font-size:.875rem!important}.btn-primary,.btn-gradient,.btn-secondary,.btn-success,.btn-danger{padding:.75rem 1.25rem!important;font-size:.875rem!important;min-height:44px;width:100%;max-width:100%}input,textarea,select{font-size:16px!important;padding:.75rem!important;min-height:44px;width:100%;border-radius:.5rem}.card{width:100%;margin-bottom:.75rem;padding:1rem!important;border-radius:.75rem!important}.grid,.courses-grid,.summary-cards,.earnings-summary{grid-template-columns:1fr!important;gap:.75rem!important}.navbar-container{padding:0 .75rem;height:3.5rem}.navbar-logo{height:2.25rem}.navbar-link{font-size:.875rem!important}.hero{min-height:50vh;padding:1.5rem .75rem}.hero-title{font-size:1.5rem!important;margin-bottom:.75rem}.hero-subtitle{font-size:.875rem!important;margin-bottom:1.25rem}.section{padding:2rem .75rem!important}.section-title{font-size:1.5rem!important;margin-bottom:.75rem}.section-subtitle{font-size:.875rem!important;margin-bottom:1.5rem}.footer{padding:1.5rem 0!important}.footer-container{flex-direction:column;gap:1rem;text-align:center;padding:0 .75rem}.footer-logo{height:2rem!important}.modal-content{max-width:100%!important;margin:0!important;border-radius:0!important;height:100vh;max-height:100vh;padding:1.25rem .75rem!important}.modal-content h2{font-size:1.25rem!important;margin-bottom:1rem!important}.modal-content p{font-size:.875rem!important}table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}.admin-tabs,.dashboard-tabs{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none}.admin-tabs::-webkit-scrollbar,.dashboard-tabs::-webkit-scrollbar{display:none}.admin-tabs button,.dashboard-tabs button{white-space:nowrap;flex-shrink:0;padding:.875rem 1.25rem!important;font-size:.875rem!important}.admin-list,.courses-list{gap:1rem!important}.admin-item,.course-item{padding:1.25rem!important}.badge,.status-badge{padding:.375rem .75rem!important;font-size:.875rem!important;min-height:28px}img{max-width:100%;height:auto}.desktop-only{display:none!important}.mobile-only{display:block!important}}@media (max-width: 480px){h1{font-size:1.5rem!important}h2{font-size:1.25rem!important}h3{font-size:1.125rem!important}.hero-title{font-size:1.75rem!important}.section-title{font-size:1.5rem!important}.container{padding:0 .75rem}.card{padding:1rem!important}button,.btn-primary,.btn-gradient{padding:.75rem 1.25rem!important;font-size:.9375rem!important}}@media (max-width: 768px) and (orientation: landscape){.hero{min-height:50vh}.modal-content{max-height:90vh}}@media (hover: none) and (pointer: coarse){button,a,input,select{min-height:48px}*:hover{transform:none!important}*:focus{outline:3px solid rgba(124,52,217,.3);outline-offset:2px}}@media screen and (max-width: 768px){input,textarea,select{font-size:16px!important}input[type=text],input[type=email],input[type=password],input[type=number],input[type=url],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.5rem}select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:left .75rem center;padding-left:2.5rem!important}}@media (max-width: 768px){div[style*="gridTemplateColumns: 'repeat(auto-fit"]{grid-template-columns:1fr!important;gap:1rem!important}div[style*="background: 'white'"]{padding:1.25rem!important;border-radius:.75rem!important}div[style*="display: 'flex'"] button[style*="padding: '0.75rem"]{padding:.875rem 1rem!important;font-size:.875rem!important;white-space:nowrap;flex-shrink:0}div[style*="gridTemplateColumns: 'repeat(auto-fill"]{grid-template-columns:1fr!important;gap:1rem!important}}@media (max-width: 768px){div[style*="display: 'grid'"]{grid-template-columns:1fr!important;gap:1rem!important}div[style*="background: 'white'"]{border-radius:1rem!important;padding:1.25rem!important}div[style*="padding: '2rem'"]{padding:1.25rem!important}}@media (max-width: 768px){div[style*="display: 'flex'"]{flex-direction:column!important;align-items:center!important;text-align:center}div[style*=gridTemplateColumns]{grid-template-columns:repeat(2,1fr)!important;gap:.75rem!important}div[style*="display: 'flex'"] button{padding:.75rem 1rem!important;font-size:.875rem!important;min-height:44px}div[style*="gridTemplateColumns: 'repeat(auto-fill"]{grid-template-columns:1fr!important}}@supports (padding: max(0px)){.navbar-container{padding-left:max(1rem,env(safe-area-inset-left));padding-right:max(1rem,env(safe-area-inset-right))}.footer{padding-bottom:max(2rem,env(safe-area-inset-bottom))}.main-content{padding-left:max(0px,env(safe-area-inset-left));padding-right:max(0px,env(safe-area-inset-right))}}@media (max-width: 768px){div[style*="maxWidth: '1400px'"],div[style*="maxWidth: '1600px'"],div[style*="maxWidth: 1400px"],div[style*="maxWidth: 1600px"]{padding:.75rem .5rem!important}div[style*="fontSize: '3rem'"],div[style*="fontSize: 3rem"]{font-size:1.5rem!important;line-height:1.2!important}div[style*="fontSize: '2.5rem'"],div[style*="fontSize: 2.5rem"]{font-size:1.375rem!important;line-height:1.2!important}div[style*="fontSize: '2rem'"],div[style*="fontSize: 2rem"]{font-size:1.25rem!important}div[style*="fontSize: '1.25rem'"],div[style*="fontSize: 1.25rem"]{font-size:.875rem!important}div[style*="fontSize: '1.125rem'"],div[style*="fontSize: 1.125rem"]{font-size:.8125rem!important}div[style*="fontSize: '1rem'"],div[style*="fontSize: 1rem"]{font-size:.875rem!important}div[style*="marginBottom: '3rem'"],div[style*="marginBottom: 3rem"]{margin-bottom:1.5rem!important}div[style*="marginBottom: '2rem'"],div[style*="marginBottom: 2rem"]{margin-bottom:1.25rem!important}div[style*="marginBottom: '1.5rem'"],div[style*="marginBottom: 1.5rem"]{margin-bottom:1rem!important}div[style*="marginBottom: '1rem'"],div[style*="marginBottom: 1rem"]{margin-bottom:.75rem!important}div[style*="padding: '2rem 1rem'"],div[style*="padding: 2rem 1rem"]{padding:.75rem .5rem!important}div[style*="padding: '2rem'"],div[style*="padding: 2rem"]{padding:1.25rem!important}div[style*="padding: '1.5rem'"],div[style*="padding: 1.5rem"]{padding:1rem!important}div[style*="padding: '1rem'"],div[style*="padding: 1rem"]{padding:.75rem!important}div[style*="gap: '2rem'"],div[style*="gap: 2rem"]{gap:1rem!important}div[style*="gap: '1.5rem'"],div[style*="gap: 1.5rem"]{gap:.75rem!important}div[style*="gap: '1rem'"],div[style*="gap: 1rem"]{gap:.625rem!important}div[style*="gridTemplateColumns: 'repeat(auto-fill"],div[style*="gridTemplateColumns: 'repeat(auto-fit"]{grid-template-columns:1fr!important}div[style*="display: 'flex'"]:not([style*="flexDirection: 'column'"]){flex-wrap:wrap}div[style*="display: 'flex'"] button{flex:1 1 auto;min-width:120px}}@media (max-width: 768px){.hero{min-height:45vh!important;padding:1.5rem .75rem!important}.hero-content{padding:1.25rem .75rem!important}.hero-title{font-size:1.5rem!important;margin-bottom:.75rem!important}.hero-subtitle{font-size:.875rem!important;margin-bottom:1.25rem!important}.section{padding:2rem .75rem!important}.section-title{font-size:1.5rem!important;margin-bottom:.75rem!important}.section-subtitle{font-size:.875rem!important;margin-bottom:1.5rem!important}div[style*="gridTemplateColumns: 'repeat(auto-fit"]{grid-template-columns:1fr!important;gap:1rem!important}div[style*="padding: '2rem'"]{padding:1.25rem!important}div[style*="fontSize: '4rem'"]{font-size:2.5rem!important}div[style*="fontSize: '1.5rem'"]{font-size:1.125rem!important}div[style*="fontSize: '1rem'"]{font-size:.875rem!important}.hero-content a,.section a{padding:.75rem 1.25rem!important;font-size:.875rem!important;min-height:44px}}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#f5f5f5}@media (min-width: 1024px){html{font-size:16px}body{font-size:.875rem}h1{font-size:2.4rem!important}h2{font-size:1.92rem!important}h3{font-size:1.536rem!important}h4{font-size:1.228rem!important}p,span,div,a,button,input,textarea,select,label,li{font-size:.875rem!important}button{padding:.6rem 1.2rem!important}input,textarea,select{padding:.6rem!important;font-size:.875rem!important}}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}
