:root{
    --bg: #000000;
    --text: #e6eef8;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--text);
    min-height: -webkit-fill-available; 
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

p a {
    color: lightblue;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 10vh;
}

.social-media a {
    display: inline-block;
    margin: 0 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    line-height: 62.5px !important;
    font-size: 35px;
    color: black;
}

.social-media a:hover {
    background-color: gray;
}

#logo-header {
    width: 2rem;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
    background: var(--bg);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-links {
    display: flex !important;
    gap: 12px;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.1)
}

.nav-links a.active {
    color: var(--accent);font-weight:600
}

@media (max-width:640px) {
    .nav-links {
        display: none
    }
}