/* Cookie Consent Banner - Dark Theme */
#cookieConsentBanner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: #111;
    border-top: 1px solid #222;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

#cookieConsentBanner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookieConsentInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookieConsentText {
    flex: 1 1 400px;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookieConsentText strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.cookieConsentText p {
    margin: 0;
}

.cookieConsentText a {
    color: #607d8b;
    font-weight: bold;
    text-decoration: none;
}

.cookieConsentText a:hover {
    color: #fff;
}

.cookieConsentActions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookieBtn {
    padding: 12px 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookieBtn.reject {
    background: transparent;
    color: #ccc;
}

.cookieBtn.reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.cookieBtn.accept {
    background: #455a64;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookieBtn.accept:hover {
    background: #78909c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(96, 125, 139, 0.4);
}

@media (max-width: 768px) {
    .cookieConsentInner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }

    .cookieConsentActions {
        justify-content: center;
    }

    .cookieBtn {
        flex: 1 1 auto;
    }
}
