.consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
    background: rgba(24, 24, 24, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.8rem;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.consent-content {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.consent-emoji {
    font-size: 2.5rem;
}

.consent-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.consent-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

.consent-options {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.consent-detail {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.consent-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consent-options li {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consent-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.consent-btn {
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.consent-btn.accept {
    background: #4CAF50;
    color: #ffffff;
    border: none;
    margin-bottom: 0.8rem;
}

.consent-btn.accept:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.consent-btn.reject {
    background: transparent;
    color: #999999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.consent-btn.reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
}

.consent-more-info {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.consent-more-info:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .consent-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1rem;
    }

    .consent-buttons {
        flex-direction: column;
    }

    .consent-btn {
        width: 100%;
    }
}
