/* Cookie Banner Styles */
#cookieBanner {
    background: rgba(0, 0, 0, 0.98);
    color: #fff;
    padding: 30px 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

#cookieBanner button {
    background: #f26431;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

#cookieBanner button:hover {
    background: #d14f1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 100, 49, 0.2);
}

#cookieBanner a {
    color: #f26431;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

#cookieBanner a:hover {
    color: #d14f1f;
    background: rgba(242, 100, 49, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #cookieBanner {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }

    #cookieBanner button {
        width: 100%;
        margin: 5px 0;
    }
} 