.settings-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

/* SECTIONS */
.settings-section {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.settings-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.settings-section-title.danger {
    color: #e8315a;
}

/* ROW / COL */
.settings-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.settings-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-row input,
.settings-col input {
    flex: 1;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.settings-row input:focus,
.settings-col input:focus {
    border-color: #e8315a;
}

/* SAVE BUTTON */
.btn-settings-save {
    padding: 12px 24px;
    background: linear-gradient(135deg, #e8315a, #c0203f);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-settings-save:hover {
    opacity: 0.85;
}

/* FEEDBACK */
.settings-feedback {
    font-size: 13px;
    margin-top: 10px;
    min-height: 18px;
}

.settings-feedback.success {
    color: #4caf50;
}

.settings-feedback.error {
    color: #e8315a;
}

/* TOGGLE */
.settings-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.settings-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.settings-toggle-desc {
    font-size: 12px;
    color: #888;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle input:checked + .toggle-slider {
    background: #e8315a;
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* DANGER ZONE */
.settings-danger {
    border-color: #3a1a1a;
}

.settings-danger-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.btn-delete-account {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #e8315a;
    border-radius: 8px;
    color: #e8315a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-delete-account:hover {
    background: #e8315a;
    color: #fff;
}

/* DELETE CONFIRM MODAL */
.delete-confirm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.delete-confirm.active {
    display: flex;
}

.delete-box {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 32px;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delete-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e8315a;
}

.delete-box p {
    font-size: 14px;
    color: #888;
}

.delete-box input {
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.delete-box input:focus {
    border-color: #e8315a;
}

.delete-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-delete-cancel {
    flex: 1;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-delete-cancel:hover {
    border-color: #e8315a;
}

.btn-delete-confirm {
    flex: 1;
    padding: 12px;
    background: #e8315a;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-delete-confirm:hover {
    opacity: 0.85;
}

.settings-current {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.settings-current span {
    color: #e8315a;
    font-weight: 600;
}