/* Cookie Consent Island - Apple Glass Effect */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: linear-gradient(
        135deg,
        rgba(20, 30, 48, 0.75) 0%,
        rgba(36, 59, 85, 0.7) 100%
    );
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
                0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    width: auto;
}

.cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    white-space: nowrap;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
                 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cookie-consent-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1C2632;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    outline: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-consent-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent-btn:active {
    transform: scale(0.98);
}

.cookie-consent-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 16px;
        max-width: calc(100% - 32px);
        padding: 14px 20px;
        border-radius: 40px;
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
    }

    .cookie-consent-content {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-consent-content p {
        font-size: 13px;
        white-space: normal;
        text-align: center;
        flex: 1 1 100%;
    }

    .cookie-consent-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}
