@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap);*{box-sizing:border-box;margin:0;padding:0}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:linear-gradient(135deg,#f5f5f0,#e8f4f8);color:#2c3e50;font-family:Montserrat,sans-serif;min-height:100vh}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}:root{--primary-color:#fffef7;--secondary-color:#f0f8f4;--accent-gradient:linear-gradient(135deg,#b8d4c8,#a8d0e6);--text-primary:#2c3e50;--text-secondary:#5a6c7d;--border-radius:16px;--shadow:0 4px 20px #00000014;--shadow-hover:0 8px 30px #0000001f}.navbar{background:var(--primary-color);box-shadow:var(--shadow);padding:1rem 0;position:-webkit-sticky;position:sticky;top:0;z-index:1000}.navbar-container{align-items:center;display:flex;justify-content:space-between;margin:0 auto;max-width:1200px;padding:0 20px}.navbar-brand{align-items:center;color:var(--text-primary);display:flex;font-size:1.5rem;font-weight:700;gap:.75rem;text-decoration:none;transition:transform .2s}.navbar-brand:hover{transform:scale(1.05)}.navbar-icon{color:var(--accent-gradient);height:32px;width:32px}.navbar-menu{align-items:center;display:flex;gap:1.5rem}.navbar-link{color:var(--text-secondary);font-weight:500;position:relative;text-decoration:none;transition:color .2s}.navbar-link:hover{color:var(--text-primary)}.navbar-link:after{background:var(--accent-gradient);bottom:-4px;content:"";height:2px;left:0;position:absolute;transition:width .3s;width:0}.navbar-link:hover:after{width:100%}.navbar-button{background:var(--accent-gradient);border:none;border-radius:var(--border-radius);color:#fff;cursor:pointer;display:inline-block;font-family:Montserrat,sans-serif;font-weight:600;padding:.6rem 1.5rem;text-decoration:none;transition:transform .2s,box-shadow .2s}.navbar-button:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px)}@media (max-width:768px){.navbar-container{flex-direction:column;gap:1rem}.navbar-menu{flex-wrap:wrap;gap:1rem;justify-content:center}.navbar-brand{font-size:1.2rem}}.home{flex:1 1}.home-hero{align-items:center;display:flex;min-height:calc(100vh - 80px);padding:60px 20px}.home-container{margin:0 auto;max-width:1200px;width:100%}.home-content{text-align:center}.home-title{-webkit-text-fill-color:#0000;background:var(--accent-gradient);-webkit-background-clip:text;background-clip:text;font-size:4rem;font-weight:700;letter-spacing:-.02em;margin-bottom:1.5rem}.home-subtitle{color:var(--text-secondary);font-size:1.5rem;font-weight:400;margin-bottom:4rem}.home-features{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin-bottom:4rem}.feature-card{background:var(--primary-color);border-radius:var(--border-radius);box-shadow:var(--shadow);padding:2.5rem;transition:transform .3s,box-shadow .3s}.feature-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-8px)}.feature-icon{align-items:center;background:var(--accent-gradient);border-radius:50%;color:#fff;display:flex;height:64px;justify-content:center;margin:0 auto 1.5rem;padding:16px;width:64px}.feature-icon svg{height:100%;width:100%}.feature-card h3{color:var(--text-primary);font-size:1.5rem;font-weight:600;margin-bottom:1rem}.feature-card p{color:var(--text-secondary);line-height:1.6}.home-actions{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center}.btn{border:none;border-radius:var(--border-radius);cursor:pointer;display:inline-block;font-family:Montserrat,sans-serif;font-size:1.1rem;font-weight:600;padding:1rem 2.5rem;text-decoration:none;transition:transform .2s,box-shadow .2s}.btn-primary{background:var(--accent-gradient);box-shadow:var(--shadow);color:#fff}.btn-primary:hover{box-shadow:var(--shadow-hover);transform:translateY(-2px)}.btn-secondary{background:#0000;border:2px solid var(--text-primary);color:var(--text-primary)}.btn-secondary:hover{background:var(--text-primary);color:#fff;transform:translateY(-2px)}@media (max-width:768px){.home-title{font-size:2.5rem}.home-subtitle{font-size:1.2rem}.home-features{gap:1.5rem;grid-template-columns:1fr}.feature-card{padding:2rem}}.auth-page{align-items:center;display:flex;justify-content:center;min-height:calc(100vh - 80px);padding:40px 20px}.auth-container{max-width:450px;width:100%}.auth-card{background:var(--primary-color);border-radius:var(--border-radius);box-shadow:var(--shadow-hover);padding:3rem}.auth-header{margin-bottom:2rem;text-align:center}.auth-header h1{color:var(--text-primary);font-size:2rem;font-weight:700;margin-bottom:.5rem}.auth-header p{color:var(--text-secondary);font-size:1rem}.auth-form,.form-group{margin-bottom:1.5rem}.form-group label{color:var(--text-primary);display:block;font-weight:500;margin-bottom:.5rem}.form-group input{background:#fff;border:2px solid #e0e0e0;border-radius:var(--border-radius);font-family:Montserrat,sans-serif;font-size:1rem;padding:.875rem 1.25rem;transition:border-color .2s,box-shadow .2s;width:100%}.form-group input:focus{border-color:#b8d4c8;box-shadow:0 0 0 3px #b8d4c81a;outline:none}.btn-block{width:100%}.auth-error{background:#fee;border:1px solid #fcc;border-radius:var(--border-radius);color:#c33;margin-bottom:1.5rem;padding:1rem;text-align:center}.auth-footer{color:var(--text-secondary);text-align:center}.auth-footer a{color:var(--text-primary);font-weight:600;text-decoration:none}.auth-footer a:hover{text-decoration:underline}@media (max-width:768px){.auth-card{padding:2rem}}.weather-card{background:var(--primary-color);border-radius:var(--border-radius);box-shadow:var(--shadow);padding:1.5rem;transition:transform .2s,box-shadow .2s}.weather-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}.weather-card-header{align-items:center;border-bottom:1px solid #e8e8e8;display:flex;justify-content:space-between;margin-bottom:1rem;padding-bottom:1rem}.weather-card-header h3{color:var(--text-primary);font-size:1.5rem;font-weight:600;margin:0}.weather-icon{height:64px;width:64px}.weather-card-body{text-align:center}.weather-temp{-webkit-text-fill-color:#0000;background:var(--accent-gradient);-webkit-background-clip:text;background-clip:text;font-size:3rem;font-weight:700;margin-bottom:.5rem}.weather-desc{color:var(--text-secondary);font-size:1.1rem;margin-bottom:1rem;text-transform:capitalize}.weather-details{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center}.weather-detail{align-items:center;color:var(--text-secondary);display:flex;font-size:.9rem;gap:.5rem}.weather-detail svg{height:18px;width:18px}@media (max-width:768px){.weather-card{padding:1.25rem}.weather-temp{font-size:2.5rem}}.dashboard-header{margin-bottom:3rem;text-align:center}.dashboard-header h1{color:var(--text-primary);font-size:2.5rem;font-weight:700;margin-bottom:.5rem}.dashboard-header p{color:var(--text-secondary);font-size:1.2rem}.status-banner{align-items:center;background:linear-gradient(135deg,#f8fbff,#eef5ff);border:1px solid #e6eef8;border-radius:16px;box-shadow:0 12px 30px #0000000d;display:flex;gap:.75rem;margin-bottom:1.5rem;padding:1rem 1.25rem}.status-dot{border-radius:50%;flex-shrink:0;height:14px;width:14px}.status-online{background:#2bd96b}.status-maintenance{background:#ffb400}.status-limited{background:#ff8c42}.status-offline{background:#f45b69}.status-auto{background:#6c63ff}.status-banner-title{color:var(--text-primary);font-weight:700}.status-banner-text{color:var(--text-secondary)}.dashboard-news{margin-bottom:2rem}.news-card{background:linear-gradient(135deg,#fff,#f5f9ff);border:1px solid #e9eef5;border-radius:18px;box-shadow:0 14px 32px #0000000f;padding:1.25rem}.news-card-header{font-weight:700;margin-bottom:.75rem}.news-item+.news-item{border-top:1px solid #eef2f0;margin-top:.85rem;padding-top:.85rem}.news-content,.news-title{align-items:center;display:flex;gap:.5rem}.news-title span{color:var(--text-primary);font-weight:600}.news-content span{color:var(--text-secondary)}.news-arrow,.news-icon{color:#5ca8ff;height:18px;width:18px}.weather-search{margin-bottom:3rem}.search-form{display:flex;gap:1rem;margin:0 auto;max-width:600px}.search-input{background:var(--primary-color);border:2px solid #e0e0e0;border-radius:var(--border-radius);flex:1 1;font-family:Montserrat,sans-serif;font-size:1rem;padding:1rem 1.5rem;transition:border-color .2s,box-shadow .2s}.search-input:focus{border-color:#b8d4c8;box-shadow:0 0 0 3px #b8d4c81a;outline:none}.error-message{background:#fee;border:1px solid #fcc;border-radius:var(--border-radius);color:#c33;margin-top:1rem;padding:1rem;text-align:center}.current-weather-section{margin-bottom:3rem}.cities-section h2,.current-weather-section h2{color:var(--text-primary);font-size:2rem;font-weight:600;margin-bottom:1.5rem}.weather-grid{grid-gap:1.5rem;display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}.empty-state{color:var(--text-secondary);font-size:1.1rem;padding:3rem;text-align:center}@media (max-width:768px){.dashboard-header h1{font-size:2rem}.dashboard-header p{font-size:1rem}.search-form{flex-direction:column}.weather-grid{grid-template-columns:1fr}}.settings-header{margin-bottom:2rem;text-align:center}.settings-header h1{color:var(--text-primary);font-size:2.5rem;font-weight:700}.settings-tabs{border-bottom:2px solid #e8e8e8;display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:2rem}.tab-button{background:none;border:none;border-bottom:3px solid #0000;color:var(--text-secondary);cursor:pointer;font-family:Montserrat,sans-serif;font-size:1rem;font-weight:500;margin-bottom:-2px;padding:1rem 1.5rem;transition:color .2s,border-color .2s}.tab-button.active,.tab-button:hover{color:var(--text-primary)}.tab-button.active{border-bottom-color:#b8d4c8}.settings-content{background:var(--primary-color);border-radius:var(--border-radius);box-shadow:var(--shadow);padding:2.5rem}.settings-section h2{color:var(--text-primary);font-size:1.8rem;font-weight:600;margin-bottom:2rem}.settings-form{max-width:500px}.checkbox-group label{align-items:center;cursor:pointer;display:flex;gap:.75rem}.checkbox-group input[type=checkbox]{cursor:pointer;height:20px;width:20px}.settings-form select{background:#fff;border:2px solid #e0e0e0;border-radius:var(--border-radius);cursor:pointer;font-family:Montserrat,sans-serif;font-size:1rem;padding:.875rem 1.25rem;transition:border-color .2s,box-shadow .2s;width:100%}.settings-form select:focus{border-color:#b8d4c8;box-shadow:0 0 0 3px #b8d4c81a;outline:none}.telegram-info{max-width:500px}.telegram-info p{color:var(--text-secondary);font-size:1.1rem;margin-bottom:1.5rem}.success-message{background:#efe;border:1px solid #cfc;border-radius:var(--border-radius);color:#3c3;margin-bottom:1rem;padding:1rem}@media (max-width:768px){.settings-content{padding:1.5rem}.settings-tabs{justify-content:center}}.about-content{background:var(--primary-color);border-radius:var(--border-radius);box-shadow:var(--shadow);margin:0 auto;max-width:900px;padding:3rem}.about-content h1{color:var(--text-primary);font-size:2.5rem;font-weight:700;margin-bottom:2rem;text-align:center}.about-section{margin-bottom:3rem}.about-section:last-child{margin-bottom:0}.about-section h2{color:var(--text-primary);font-size:1.8rem;font-weight:600;margin-bottom:1rem}.about-section p{color:var(--text-secondary);font-size:1.1rem;line-height:1.8;margin-bottom:1rem}.tech-grid{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin-top:1.5rem}.tech-item{background:#fff;border-radius:var(--border-radius);box-shadow:0 2px 10px #0000000d;padding:1.5rem}.tech-item h3{color:var(--text-primary);font-size:1.3rem;font-weight:600;margin-bottom:1rem}.tech-item ul{list-style:none;padding:0}.tech-item li{border-bottom:1px solid #f0f0f0;color:var(--text-secondary);padding:.5rem 0}.tech-item li:last-child{border-bottom:none}.features-list{list-style:none;padding:0}.features-list li{color:var(--text-secondary);font-size:1.1rem;line-height:1.6;padding:.75rem 0 .75rem 2rem;position:relative}.features-list li:before{color:#b8d4c8;content:"✓";font-size:1.2rem;font-weight:700;left:0;position:absolute}@media (max-width:768px){.about-content{padding:2rem 1.5rem}.about-content h1{font-size:2rem}.about-section h2{font-size:1.5rem}.tech-grid{grid-template-columns:1fr}}.contacts-content{background:var(--primary-color);border-radius:var(--border-radius);box-shadow:var(--shadow);margin:0 auto;max-width:900px;padding:3rem}.contacts-content h1{color:var(--text-primary);font-size:2.5rem;font-weight:700;margin-bottom:2rem;text-align:center}.contacts-section{margin-bottom:3rem;text-align:center}.contacts-section p{color:var(--text-secondary);font-size:1.1rem;line-height:1.8}.contacts-section h2{color:var(--text-primary);font-size:1.8rem;font-weight:600;margin-bottom:1rem}.contact-note{color:var(--text-secondary);font-size:1rem;font-style:italic}.contacts-grid{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin:3rem 0}.contact-card{background:#fff;border-radius:var(--border-radius);box-shadow:0 2px 10px #0000000d;padding:2rem;text-align:center;transition:transform .2s,box-shadow .2s}.contact-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}.contact-icon{align-items:center;background:var(--accent-gradient);border-radius:50%;color:#fff;display:flex;height:64px;justify-content:center;margin:0 auto 1.5rem;padding:16px;width:64px}.contact-icon svg{height:100%;width:100%}.contact-card h3{color:var(--text-primary);font-size:1.3rem;font-weight:600;margin-bottom:.5rem}.contact-card p{color:var(--text-secondary);font-size:1rem}@media (max-width:768px){.contacts-content{padding:2rem 1.5rem}.contacts-content h1{font-size:2rem}.contacts-grid{gap:1.5rem;grid-template-columns:1fr}}.admin-header{margin-bottom:2rem;text-align:center}.admin-header h1{font-size:2rem;margin-bottom:.25rem}.admin-header p{color:var(--text-secondary)}.admin-message{background:#eef8f1;border:1px solid #cfe7d7;border-radius:var(--border-radius);color:#1b6b3d;margin-bottom:1rem;padding:.75rem 1rem}.admin-grid{grid-gap:1.5rem;display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}.admin-card{background:linear-gradient(135deg,#fff,#f4f8ff);border:1px solid #e6ecf5;border-radius:var(--border-radius);box-shadow:0 14px 30px #0000000f;padding:1.5rem}.admin-card h2,.admin-form{margin-bottom:1rem}.admin-form{display:flex;flex-direction:column;gap:.75rem}.admin-form input,.admin-form textarea,.admin-role-control select{background:#fff;border:1px solid #e0e0e0;border-radius:var(--border-radius);font-size:.95rem;padding:.75rem 1rem;width:100%}.admin-form button{align-self:flex-start}.admin-list{display:flex;flex-direction:column;gap:.75rem}.admin-list-item{align-items:center;background:#f9fbff;border:1px solid #e9eef5;border-radius:var(--border-radius);display:flex;gap:1rem;justify-content:space-between;padding:1rem}.admin-user-name{font-weight:600}.admin-user-meta{color:var(--text-secondary);font-size:.9rem}.admin-role-control select{min-width:150px}.admin-news-title{font-weight:600;margin-bottom:.25rem}.admin-news-content,.admin-news-title{align-items:center;display:flex;gap:.5rem}.admin-news-content{color:var(--text-secondary);font-size:.95rem}.admin-empty{color:var(--text-secondary);padding:.75rem 0;text-align:center}.status-list{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1rem}.status-item{align-items:center;background:linear-gradient(135deg,#f9fbff,#eef4ff);border:1px solid #e6ecf5;border-radius:16px;display:flex;gap:.75rem;padding:.9rem 1rem;transition:border-color .2s,background .2s}.status-item input{display:none}.status-item.active{background:linear-gradient(135deg,#eef4ff,#e3ecff)}.status-marker{border:3px solid #c5d8ff;border-radius:50%;display:grid;flex-shrink:0;height:22px;place-items:center;width:22px}.status-marker span{border-radius:50%;display:block;height:10px;width:10px}.status-text .status-title{font-weight:700}.status-text .status-subtitle{color:var(--text-secondary);font-size:.95rem;margin-top:.1rem}.status-note{background:#fff;border:1px solid #e6ecf5;border-radius:var(--border-radius);color:var(--text-primary);margin-bottom:.75rem;min-height:70px;padding:.75rem 1rem;resize:vertical;width:100%}.admin-news-arrow,.admin-news-icon{color:#5ca8ff;height:18px;width:18px}.App{display:flex;flex-direction:column;min-height:100vh}.loading{align-items:center;color:var(--text-secondary);display:flex;font-size:1.2rem;justify-content:center;min-height:80vh}.container{margin:0 auto;max-width:1200px;padding:0 20px;width:100%}.page{flex:1 1;padding:40px 20px}@media (max-width:768px){.page{padding:20px 10px}}
/*# sourceMappingURL=main.2854c559.css.map*/