/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: linear-gradient(90deg, #1e1e2f, #2b2b4f);
    padding: 1rem 2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.nav-list li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

/* Hover underline effect */
.nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #00ffd5;
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: #00ffd5;
}

.nav-list li a:hover::after {
    width: 100%;
}
footer {
    position: absolute;
    bottom: 0;
    background-color: #f1f1f1;
    text-align: center;
    width: 100%;
    padding: 8px;
}