:root{--primary:#3b82f6;--primary-hover:#2563eb;--success:#22c55e;--warning:#f59e0b;--danger:#ef4444;--gray-50:#f9fafb;--gray-100:#f3f4f6;--gray-200:#e5e7eb;--gray-300:#d1d5db;--gray-400:#9ca3af;--gray-500:#6b7280;--gray-600:#4b5563;--gray-700:#374151;--gray-800:#1f2937;--gray-900:#111827;--radius:8px;--shadow:0 1px 3px rgba(0,0,0,0.1);--shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1)}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:var(--gray-50);color:var(--gray-900);line-height:1.5}a{color:var(--primary);text-decoration:none}a:hover{text-decoration:underline}.layout{display:flex;min-height:100vh}.sidebar{width:240px;background:var(--gray-900);color:white;padding:1rem}.sidebar-nav{display:flex;flex-direction:column;gap:.5rem}.sidebar-link{color:var(--gray-300);padding:.75rem 1rem;border-radius:var(--radius);transition:all .2s}.sidebar-link:hover{background:var(--gray-800);color:white;text-decoration:none}.sidebar-link.active{background:var(--primary);color:white}.main-content{flex:1 1;padding:2rem;overflow-y:auto}.header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid var(--gray-200)}.header h1{font-size:1.5rem;font-weight:600}.card{background:white;border-radius:var(--radius);box-shadow:var(--shadow);padding:1.5rem;margin-bottom:1rem}.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border:none;border-radius:var(--radius);font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-primary{background:var(--primary);color:white}.btn-primary:hover{background:var(--primary-hover)}.btn-success{background:var(--success);color:white}.btn-warning{background:var(--warning);color:white}.btn-danger{background:var(--danger);color:white}.btn-outline{background:transparent;border:1px solid var(--gray-300);color:var(--gray-700)}.btn-outline:hover{background:var(--gray-100)}.btn:disabled{opacity:.5;cursor:not-allowed}.form-group{margin-bottom:1rem}.form-label{display:block;margin-bottom:.25rem;font-size:.875rem;font-weight:500;color:var(--gray-700)}.form-input{width:100%;padding:.5rem .75rem;border:1px solid var(--gray-300);border-radius:var(--radius);font-size:.875rem;transition:border-color .2s}.form-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(59,130,246,.1)}.badge{display:inline-block;padding:.25rem .5rem;border-radius:9999px;font-size:.75rem;font-weight:500}.badge-success{background:rgba(34,197,94,.1);color:var(--success)}.badge-warning{background:rgba(245,158,11,.1);color:var(--warning)}.badge-danger{background:rgba(239,68,68,.1);color:var(--danger)}.badge-info{background:rgba(59,130,246,.1);color:var(--primary)}.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);grid-gap:1px;gap:1px;background:var(--gray-200);border-radius:var(--radius);overflow:hidden}.calendar-header{background:var(--gray-100);padding:.75rem;text-align:center;font-weight:500;font-size:.875rem}.calendar-day{background:white;min-height:120px;padding:.5rem;position:relative}.calendar-day.empty{background:var(--gray-50)}.calendar-day-number{color:var(--gray-500)}.calendar-day-number,.content-item{font-size:.75rem;margin-bottom:.25rem}.content-item{background:var(--gray-100);border-radius:4px;padding:.375rem .5rem;cursor:-webkit-grab;cursor:grab;transition:all .2s}.content-item:hover{background:var(--gray-200)}.content-item.dragging{opacity:.5}.content-item-title{font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:1000}.modal{background:white;border-radius:var(--radius);box-shadow:var(--shadow-lg);max-width:600px;width:90%;max-height:90vh;overflow-y:auto}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.5rem;border-bottom:1px solid var(--gray-200)}.modal-body{padding:1.5rem}.modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--gray-500)}.loading{display:flex;align-items:center;justify-content:center;padding:2rem}.spinner{width:24px;height:24px;border:3px solid var(--gray-200);border-top-color:var(--primary);border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}.auth-container{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--gray-100)}.auth-card{background:white;border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:2rem;width:100%;max-width:400px}.auth-title{font-size:1.5rem;font-weight:700;margin-bottom:.5rem;text-align:center;color:var(--gray-900)}.auth-header{text-align:center;margin-bottom:1.5rem}.auth-icon{font-size:3rem;margin-bottom:.5rem}.auth-subtitle{font-size:.875rem;color:var(--gray-500);margin:0}.auth-footer{margin-top:1.5rem;text-align:center;font-size:.875rem}.auth-link{color:var(--primary);text-decoration:none;font-weight:500}.auth-link:hover{text-decoration:underline}.form-hint{display:block;font-size:.75rem;color:var(--gray-500);margin-top:.25rem}.form-optional{font-size:.75rem;color:var(--gray-400);font-weight:400}.alert{padding:.75rem 1rem;border-radius:var(--radius);margin-bottom:1rem;font-size:.875rem}.alert-success{background:rgba(34,197,94,.1);color:var(--success);border:1px solid rgba(34,197,94,.2)}.alert-error{background:rgba(239,68,68,.1);color:var(--danger);border:1px solid rgba(239,68,68,.2)}.alert-warning{background:rgba(245,158,11,.1);color:var(--warning);border:1px solid rgba(245,158,11,.2)}.table{width:100%;border-collapse:collapse}.table td,.table th{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--gray-200)}.table th{font-weight:500;font-size:.75rem;text-transform:uppercase;color:var(--gray-500)}.progress{height:8px;background:var(--gray-200);border-radius:9999px;overflow:hidden}.progress-bar{height:100%;background:var(--primary);transition:width .3s}.vk-section{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--gray-200)}.vk-section-title{font-weight:500;margin-bottom:.5rem}.channel-list{display:flex;flex-direction:column;gap:.5rem}.channel-item{display:flex;justify-content:space-between;align-items:center;padding:.75rem 1rem;background:var(--gray-50);border-radius:var(--radius)}.channel-info{flex:1 1}.channel-title{font-weight:500}.channel-username{font-size:.75rem;color:var(--gray-500)}@media (max-width:768px){.layout{flex-direction:column}.sidebar{width:100%}.calendar-grid{grid-template-columns:repeat(1,1fr)}.calendar-day{min-height:auto}}.landing{min-height:100vh;display:flex;flex-direction:column}.hero{display:flex;flex-wrap:wrap;align-items:center;gap:48px;padding:80px 24px;background:linear-gradient(135deg,var(--gray-900) 0,var(--gray-800) 100%);color:white}.hero-content{flex:1 1;min-width:300px;max-width:600px}.hero h1{font-size:3rem;font-weight:700;margin-bottom:16px;background:linear-gradient(90deg,var(--primary),#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.hero-subtitle{font-size:1.5rem;color:var(--gray-300);margin-bottom:24px}.hero-description{font-size:1.125rem;color:var(--gray-400);line-height:1.7;margin-bottom:32px}.hero-buttons{display:flex;gap:16px;flex-wrap:wrap}.btn-lg{padding:14px 28px;font-size:1.125rem}.hero-visual{flex:1 1;min-width:300px;display:flex;justify-content:center}.visual-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:24px;padding:40px;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);text-align:center}.card-icon{font-size:4rem;margin-bottom:24px}.card-stats{display:flex;gap:24px;justify-content:center;flex-wrap:wrap}.stat{display:flex;flex-direction:column;align-items:center}.stat-value{font-size:1.5rem;font-weight:700;color:var(--primary)}.stat-label{font-size:.875rem;color:var(--gray-400)}.features{padding:80px 24px;background:var(--gray-50)}.section-title{text-align:center;font-size:2.25rem;font-weight:700;margin-bottom:48px;color:var(--gray-900)}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));grid-gap:24px;gap:24px;max-width:1200px;margin:0 auto}.feature-card{background:white;border-radius:var(--radius);padding:32px;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s}.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}.feature-icon{font-size:2.5rem;margin-bottom:16px}.feature-card h3{font-size:1.25rem;font-weight:600;margin-bottom:12px;color:var(--gray-900)}.feature-card p{color:var(--gray-600);line-height:1.6}.tech-stack{padding:80px 24px;background:white}.tech-grid{display:flex;flex-direction:column;gap:16px;max-width:800px;margin:0 auto}.tech-item{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}.tech-badge{background:var(--gray-100);color:var(--gray-700);padding:8px 16px;border-radius:20px;font-size:.875rem;font-weight:500}.cta{padding:80px 24px;background:linear-gradient(135deg,var(--primary) 0,#8b5cf6 100%);color:white;text-align:center}.cta h2{font-size:2.25rem;font-weight:700;margin-bottom:16px}.cta p{font-size:1.25rem;margin-bottom:32px;opacity:.9}.cta .btn-primary{background:white;color:var(--primary)}.cta .btn-primary:hover{background:var(--gray-100)}.landing-footer{padding:24px;text-align:center;background:var(--gray-900);color:var(--gray-400)}@media (max-width:768px){.hero{padding:48px 16px;flex-direction:column}.hero h1{font-size:2rem}.hero-subtitle{font-size:1.25rem}.section-title{font-size:1.75rem}.features-grid{grid-template-columns:1fr}}