.data-consent-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    max-width: 420px;
    z-index: 1000;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transform-origin: bottom right;
}

body.dark-mode .data-consent-popup {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.data-consent-popup.visible {
    display: block;
    animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.data-consent-popup h3 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .data-consent-popup h3 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.data-consent-popup p {
    margin: 0 0 24px 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
}

.data-consent-popup p::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

body.dark-mode .data-consent-popup p {
    color: #e2e8f0;
}

.data-consent-buttons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.data-consent-button {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.data-consent-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-consent-button:hover::before {
    opacity: 1;
}

.accept-button {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.accept-button:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.decline-button {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #4a5568;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.dark-mode .decline-button {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.decline-button:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark-mode .decline-button:hover {
    background: linear-gradient(135deg, #1a202c 0%, #171923 100%);
}

@keyframes slideIn {
    0% {
        transform: translateY(20px) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .data-consent-popup {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-radius: 20px 20px 0 0;
        margin: 0;
        padding: 24px;
    }
    
    .data-consent-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .data-consent-button {
        width: 100%;
        padding: 14px 24px;
    }
    
    .data-consent-popup h3 {
        font-size: 20px;
    }
    
    .data-consent-popup p {
        font-size: 14px;
        padding-left: 20px;
    }
} 