#custom-header-content {
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
}

.Header__logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.Header__logo img {
    max-width: 150px;
    height: auto;
}

.Header__userActions {
    position: absolute;
    top: 20px;
    right: 20px;
}

#custom-header-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    background-color: rgba(16, 83, 110, 0.6);
    padding: 15px 30px;
    border-radius: 10px;
}

.header-nav {
    margin: 2rem 0;
}

.header-nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 5px;
    background-color: rgba(247, 147, 30, 0.7);
    display: inline-block;
}

.header-nav a:hover {
    background-color: rgba(247, 147, 30, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.Header__description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    background-color: rgba(16, 83, 110, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
}

#zsearch {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    #custom-header-content h1 {
        font-size: 2rem;
    }
    .header-nav a {
        font-size: 1.2rem;
        margin: 0.5rem;
        display: block;
    }
    .Header__description {
        font-size: 1rem;
    }
}
