.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #071927 0%, #2196F3 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    font-family: "Inter", sans-serif;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-content {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0;
}

.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.cookie-consent-text a:hover {
    opacity: 1;
    color: #fff;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
}

.cookie-btn-accept {
    background: #2196F3;
    color: white;
}

.cookie-btn-accept:hover {
    background: white;
    color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    padding: 8px 16px;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: auto;
    }
    
    .cookie-consent-banner.left-bottom {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(100%) !important;
        max-width: calc(100vw - 40px) !important;
        width: 90% !important;
        margin: 0 auto;
        border-radius: 25px !important;
    }
    
    .cookie-consent-banner.left-bottom.show {
        transform: translateX(-50%) translateY(0) !important;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-consent-banner.left-bottom {
        left: 50% !important;
        right: auto !important;
        bottom: 20px !important;
        transform: translateX(-50%) translateY(100%) !important;
        max-width: calc(100vw - 20px) !important;
        width: 95% !important;
        margin: 0 auto;
        border-radius: 25px !important;
    }
    
    .cookie-consent-banner.left-bottom.show {
        transform: translateX(-50%) translateY(0) !important;
    }
}

@keyframes cookieBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.cookie-icon {
    animation: cookieBounce 2s infinite;
}

@media (min-width: 769px) {
    .cookie-consent-banner.left-bottom {
        bottom: 20px;
        left: 20px;
        right: auto;
        max-width: 400px;
        border-radius: 25px;
        transform: translateX(-100%);
    }

    .cookie-consent-banner.left-bottom.show {
        transform: translateX(0);
    }

    .cookie-consent-banner.left-bottom .cookie-consent-container {
        flex-direction: column;
        text-align: left;
    }

    .cookie-consent-banner.left-bottom .cookie-consent-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-consent-banner.left-bottom .cookie-btn {
        flex: 1;
    }
}