:root { --c-brand: #00e5ff; --c-brand-hover: #00b8cc; --c-text: #ffffff; --c-text-dim: #a0a0b0; --f-main: 'Inter', sans-serif; --f-head: 'Righteous', cursive; --c-bg: #050508; --c-panel: rgba(15, 15, 20, 0.65); --c-border: rgba(255, 255, 255, 0.08); }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--f-main); }
body { background: #000; color: var(--c-text); overflow: hidden; height: 100vh; width: 100vw; display: flex; flex-direction: column; }
a { text-decoration: none; }
.bg-video { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; object-fit: cover; z-index: -2; pointer-events: none; }
.bg-overlay { position: fixed; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%); z-index: -1; backdrop-filter: blur(4px); }
.layout-wrapper { display: flex; flex-direction: column; height: 100vh; width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 5%; }
.top-nav { width: 100%; padding: 40px 0; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 15px; font-family: var(--f-head); font-size: 28px; letter-spacing: 2px; text-transform: uppercase; }
.brand-logo { width: 40px; height: 40px; background-color: var(--c-brand); -webkit-mask: url('/assets/logo.svg') no-repeat center; mask: url('/assets/logo.svg') no-repeat center; -webkit-mask-size: contain; mask-size: contain; }
.hero-section { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-bottom: 100px; }
.hero-left { flex: 1; max-width: 650px; }
.hero-left h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; text-transform: uppercase; letter-spacing: -1px; }
.hero-left h1 span { color: var(--c-brand); text-shadow: 0 0 30px rgba(0,229,255,0.4); }
.hero-left p { font-size: 1.25rem; color: var(--c-text-dim); line-height: 1.6; margin-bottom: 40px; font-weight: 300; }
.app-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-app { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 16px 30px; border-radius: 14px; font-weight: 600; font-size: 16px; transition: 0.3s; backdrop-filter: blur(10px); }
.btn-app:hover { background: rgba(0,229,255,0.1); border-color: var(--c-brand); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.btn-app .material-icons-round { font-size: 24px; color: var(--c-brand); }
.hero-right { width: 100%; max-width: 420px; }
.glass-panel { background: rgba(10,10,15,0.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.login-panel { padding: 40px; }
.login-panel h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 30px; text-align: center; color: #fff; }
#login-form { display: flex; flex-direction: column; gap: 20px; }
.input-wrap { position: relative; display: flex; align-items: center; width: 100%; }
.input-wrap .material-icons-round { position: absolute; left: 16px; color: var(--c-text-dim); font-size: 20px; pointer-events: none; transition: 0.3s; }
.input-wrap input { width: 100%; padding: 18px 18px 18px 48px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: #fff; font-size: 15px; outline: none; transition: 0.3s; }
.input-wrap input:focus { border-color: var(--c-brand); background: rgba(0,0,0,0.6); }
.input-wrap input:focus + .material-icons-round, .input-wrap input:valid + .material-icons-round { color: var(--c-brand); }
.btn-submit { width: 100%; padding: 18px; background: var(--c-brand); color: #000; font-weight: 800; font-size: 16px; border: none; border-radius: 12px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; margin-top: 10px; }
.btn-submit:hover { background: #fff; box-shadow: 0 10px 25px rgba(0,229,255,0.3); transform: translateY(-2px); }
.forgot-pwd { display: block; text-align: center; margin-top: 20px; color: var(--c-text-dim); font-size: 13px; font-weight: 600; transition: 0.2s; }
.forgot-pwd:hover { color: var(--c-brand); }
.bottom-glass { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(5,5,10,0.6); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; z-index: 10; }
.glass-stats { display: flex; align-items: center; gap: 40px; }
.stat-item { display: flex; flex-direction: column; }
.stat-val { font-family: var(--f-head); font-size: 24px; color: var(--c-brand); letter-spacing: 1px; line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: 11px; font-weight: 600; color: var(--c-text-dim); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }
.glass-recent { display: flex; align-items: center; gap: 20px; }
.recent-lbl { font-size: 12px; font-weight: 600; color: var(--c-text-dim); }
.recent-avatars { display: flex; flex-direction: row-reverse; }
.r-avatar { width: 40px; height: 40px; border-radius: 50%; margin-left: -12px; border: 2px solid rgba(5,5,10,0.8); transition: 0.2s; cursor: pointer; }
.r-avatar:hover { transform: translateY(-5px); z-index: 10; border-color: var(--c-brand); }
.av-img, .av-txt { width: 100%; height: 100%; border-radius: 50%; border: 1px solid; }
.av-img { background-size: cover; background-position: center; }
.av-txt { display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.lang-switcher { display: flex; gap: 8px; margin-left: auto; }
.lang-switcher a { background: rgba(255,255,255,0.05); color: var(--c-text-dim); font-size: 13px; font-weight: 800; padding: 8px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; backdrop-filter: blur(5px); }
.lang-switcher a:hover { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.lang-switcher a.active { color: var(--c-brand); background: rgba(0, 229, 255, 0.1); border-color: rgba(0, 229, 255, 0.3); box-shadow: 0 0 15px rgba(0,229,255,0.2); }
.dashboard-layout { overflow-y: auto; padding-bottom: 50px; }
.dashboard-layout .top-nav { justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 25px 0; margin-bottom: 40px; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.top-menu { display: flex; gap: 10px; background: rgba(0,0,0,0.3); padding: 5px; border-radius: 12px; border: 1px solid var(--c-border); backdrop-filter: blur(10px); }
.menu-item { display: flex; align-items: center; gap: 8px; background: transparent; border: none; color: var(--c-text-dim); font-size: 14px; font-weight: 600; padding: 12px 20px; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.menu-item:hover { color: #fff; }
.menu-item.active { background: rgba(0, 229, 255, 0.15); color: var(--c-brand); }
.menu-item .material-icons-round { font-size: 18px; }
.user-mini-info { color: var(--c-text-dim); font-size: 14px; font-weight: 600; padding-left: 20px; border-left: 1px solid var(--c-border); }
.u-name-top { color: #fff; font-weight: 800; }
.logout-btn-delicate { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: var(--c-text-dim); background: rgba(255,255,255,0.05); transition: 0.3s; border: 1px solid var(--c-border); }
.logout-btn-delicate:hover { color: #ff4757; background: rgba(255, 71, 87, 0.1); border-color: rgba(255, 71, 87, 0.3); transform: translateY(-2px); }
.dashboard-content { width: 100%; max-width: 1200px; margin: 0 auto; position: relative; }
.portal-tab { display: none; animation: fade 0.3s ease; }
.portal-tab.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.tab-header { display: flex; justify-content: space-between; align-items: flex-end; }
.tab-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; }
.date-badge { background: rgba(0,229,255,0.1); color: var(--c-brand); padding: 8px 16px; border-radius: 8px; font-weight: 800; font-size: 13px; border: 1px solid rgba(0,229,255,0.3); }
.pro-dashboard-grid { display: grid; grid-template-columns: 1fr 1.5fr 1.2fr; gap: 30px; align-items: stretch; }
.dash-box { background: rgba(0,0,0,0.2); border: 1px solid var(--c-border); border-radius: 20px; padding: 25px; display: flex; flex-direction: column; justify-content: center; }
.dash-circle-box { position: relative; text-align: center; }
.circular-chart { display: block; margin: 0 auto; width: 100%; max-width: 200px; animation: fadeIn 1s ease-out; }
.circle-bg { fill: none; stroke: rgba(255, 255, 255, 0.05); stroke-width: 1.5; }
.circle { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke: var(--c-brand); filter: drop-shadow(0 0 8px var(--c-brand)); transition: stroke-dasharray 1.5s ease-out; }
.circle-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; }
.steps-val { font-family: var(--f-head); font-size: 2.5rem; color: var(--c-brand); line-height: 1; text-shadow: 0 0 20px rgba(0,229,255,0.4); }
.steps-lbl { font-size: 11px; color: var(--c-text-dim); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.dash-stats-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pro-stat-item { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.03); padding: 15px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.pro-stat-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.pro-stat-item .i-wrap { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; }
.pro-stat-item .s-val { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.pro-stat-item .s-lbl { font-size: 11px; color: var(--c-text-dim); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-top: 4px; }
.mini-bar-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 150px; padding-top: 20px; gap: 5px; }
.bar-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; flex: 1; }
.bar-fill { width: 100%; max-width: 24px; background: rgba(255,255,255,0.1); border-radius: 6px 6px 0 0; transition: 0.5s; }
.bar-val { font-size: 10px; color: #fff; font-weight: bold; margin-bottom: 5px; opacity: 0; transition: 0.3s; }
.bar-col:hover .bar-val { opacity: 1; }
.bar-col:hover .bar-fill { background: rgba(255,255,255,0.3); }
.bar-day { font-size: 10px; color: var(--c-text-dim); text-transform: uppercase; margin-top: 8px; font-weight: 600; }
.pro-routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.pro-route-card { background: rgba(0,0,0,0.3); border: 1px solid var(--c-border); border-radius: 20px; padding: 25px; transition: 0.3s; }
.pro-route-card:hover { border-color: var(--c-brand); transform: translateY(-5px); background: rgba(0,0,0,0.5); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.r-head { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.r-icon { background: rgba(0, 229, 255, 0.1); color: var(--c-brand); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.r-date { color: #fff; font-weight: 800; font-size: 16px; }
.r-date span { display: block; font-size: 12px; color: var(--c-text-dim); font-weight: 600; margin-top: 2px; }
.r-main-val { font-family: var(--f-head); font-size: 2.5rem; color: var(--c-brand); line-height: 1; margin-bottom: 20px; }
.r-main-val span { font-size: 1rem; color: #555; }
.r-stats-row { display: flex; justify-content: space-between; border-top: 1px solid var(--c-border); padding-top: 15px; }
.r-stats-row div { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #ddd; }
.r-stats-row span { color: var(--c-text-dim); font-size: 16px; }
.pro-leaderboard { display: flex; flex-direction: column; gap: 10px; }
.lead-row { display: flex; align-items: center; background: rgba(0,0,0,0.3); border: 1px solid var(--c-border); border-radius: 16px; padding: 15px 25px; transition: 0.3s; }
.lead-row:hover { background: rgba(255,255,255,0.05); transform: translateX(5px); }
.lead-first { border-color: gold; background: rgba(255, 215, 0, 0.05); box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
.l-pos { width: 40px; font-family: var(--f-head); font-size: 20px; color: var(--c-text-dim); text-align: center; }
.lead-first .l-pos { color: gold; font-size: 24px; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.l-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; margin: 0 20px; }
.l-name { flex: 1; font-size: 18px; font-weight: 800; color: #fff; }
.l-score { font-family: var(--f-head); font-size: 24px; color: var(--c-brand); text-align: right; }
select.glass-input { width: 100%; padding: 18px 18px 18px 48px; background: rgba(0,0,0,0.4); border: 1px solid var(--c-border); border-radius: 12px; color: #fff; font-size: 15px; outline: none; appearance: none; transition: 0.3s; }
select.glass-input:focus { border-color: var(--c-brand); background: rgba(0,0,0,0.6); }
.select-arrow { position: absolute; right: 16px; left: auto !important; color: var(--c-text-dim); pointer-events: none; }
#crop-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.img-container { width: 100%; max-width: 400px; height: 400px; background: rgba(10,10,15,0.8); border-radius: 20px; overflow: hidden; border: 1px solid var(--c-border); box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
.crop-btns { margin-top: 30px; display: flex; gap: 15px; width: 100%; max-width: 400px; }
.cropper-view-box, .cropper-face { border-radius: 50%; }
.radio-color input:checked + span { border-color: #fff !important; transform: scale(1.1); box-shadow: 0 0 15px currentColor; }
@media (max-width: 1024px) { body { overflow-y: auto; height: auto; } .layout-wrapper { height: auto; min-height: 100vh; } .hero-section { flex-direction: column; justify-content: center; text-align: center; gap: 50px; padding-top: 50px; padding-bottom: 150px; } .hero-left h1 { font-size: 3rem; } .app-buttons { justify-content: center; } .hero-right { max-width: 100%; } .bottom-glass { position: relative; flex-direction: column; gap: 15px; padding: 15px; } .glass-stats { gap: 20px; } .dashboard-layout .top-nav { flex-wrap: wrap; gap: 20px; justify-content: center; } .top-menu { width: 100%; overflow-x: auto; justify-content: flex-start; padding-bottom: 5px; } .nav-right { width: 100%; justify-content: center; border-top: 1px solid var(--c-border); padding-top: 15px; } .user-mini-info { display: none; } .pro-dashboard-grid { grid-template-columns: 1fr; } .dash-stats-box { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .l-name { font-size: 15px; } .l-score { font-size: 20px; } .l-avatar { width: 40px; height: 40px; margin: 0 10px; } }
