body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 50px;
    background-color: #030303;
    padding: 0 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.glowing {
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #007bff, 0 0 30px #007bff, 0 0 40px #007bff, 0 0 50px #007bff, 0 0 60px #007bff, 0 0 70px #007bff;
    animation: glow 1.5s infinite alternate;
    cursor: pointer;
    margin: 0;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #007bff, 0 0 30px #007bff, 0 0 40px #007bff, 0 0 50px #007bff, 0 0 60px #007bff, 0 0 70px #007bff;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #007bff, 0 0 40px #007bff, 0 0 50px #007bff, 0 0 60px #007bff, 0 0 70px #007bff, 0 0 80px #007bff;
    }
}

.navbar-buttons {
    display: flex;
    align-items: center;
}

.navbar-buttons button {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    margin-left: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navbar-buttons button:hover {
    background-color: #0056b3;
}

#search-bar {
    display: block;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#button-section button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#button-section button:hover {
    background-color: #0056b3;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
