header#header {
    background: #8b0000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    transition: 0.4s ease;
    position: fixed;
    top: 0;
    width: 100%;
}

header#header.is-scrolled-transparent {
    background: rgba(139, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: none !important;
}

.archive-main {
    padding-top: 0;
    min-height: 80vh;
}

.archive-hero {
    background: #f8f8f8;
    padding: 120px 20px 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.archive-hero h1 {
    font-size: 36px;
    color: #8b0000;
    margin-bottom: 10px;
}

.search-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.search-form input:focus {
    border-color: #8b0000;
}

.search-form button {
    background: #8b0000;
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    height: 54px;
}

.search-form button:hover {
    background: #a00000;
}

.archive-results {
    padding: 60px 20px;
}

.search-info {
    margin-bottom: 30px;
    font-size: 18px;
}

.clear-search {
    margin-left: 15px;
    font-size: 14px;
    color: #8b0000;
    text-decoration: none;
    border-bottom: 1px solid #8b0000;
}

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    padding: 100px 0;
    color: #666;
    font-size: 20px;
}

@media (max-width: 600px) {
    .search-form {
        flex-direction: column;
    }
    .search-form button {
        padding: 15px;
        width: 100%;
    }
}