/* --- Root Variables --- */
:root {
    --bg: #000;
    --accent: #ffffff;
    --nav-h: 70px;
    --border: #111;
    --text-dim: #a1a1a1;
}

/* --- Global Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    background: var(--bg);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- NAVIGATION (Fixed Styles) --- */
.navbar {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    z-index: 2000;
    position: fixed; top: 0; width: 100%;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #222;
    object-fit: cover;
    background: #111;
}

.brand-logo-text { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 25px !important; /* Fixed as requested */
    font-weight: 800; 
    color: #fff; 
    letter-spacing: -0.8px;
}

.profile-btn { 
    width: 38px; height: 38px; border-radius: 50%; 
    border: 1px solid #222; overflow: hidden; 
    display: flex; align-items: center; justify-content: center; background: #111;
}
.profile-btn img { width: 100%; height: 100%; object-fit: cover; }

/* --- HERO SECTION --- */
.main-content { 
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-h);
}

.hero-section {
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-dim);
    font-size: clamp(1rem, 4vw, 1.1rem);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #000;
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-get-started:hover { 
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(255,255,255,0.1); 
}

/* --- FOOTER --- */
.shared-footer { 
    padding: 50px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex; flex-direction: column; align-items: center; 
    background: #000; width: 100%; margin-top: auto;
}
.footer-socials { display: flex; gap: 50px; margin-bottom: 30px; }
.footer-socials a { color: #fff; font-size: 30px; opacity: 0.8; transition: 0.3s ease; }
.footer-socials a:hover { opacity: 1; transform: translateY(-3px); }
.footer-copyright { color: #333; font-size: 14px; text-align: center; }

@media (max-width: 768px) {
    .hero-title { letter-spacing: -1px; }
    .footer-socials { gap: 35px; }
}
