.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid #6C8EEE;
}

.cookie-consent.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: 280px;
}

.cookie-consent-icon {
    font-size: 24px;
    margin-right: 10px;
}

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

.cookie-consent-text {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #6C8EEE;
    text-decoration: underline;
    display: inline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #6C8EEE 0%, #a855f7 100%);
    color: #fff;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 142, 238, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid #444;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-btn-settings {
    background: transparent;
    color: #6C8EEE;
    border: 1px solid #6C8EEE;
}

.cookie-btn-settings:hover {
    background: rgba(108, 142, 238, 0.1);
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #1a1a2e;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #333;
}

.cookie-settings-header {
    padding: 24px;
    border-bottom: 1px solid #333;
}

.cookie-settings-header h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.cookie-settings-header p {
    color: #b0b0b0;
    font-size: 14px;
}

.cookie-settings-body {
    padding: 24px;
}

.cookie-setting-item {
    padding: 16px 0;
    border-bottom: 1px solid #333;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-setting-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.cookie-setting-toggle {
    position: relative;
    width: 48px;
    height: 26px;
}

.cookie-setting-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-setting-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #6C8EEE 0%, #a855f7 100%);
}

.cookie-setting-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-setting-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-setting-desc {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-settings-footer {
    padding: 20px 24px;
    border-top: 1px solid #333;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-consent {
        padding: 16px;
    }
    
    .cookie-consent-title {
        justify-content: center;
    }
}
