.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98) 0%, rgba(30, 20, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(94, 45, 224, 0.5);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(94, 45, 224, 0.3);
}

.consent-banner.show {
    transform: translateY(0);
}

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

.consent-content {
    flex: 1;
    min-width: 300px;
}

.consent-title {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consent-title i {
    color: #5e2de0;
}

.consent-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95em;
    line-height: 1.5;
}

.consent-text a {
    color: #5e2de0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.consent-text a:hover {
    color: #7a4ff3;
    text-decoration: underline;
}

.consent-highlight {
    color: #ff6b6b;
    font-weight: 600;
}

.consent-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.consent-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.consent-btn.accept {
    background: linear-gradient(135deg, #5e2de0 0%, #7a4ff3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(94, 45, 224, 0.3);
}

.consent-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 45, 224, 0.4);
}

.consent-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.consent-btn.decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .consent-banner {
        padding: 15px;
    }
    
    .consent-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .consent-btn {
        flex: 1;
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

.consent-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(94, 45, 224, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
    display: none;
}

.consent-badge.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.consent-badge:hover {
    background: rgba(94, 45, 224, 1);
    transform: scale(1.05);
}