.privacy-consent-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}
.privacy-consent-container {
    background-color: #1a1a2e;
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .privacy-consent-container {
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        width: 100%;
        padding: 15px;
    }
    .privacy-consent-popup {
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        max-height: 90vh;
    }
}
.privacy-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.privacy-consent-header h2 {
    margin: 0;
    font-size: 1.8em;
    color: #e94560;
}
.privacy-consent-header button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease-in-out;
}
.privacy-consent-header button:hover {
    color: #e94560;
}
.privacy-consent-description {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f0f0f0;
}
.privacy-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}
.privacy-consent-actions button {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-out;
}
.privacy-consent-actions button:hover {
    transform: translateY(-2px);
}
.privacy-consent-actions .accept-all-btn {
    background-color: #e94560;
    color: #ffffff;
}
.privacy-consent-actions .accept-all-btn:hover {
    background-color: #d13a52;
}
.privacy-consent-actions .manage-btn {
    background-color: #3f3f5a;
    color: #ffffff;
}
.privacy-consent-actions .manage-btn:hover {
    background-color: #2c2c42;
}
.privacy-consent-settings {
    display: none;
    background-color: #2c2c42;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #f0f0f0;
}
.privacy-settings-header {
    font-size: 1.4em;
    color: #e94560;
    margin-bottom: 15px;
}
.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.cookie-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
}
.cookie-category input[type='checkbox'] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e94560;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.cookie-category input[type='checkbox']:checked {
    background-color: #e94560;
    border-color: #e94560;
}
.cookie-category input[type='checkbox']:checked::after {
    content: '\2713';
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cookie-category input[type='checkbox']:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: #666;
    background-color: #444;
}
.cookie-category input[type='checkbox']:disabled:checked {
    background-color: #999;
    border-color: #999;
}
.cookie-category p {
    font-size: 0.85em;
    line-height: 1.5;
    color: #b0b0b0;
    margin-left: 30px;
}
.privacy-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.privacy-settings-actions button {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-out;
}
.privacy-settings-actions button:hover {
    transform: translateY(-2px);
}
.privacy-settings-actions .save-btn {
    background-color: #e94560;
    color: #ffffff;
}
.privacy-settings-actions .save-btn:hover {
    background-color: #d13a52;
}
.privacy-settings-actions .reject-btn {
    background-color: #3f3f5a;
    color: #ffffff;
}
.privacy-settings-actions .reject-btn:hover {
    background-color: #2c2c42;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}
.privacy-consent-popup.hidden {
    animation: fadeOut 0.3s ease-out forwards;
}
