/* -------- Reset simple ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #333;
    min-height: 100vh;
}

/* -------- Layout container ------ */

.container-fluid {
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NAVBAR --- */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.7rem 0rem;
}

.navbar-container {
    display: flex;
    flex-direction: column;
}

.navbar-first-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- LOGO --- */
#logo-antask {
    text-decoration: none;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 34px;
    height: 34px;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

/* --- USER INFO --- */
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-pseudo, .user-points {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.menu-item {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
}

.menu-item.login {
    color: #333;
}

.menu-item.logout {
    color: #c0392b;
}

/* Titles (h1, h2...) */
h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2a2a2a;
}

h2 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0px;
    color: #2a2a2a;
}

.center {
    text-align: center;
}

/* --- Icons (simple, clean) --- */
.icon-user,
.icon-star,
.icon-login,
.icon-logout {
    font-size: 1.1rem;
}

/* --- DESKTOP ADJUSTMENTS --- */
@media (min-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .user-info {
        gap: 1.5rem;
    }

    .menu-item {
        padding: 0.45rem 0.8rem;
    }
}