#cookieConsentBanner > div {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: white;
    color: #2d3748;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    max-width: 420px;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e2e8f0;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-consent-text {
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-size: 15px;
    color: #4a5568;
}

.cookie-consent-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.cookie-consent-link:hover {
    color: #2c5282;
    border-bottom-color: #3182ce;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.cookie-consent-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cookie-consent-btn:hover:before {
    left: 100%;
}

.cookie-consent-reject {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    color: #718096;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cookie-consent-reject:hover {
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    color: #4a5568;
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cookie-consent-reject:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cookie-consent-accept {
    background: linear-gradient(135deg, #ff4f30, #ff2f30);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.cookie-consent-accept:hover {
    background: linear-gradient(135deg, #ff4f30, #ff2f30);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.cookie-consent-accept:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-consent-visible {
    animation: slideInLeft 0.6s ease-out forwards;
}

.cookie-consent-hidden {
    animation: slideOutLeft 0.5s ease-in forwards;
}

.cookie-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    #cookieConsentBanner > div {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 15px;
        padding: 20px;
        border-radius: 10px;
    }
    
    .cookie-consent-buttons {
        justify-content: stretch;
    }
    
    .cookie-consent-btn {
        flex: 1;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .cookie-consent-text {
        font-size: 14px;
        text-align: center;
    }
    
    .cookie-title {
        font-size: 16px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #cookieConsentBanner > div {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 18px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
}