.navbar {
    background: #111;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.navbar a:hover {
    color: #e10600;
}
