::-webkit-scrollbar{width:5px}::-webkit-scrollbar-track{background:var(--primary-bg)}::-webkit-scrollbar-thumb{background:var(--tertiary-bg);border-radius:5px}::-webkit-scrollbar-thumb:hover{background:#5a5c61}body{background-color:var(--primary-bg);color:var(--text-color)}.navbar{background-color:var(--secondary-bg);padding:1rem 2rem;position:fixed;width:100%;top:0;z-index:1000}.nav-content{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}.logo{display:flex;align-items:center;gap:1rem;text-decoration:none;color:var(--text-color)}.logo img{width:40px;height:40px;border-radius:50%}.logo span{font-size:1.5rem;font-weight:700}.nav-links{display:flex;align-items:center;gap:2rem;height:100%}.nav-links a{color:var(--text-color);text-decoration:none;font-weight:500;transition:color .3s;height:100%;display:flex;align-items:center}.nav-links a.nav-commands:hover,.nav-links a.nav-home:hover{color:var(--accent-color)}.nav-premium{color:#ebca11!important}.nav-premium:hover::before{transform:translateX(100%)}.nav-premium:hover{color:#ffed89!important}.language-switcher{position:relative;user-select:none}.selected-lang{display:flex;align-items:center;gap:8px;cursor:pointer;padding:6px 12px;border-radius:6px;transition:background .3s}.selected-lang:hover{background:var(--tertiary-bg)}.lang-option img,.selected-lang img{width:24px;height:24px;border-radius:50%;object-fit:cover}.arrow-icon{transition:transform .3s}.language-switcher.active .arrow-icon{transform:rotate(180deg)}.language-menu{position:absolute;top:calc(100% + 8px);right:0;background:var(--secondary-bg);border-radius:6px;padding:8px;display:none;min-width:150px;box-shadow:0 4px 12px rgba(0,0,0,.2);border:1px solid var(--tertiary-bg)}.language-switcher.active .language-menu{display:block}.lang-option{display:flex;align-items:center;gap:8px;padding:8px 12px;cursor:pointer;border-radius:4px;transition:background .2s}.lang-option:hover{background:var(--tertiary-bg)}.hamburger{display:none;flex-direction:column;justify-content:space-between;width:30px;height:21px;cursor:pointer;z-index:2000}.hamburger span{display:block;height:3px;width:100%;background-color:var(--text-color);transition:.3s}.mobile-nav{display:none;position:fixed;top:0;right:-100%;width:70%;height:100vh;background-color:var(--secondary-bg);padding:80px 2rem 2rem;transition:right .3s;z-index:1999;box-shadow:-5px 0 15px rgba(0,0,0,.2);overflow-y:auto}.mobile-nav.active{right:0}.mobile-nav a{display:block;color:var(--text-color);text-decoration:none;padding:1rem 0;font-size:1.2rem;border-bottom:1px solid var(--tertiary-bg)}.hamburger.active span:first-child{transform:translateY(9px) rotate(45deg)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}@media (max-width:768px){.nav-links{display:none}.hamburger{display:flex}.mobile-nav{display:block}.nav-content{position:relative}.hamburger-container{position:fixed;top:1.5rem;right:2rem;z-index:2000}.mobile-nav .language-switcher{position:relative;width:100%;margin-top:20px}.mobile-nav .language-menu{position:static;width:100%;margin-top:10px;box-shadow:none;background:var(--tertiary-bg)}.mobile-nav .lang-option,.mobile-nav .selected-lang{justify-content:center}}.auth-container{position:relative;display:flex;align-items:center;margin-left:-1.5rem;height:48px;min-width:120px;justify-content:flex-end}.loading-spinner{display:flex;align-items:center;justify-content:center;position:absolute;left:50%;transform:translateX(-50%);height:100%;width:100%}.spinner{border:3px solid rgba(255,255,255,.1);border-radius:50%;border-top:3px solid var(--primary-bg);width:24px;height:24px;animation:1s linear infinite spin}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.login-button{display:flex;align-items:center;gap:8px;background-color:var(--accent-color);color:#fff;padding:8px 16px;border-radius:6px;text-decoration:none;font-weight:500;transition:background-color .3s,box-shadow .3s}.login-button:hover{box-shadow:0 4px 8px rgba(0,0,0,.2);background-color:#018e67}.user-profile{position:relative;width:100%;display:flex;justify-content:flex-end}.user-avatar-container{display:flex;align-items:center;gap:8px;cursor:pointer;padding:6px 12px;border-radius:6px;transition:background .3s}.user-avatar-container:hover{background:var(--tertiary-bg)}.user-avatar{width:32px;height:32px;border-radius:50%;object-fit:cover}.username{color:var(--text-color);font-weight:500}.user-profile.active .arrow-icon{transform:rotate(180deg)}.user-menu{position:absolute;top:calc(100% + 10px);right:0;background:var(--secondary-bg);border-radius:8px;padding:8px;display:none;min-width:220px;box-shadow:0 5px 15px rgba(0,0,0,.2);z-index:1000;border:1px solid var(--tertiary-bg)}.user-profile.active .user-menu{display:block}.user-menu-item{display:flex;align-items:center;gap:10px;padding:10px 12px;text-decoration:none;color:var(--text-secondary);border-radius:6px;transition:background .2s;font-size:.95rem}.user-menu-item:hover{background:var(--tertiary-bg);color:var(--text-color)}.user-menu-item svg{width:18px;height:18px;stroke-width:2}.user-menu-item.logout{color:var(--red)}.user-menu-item.logout:hover{background:rgba(231,76,60,.1);color:var(--red)}.user-menu-item.logout svg{stroke:var(--red)}.user-menu-item.premium{color:var(--premium-color)}.user-menu-item.premium:hover{background:rgba(235,202,17,.1);color:var(--premium-hover)}.user-menu-item.premium svg{stroke:var(--premium-color)}.mobile-nav .auth-container{width:100%;margin:20px 0 0;justify-content:center}.mobile-nav .user-menu{position:static;width:100%;margin-top:10px;box-shadow:none;background:var(--tertiary-bg)}.mobile-nav .user-avatar-container{justify-content:center}@media (max-width:768px){.mobile-nav .auth-container{width:100%;margin:20px 0 0;justify-content:center;min-width:unset;height:auto}.mobile-nav .loading-spinner{position:relative;transform:none;left:auto}.mobile-nav .user-profile{width:100%}.mobile-nav .user-avatar-container{justify-content:center;width:100%;background:var(--secondary-bg);border-radius:6px;padding:10px}.mobile-nav .user-avatar-container:hover,.mobile-nav .user-profile.active .user-avatar-container{background:var(--tertiary-bg)}.mobile-nav .user-menu{position:static;width:100%;margin-top:10px;box-shadow:none;background:var(--tertiary-bg);display:none;border-radius:6px}.mobile-nav .user-profile.active .user-menu{display:block}.mobile-nav .user-menu-item{justify-content:center;padding:12px}.mobile-nav .user-menu-item svg{margin-right:5px}.mobile-nav .user-avatar{width:28px;height:28px}.mobile-nav .username{display:block}.mobile-nav .user-profile .arrow-icon{transition:transform .3s}.mobile-nav .user-profile.active .arrow-icon{transform:rotate(180deg)}.mobile-nav .login-button{width:100%;justify-content:center;padding:10px;font-size:1.1rem;border-radius:6px;margin-top:20px}}@media (max-width:920px){.nav-links .username{display:none}.mobile-nav .username{display:block}}footer{background-color:var(--secondary-bg);padding:4rem 2rem 2rem;margin-top:4rem}.footer-content{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr repeat(3,1fr);gap:2rem;text-align:center}.footer-section{text-align:left}.footer-section:not(.logo-section){justify-self:end;text-align:left}.footer-section.logo-section{display:flex;flex-direction:column;gap:1rem}.footer-section.logo-section .footer-logo{display:flex;align-items:center;gap:1rem}.footer-section.logo-section .footer-logo img{width:50px;height:50px;border-radius:50%}.footer-section.logo-section .footer-logo span{font-size:1.5rem;font-weight:700}.footer-section.logo-section .footer-description{color:var(--text-secondary);line-height:1.6;max-width:300px}.footer-section h3{margin-bottom:1rem}.footer-section ul{list-style:none;padding:0;margin:0}.footer-section ul li{margin-bottom:.5rem}.footer-section ul li a{color:var(--text-secondary);text-decoration:none;transition:color .3s}.footer-section ul li a:hover{color:var(--accent-color)}.copyright{display:flex;justify-content:space-between;align-items:center;text-align:center;padding-top:2rem;margin-top:2rem;border-top:2px solid var(--tertiary-bg);color:var(--text-secondary);max-width:1200px;margin-left:auto;margin-right:auto}.social-icons{display:flex;align-items:center;gap:1rem;margin-left:auto}.social-icons a{display:flex;align-items:center;justify-content:center;width:24px;height:24px}.social-icons img{transition:transform .3s,box-shadow .3s}.social-icons a:hover img{transform:translateY(-5px)}@media (max-width:768px){.footer-content{grid-template-columns:1fr;text-align:center;justify-items:center}.footer-section.logo-section{text-align:center;align-items:center}.footer-section.logo-section .footer-description{text-align:center}.footer-section{width:100%;max-width:300px;margin-bottom:1.5rem;text-align:center}.footer-section:not(.logo-section){justify-self:center;text-align:center}.footer-section h3{text-align:center}.footer-section ul{display:flex;flex-direction:column;align-items:center;padding:0;margin:0}.footer-section ul li{margin-bottom:.5rem}.copyright{flex-direction:column;gap:1rem}.social-icons{margin-left:0;margin-top:1rem}}