#gradient-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.affiliate-disclosure {
    text-align: center;
    font-size: 0.8em;
    color: var(--text-muted);
    /*padding: 10px 0;
    margin-top: 20px;*/
    width: 100%;
    /*background-color: rgba(255, 255, 255, 0.8);*/
}

footer {
    background-color: var(--bg-footer);
    color: var(--text-inverse);
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    z-index: 2;
    width: 100%;
    box-shadow: 0 -2px 5px var(--shadow-light);
}

footer a {
    color: var(--text-inverse);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--text-light);
}

.social-icons {
    margin-top: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
    transition: opacity 0.3s;
    transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 10px white;
    transform: scale(1.5);
}