.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.77);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.navbar-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex: 1;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.navbar a:hover {
    opacity: 1;
}

.search-bar {
    margin-left: auto;
}

.search-bar input {
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    width: 200px;
    transition: all 0.2s ease;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-logo {
        height: 45px;
    }

    .navbar-links {
        gap: 2rem;
        flex: none;
    }

    .navbar a {
        font-size: 1.3rem;
    }

    .search-bar {
        margin-left: 0;
        width: 100%;
    }

    .search-bar input {
        width: 100%;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1rem;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-links {
        gap: 1.5rem;
    }

    .navbar a {
        font-size: 1.2rem;
    }
}