* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f172a;
    color: #ffffff;
    padding: 15px 40px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-left{
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-right{
    display: flex;
    align-items: center;
    gap: 25px;
}

.team-logo{
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Makes the logo square into a neat circle */
    object-fit: cover;
}

.team-name{
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #38bdf8; /* Changes to a vibrant sky blue on hover */
}

.nav-donate-btn {
    display: inline-block;
    background-color: #facc15; /* High-visibility bright yellow color */
    color: #0f172a; 
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.3); /* Adds a subtle neon glow */
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-donate-btn:hover {
    background-color: #fef08a; /* Brightens up even more on hover */
    transform: translateY(-2px); /* Makes the button lift upward slightly */
}