@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&display=swap');

* { box-sizing: border-box; outline: none; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; }
body { font-family: 'Urbanist', sans-serif; margin: 0; background: radial-gradient(circle at top center, var(--bg-gradient-center), var(--bg-body)); background-attachment: fixed; color: var(--text-main); padding-top: 130px !important; overflow-x: hidden; min-height: 100vh; }

.pro-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 9000; background: var(--glass-bg); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color); box-shadow: 0 4px 30px var(--shadow-color); }
.pro-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary-color), transparent); opacity: 0.7; box-shadow: 0 0 10px var(--primary-color); }
.header-container { max-width: 1250px; margin: 0 auto; padding: 0 25px; }
.header-top { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 30px; }
.logo-box a { text-decoration: none; display: flex; align-items: center; gap: 6px; font-size: 26px; font-weight: 800; color: var(--text-main); text-transform: uppercase; letter-spacing: -0.5px; }
.logo-box span { background: var(--primary-color); background: -webkit-linear-gradient(45deg, var(--primary-color), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.header-bottom { height: 50px; background: rgba(0,0,0,0.05); border-top: 1px solid var(--border-color); display: flex; align-items: center; }
.nav-pro ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 15px; }
.nav-pro a { text-decoration: none; color: var(--text-sub); font-size: 13px; font-weight: 700; text-transform: uppercase; padding: 8px 14px; display: block; border-radius: 8px; }
.nav-pro a:hover { color: var(--text-main); background: var(--border-color); }
.nav-pro a i { margin-right: 6px; color: var(--primary-color); }

@media (max-width: 900px) { body { padding-top: 80px !important; } .header-bottom { display: none; } .search-box-pro { display: none; } .header-top { height: 70px; } }